2024-04-15T17:23:35.043 INFO:root:teuthology version: 0.0.1.dev267+g6c63784 2024-04-15T17:23:35.043 DEBUG:teuthology.run:Teuthology command: teuthology --name teuthology-2024-04-14_20:00:15-rados-main-distro-default-smithi --description rados/cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/classic task/test_host_drain} --owner scheduled_teuthology@teuthology --archive /home/teuthworker/archive/teuthology-2024-04-14_20:00:15-rados-main-distro-default-smithi/7656064 --verbose -- /home/teuthworker/archive/teuthology-2024-04-14_20:00:15-rados-main-distro-default-smithi/7656064/orig.config.yaml 2024-04-15T17:23:35.074 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-15T17:23:35.155 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-04-14_20:00:15-rados-main-distro-default-smithi/7656064 branch: main description: rados/cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/classic task/test_host_drain} email: ceph-qa@ceph.com first_in_suite: false job_id: '7656064' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-04-14_20:00:15-rados-main-distro-default-smithi no_nested_subset: false nuke-on-error: true os_type: centos os_version: 9.stream overrides: admin_socket: branch: main ceph: conf: global: mon election default strategy: 1 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: false mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) - MON_DOWN - mons down - mon down - out of quorum sha1: c2d8c3155d854ee204cb7c7261232571229d1d54 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: c2d8c3155d854ee204cb7c7261232571229d1d54 selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: main sha1: 87dbfb632e974cb2c28d17423071d2d833b53b29 owner: scheduled_teuthology@teuthology priority: 951 repo: https://git.ceph.com/ceph.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: 5211 sha1: c2d8c3155d854ee204cb7c7261232571229d1d54 sleep_before_teardown: 0 subset: 28113/100000 suite: rados suite_branch: main suite_path: /home/teuthworker/src/git.ceph.com_ceph_87dbfb632e974cb2c28d17423071d2d833b53b29/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: 87dbfb632e974cb2c28d17423071d2d833b53b29 targets: smithi055.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJpus+eqwIT6kM/lTe6+WWAQLDqVA2GHcdslUJXTc5unlsxlH/HiALUjIKMepaCW6eiD4q9VnUofkuPatwGs+6Q= smithi092.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHlxR7DOyp7tJs3Gq6pcSmGPqmqP91yb7ZYwxte9wfkwC5mFnIINUObB3mdBn1nrQADKv49v4X+tD/io6hN8MUc= smithi118.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBM4zevCpfZptxIiicbZIYiHW5byQvG7imaYWsFUfvWrbxKzTGF3Dwf2EBDqE+bvFFWcj/RpYNCH1mR13WZlJVaY= 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# One last thing to worry about before\ \ draining the host\n# is that the teuthology test tends to put the explicit\n\ # hostnames in the placement for the mon service.\n# We want to make sure we\ \ can drain without providing\n# --force and there is a check for the host being\ \ removed\n# being listed explicitly in the placements. Therefore,\n# we should\ \ remove it from the mon placement.\nceph orch ls mon --export > mon.yaml\n\ sed /\"$HOST_C\"/d mon.yaml > mon_adjusted.yaml\nceph orch apply -i mon_adjusted.yaml\n\ # now drain that host\nceph orch host drain $HOST_C --zap-osd-devices\n# wait\ \ for drain to complete\nHOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\n\ while [ \"$HOST_C_DAEMONS\" != \"No daemons reported\" ]; do\n sleep 15\n \ \ HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\ndone\n# we want to check\ \ the ability to remove the host from\n# the CRUSH map, so we should first verify\ \ the host is in\n# the CRUSH map.\nceph osd getcrushmap -o compiled-crushmap\n\ crushtool -d compiled-crushmap -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\n\ if ! grep -q \"$HOST_C\" <<< \"$CRUSH_MAP\"; then\n printf \"Expected to see\ \ $HOST_C in CRUSH map. Saw:\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n# If the drain\ \ was successful, we should be able to remove the\n# host without force with\ \ no issues. If there are still daemons\n# we will get a response telling us\ \ to drain the host and a\n# non-zero return code\nceph orch host rm $HOST_C\ \ --rm-crush-entry\n# verify we've successfully removed the host from the CRUSH\ \ map\nsleep 30\nceph osd getcrushmap -o compiled-crushmap\ncrushtool -d compiled-crushmap\ \ -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\nif grep -q \"$HOST_C\" <<<\ \ \"$CRUSH_MAP\"; then\n printf \"Saw $HOST_C in CRUSH map after it should\ \ have been removed.\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n" teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 6c637841c215537a4502385240412f1966e0faab timestamp: 2024-04-14_20:00:15 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-04-15T17:23:35.155 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_87dbfb632e974cb2c28d17423071d2d833b53b29/qa; will attempt to use it 2024-04-15T17:23:35.156 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_87dbfb632e974cb2c28d17423071d2d833b53b29/qa/tasks 2024-04-15T17:23:35.156 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-04-15T17:23:35.157 INFO:teuthology.task.internal:Checking packages... 2024-04-15T17:23:35.181 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'c2d8c3155d854ee204cb7c7261232571229d1d54' 2024-04-15T17:23:35.181 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-04-15T17:23:35.181 INFO:teuthology.packaging:ref: None 2024-04-15T17:23:35.181 INFO:teuthology.packaging:tag: None 2024-04-15T17:23:35.181 INFO:teuthology.packaging:branch: main 2024-04-15T17:23:35.181 INFO:teuthology.packaging:sha1: c2d8c3155d854ee204cb7c7261232571229d1d54 2024-04-15T17:23:35.182 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=main 2024-04-15T17:23:35.507 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-3084.g87dbfb63 2024-04-15T17:23:35.508 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-04-15T17:23:35.515 INFO:teuthology.task.internal:no buildpackages task found 2024-04-15T17:23:35.515 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-04-15T17:23:35.554 INFO:teuthology.task.internal:Saving configuration 2024-04-15T17:23:35.567 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-04-15T17:23:35.587 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T17:23:35.612 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi055.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-14_20:00:15-rados-main-distro-default-smithi/7656064', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 17:17:49.280196', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJpus+eqwIT6kM/lTe6+WWAQLDqVA2GHcdslUJXTc5unlsxlH/HiALUjIKMepaCW6eiD4q9VnUofkuPatwGs+6Q='} 2024-04-15T17:23:35.636 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi092.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-14_20:00:15-rados-main-distro-default-smithi/7656064', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 17:17:49.276976', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHlxR7DOyp7tJs3Gq6pcSmGPqmqP91yb7ZYwxte9wfkwC5mFnIINUObB3mdBn1nrQADKv49v4X+tD/io6hN8MUc='} 2024-04-15T17:23:35.657 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi118.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-14_20:00:15-rados-main-distro-default-smithi/7656064', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 17:17:49.278719', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBM4zevCpfZptxIiicbZIYiHW5byQvG7imaYWsFUfvWrbxKzTGF3Dwf2EBDqE+bvFFWcj/RpYNCH1mR13WZlJVaY='} 2024-04-15T17:23:35.657 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-04-15T17:23:35.663 INFO:teuthology.task.internal:roles: ubuntu@smithi055.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-04-15T17:23:35.663 INFO:teuthology.task.internal:roles: ubuntu@smithi092.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-04-15T17:23:35.663 INFO:teuthology.task.internal:roles: ubuntu@smithi118.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-04-15T17:23:35.663 INFO:teuthology.run_tasks:Running task console_log... 2024-04-15T17:23:35.795 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7fd853654e50>, signals=[15]) 2024-04-15T17:23:35.795 INFO:teuthology.run_tasks:Running task internal.connect... 2024-04-15T17:23:35.801 INFO:teuthology.task.internal:Opening connections... 2024-04-15T17:23:35.801 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi055.front.sepia.ceph.com 2024-04-15T17:23:35.803 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi055.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T17:23:35.911 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi092.front.sepia.ceph.com 2024-04-15T17:23:35.912 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi092.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T17:23:36.004 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi118.front.sepia.ceph.com 2024-04-15T17:23:36.005 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi118.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T17:23:36.092 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-04-15T17:23:36.098 DEBUG:teuthology.orchestra.run.smithi055:> uname -m 2024-04-15T17:23:36.117 INFO:teuthology.orchestra.run.smithi055.stdout:x86_64 2024-04-15T17:23:36.117 DEBUG:teuthology.orchestra.run.smithi055:> cat /etc/os-release 2024-04-15T17:23:36.176 INFO:teuthology.orchestra.run.smithi055.stdout:NAME="CentOS Stream" 2024-04-15T17:23:36.176 INFO:teuthology.orchestra.run.smithi055.stdout:VERSION="9" 2024-04-15T17:23:36.176 INFO:teuthology.orchestra.run.smithi055.stdout:ID="centos" 2024-04-15T17:23:36.176 INFO:teuthology.orchestra.run.smithi055.stdout:ID_LIKE="rhel fedora" 2024-04-15T17:23:36.176 INFO:teuthology.orchestra.run.smithi055.stdout:VERSION_ID="9" 2024-04-15T17:23:36.176 INFO:teuthology.orchestra.run.smithi055.stdout:PLATFORM_ID="platform:el9" 2024-04-15T17:23:36.176 INFO:teuthology.orchestra.run.smithi055.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-15T17:23:36.176 INFO:teuthology.orchestra.run.smithi055.stdout:ANSI_COLOR="0;31" 2024-04-15T17:23:36.176 INFO:teuthology.orchestra.run.smithi055.stdout:LOGO="fedora-logo-icon" 2024-04-15T17:23:36.177 INFO:teuthology.orchestra.run.smithi055.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-15T17:23:36.177 INFO:teuthology.orchestra.run.smithi055.stdout:HOME_URL="https://centos.org/" 2024-04-15T17:23:36.177 INFO:teuthology.orchestra.run.smithi055.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-15T17:23:36.177 INFO:teuthology.orchestra.run.smithi055.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-15T17:23:36.177 INFO:teuthology.orchestra.run.smithi055.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-15T17:23:36.178 INFO:teuthology.lock.ops:Updating smithi055.front.sepia.ceph.com on lock server 2024-04-15T17:23:36.198 DEBUG:teuthology.orchestra.run.smithi092:> uname -m 2024-04-15T17:23:36.215 INFO:teuthology.orchestra.run.smithi092.stdout:x86_64 2024-04-15T17:23:36.216 DEBUG:teuthology.orchestra.run.smithi092:> cat /etc/os-release 2024-04-15T17:23:36.273 INFO:teuthology.orchestra.run.smithi092.stdout:NAME="CentOS Stream" 2024-04-15T17:23:36.273 INFO:teuthology.orchestra.run.smithi092.stdout:VERSION="9" 2024-04-15T17:23:36.273 INFO:teuthology.orchestra.run.smithi092.stdout:ID="centos" 2024-04-15T17:23:36.273 INFO:teuthology.orchestra.run.smithi092.stdout:ID_LIKE="rhel fedora" 2024-04-15T17:23:36.273 INFO:teuthology.orchestra.run.smithi092.stdout:VERSION_ID="9" 2024-04-15T17:23:36.273 INFO:teuthology.orchestra.run.smithi092.stdout:PLATFORM_ID="platform:el9" 2024-04-15T17:23:36.273 INFO:teuthology.orchestra.run.smithi092.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-15T17:23:36.273 INFO:teuthology.orchestra.run.smithi092.stdout:ANSI_COLOR="0;31" 2024-04-15T17:23:36.274 INFO:teuthology.orchestra.run.smithi092.stdout:LOGO="fedora-logo-icon" 2024-04-15T17:23:36.274 INFO:teuthology.orchestra.run.smithi092.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-15T17:23:36.274 INFO:teuthology.orchestra.run.smithi092.stdout:HOME_URL="https://centos.org/" 2024-04-15T17:23:36.274 INFO:teuthology.orchestra.run.smithi092.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-15T17:23:36.274 INFO:teuthology.orchestra.run.smithi092.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-15T17:23:36.274 INFO:teuthology.orchestra.run.smithi092.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-15T17:23:36.274 INFO:teuthology.lock.ops:Updating smithi092.front.sepia.ceph.com on lock server 2024-04-15T17:23:36.298 DEBUG:teuthology.orchestra.run.smithi118:> uname -m 2024-04-15T17:23:36.316 INFO:teuthology.orchestra.run.smithi118.stdout:x86_64 2024-04-15T17:23:36.316 DEBUG:teuthology.orchestra.run.smithi118:> cat /etc/os-release 2024-04-15T17:23:36.373 INFO:teuthology.orchestra.run.smithi118.stdout:NAME="CentOS Stream" 2024-04-15T17:23:36.373 INFO:teuthology.orchestra.run.smithi118.stdout:VERSION="9" 2024-04-15T17:23:36.373 INFO:teuthology.orchestra.run.smithi118.stdout:ID="centos" 2024-04-15T17:23:36.373 INFO:teuthology.orchestra.run.smithi118.stdout:ID_LIKE="rhel fedora" 2024-04-15T17:23:36.373 INFO:teuthology.orchestra.run.smithi118.stdout:VERSION_ID="9" 2024-04-15T17:23:36.373 INFO:teuthology.orchestra.run.smithi118.stdout:PLATFORM_ID="platform:el9" 2024-04-15T17:23:36.374 INFO:teuthology.orchestra.run.smithi118.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-15T17:23:36.374 INFO:teuthology.orchestra.run.smithi118.stdout:ANSI_COLOR="0;31" 2024-04-15T17:23:36.374 INFO:teuthology.orchestra.run.smithi118.stdout:LOGO="fedora-logo-icon" 2024-04-15T17:23:36.374 INFO:teuthology.orchestra.run.smithi118.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-15T17:23:36.374 INFO:teuthology.orchestra.run.smithi118.stdout:HOME_URL="https://centos.org/" 2024-04-15T17:23:36.374 INFO:teuthology.orchestra.run.smithi118.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-15T17:23:36.374 INFO:teuthology.orchestra.run.smithi118.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-15T17:23:36.374 INFO:teuthology.orchestra.run.smithi118.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-15T17:23:36.374 INFO:teuthology.lock.ops:Updating smithi118.front.sepia.ceph.com on lock server 2024-04-15T17:23:36.398 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-04-15T17:23:36.407 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-04-15T17:23:36.437 INFO:teuthology.task.internal:Checking for old test directory... 2024-04-15T17:23:36.438 DEBUG:teuthology.orchestra.run.smithi055:> test '!' -e /home/ubuntu/cephtest 2024-04-15T17:23:36.440 DEBUG:teuthology.orchestra.run.smithi092:> test '!' -e /home/ubuntu/cephtest 2024-04-15T17:23:36.443 DEBUG:teuthology.orchestra.run.smithi118:> test '!' -e /home/ubuntu/cephtest 2024-04-15T17:23:36.459 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-04-15T17:23:36.474 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-04-15T17:23:36.474 DEBUG:teuthology.orchestra.run.smithi055:> test -z $(ls -A /var/lib/ceph) 2024-04-15T17:23:36.498 DEBUG:teuthology.orchestra.run.smithi092:> test -z $(ls -A /var/lib/ceph) 2024-04-15T17:23:36.500 DEBUG:teuthology.orchestra.run.smithi118:> test -z $(ls -A /var/lib/ceph) 2024-04-15T17:23:36.599 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-04-15T17:23:36.677 INFO:teuthology.run_tasks:Running task kernel... 2024-04-15T17:23:36.692 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-04-15T17:23:36.692 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-04-15T17:23:36.692 DEBUG:teuthology.orchestra.run.smithi055:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-15T17:23:36.693 DEBUG:teuthology.orchestra.run.smithi092:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-15T17:23:36.693 DEBUG:teuthology.orchestra.run.smithi118:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-15T17:23:36.709 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T17:23:36.710 DEBUG:teuthology.orchestra.run.smithi092:> uname -r 2024-04-15T17:23:36.711 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T17:23:36.711 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T17:23:36.711 DEBUG:teuthology.orchestra.run.smithi055:> uname -r 2024-04-15T17:23:36.712 DEBUG:teuthology.orchestra.run.smithi118:> uname -r 2024-04-15T17:23:36.767 INFO:teuthology.orchestra.run.smithi092.stdout:5.14.0-361.el9.x86_64 2024-04-15T17:23:36.767 INFO:teuthology.task.kernel:Running kernel on smithi092: 5.14.0-361.el9.x86_64 2024-04-15T17:23:36.767 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum install -y kernel 2024-04-15T17:23:36.769 INFO:teuthology.orchestra.run.smithi055.stdout:5.14.0-361.el9.x86_64 2024-04-15T17:23:36.769 INFO:teuthology.task.kernel:Running kernel on smithi055: 5.14.0-361.el9.x86_64 2024-04-15T17:23:36.769 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum install -y kernel 2024-04-15T17:23:36.770 INFO:teuthology.orchestra.run.smithi118.stdout:5.14.0-361.el9.x86_64 2024-04-15T17:23:36.770 INFO:teuthology.task.kernel:Running kernel on smithi118: 5.14.0-361.el9.x86_64 2024-04-15T17:23:36.770 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum install -y kernel 2024-04-15T17:23:39.050 INFO:teuthology.orchestra.run.smithi092.stdout:CentOS-9 - AppStream 13 MB/s | 6.7 MB 00:00 2024-04-15T17:23:39.116 INFO:teuthology.orchestra.run.smithi055.stdout:CentOS-9 - AppStream 11 MB/s | 6.7 MB 00:00 2024-04-15T17:23:40.181 INFO:teuthology.orchestra.run.smithi118.stdout:CentOS-9 - AppStream 8.0 MB/s | 6.7 MB 00:00 2024-04-15T17:23:40.633 INFO:teuthology.orchestra.run.smithi055.stdout:CentOS-9 - BaseOS 5.6 MB/s | 2.0 MB 00:00 2024-04-15T17:23:40.709 INFO:teuthology.orchestra.run.smithi092.stdout:CentOS-9 - BaseOS 3.8 MB/s | 2.0 MB 00:00 2024-04-15T17:23:41.424 INFO:teuthology.orchestra.run.smithi055.stdout:CentOS Stream 9 - BaseOS 19 MB/s | 8.0 MB 00:00 2024-04-15T17:23:41.683 INFO:teuthology.orchestra.run.smithi092.stdout:CentOS Stream 9 - BaseOS 13 MB/s | 8.0 MB 00:00 2024-04-15T17:23:41.839 INFO:teuthology.orchestra.run.smithi118.stdout:CentOS-9 - BaseOS 3.7 MB/s | 2.0 MB 00:00 2024-04-15T17:23:44.169 INFO:teuthology.orchestra.run.smithi055.stdout:CentOS Stream 9 - AppStream 12 MB/s | 19 MB 00:01 2024-04-15T17:23:45.063 INFO:teuthology.orchestra.run.smithi118.stdout:CentOS Stream 9 - BaseOS 2.8 MB/s | 8.0 MB 00:02 2024-04-15T17:23:48.559 INFO:teuthology.orchestra.run.smithi055.stdout:CentOS Stream 9 - CRB 8.5 MB/s | 6.2 MB 00:00 2024-04-15T17:23:50.310 INFO:teuthology.orchestra.run.smithi055.stdout:CentOS Stream 9 - Extras packages 30 kB/s | 16 kB 00:00 2024-04-15T17:23:51.374 INFO:teuthology.orchestra.run.smithi092.stdout:CentOS Stream 9 - AppStream 2.2 MB/s | 19 MB 00:08 2024-04-15T17:23:53.928 INFO:teuthology.orchestra.run.smithi055.stdout:Extra Packages for Enterprise Linux 6.0 MB/s | 21 MB 00:03 2024-04-15T17:23:56.708 INFO:teuthology.orchestra.run.smithi092.stdout:CentOS Stream 9 - CRB 3.5 MB/s | 6.2 MB 00:01 2024-04-15T17:23:58.308 INFO:teuthology.orchestra.run.smithi092.stdout:CentOS Stream 9 - Extras packages 37 kB/s | 16 kB 00:00 2024-04-15T17:23:59.170 INFO:teuthology.orchestra.run.smithi055.stdout:lab-extras 41 kB/s | 1.7 kB 00:00 2024-04-15T17:23:59.820 INFO:teuthology.orchestra.run.smithi092.stdout:Extra Packages for Enterprise Linux 15 MB/s | 21 MB 00:01 2024-04-15T17:24:00.095 INFO:teuthology.orchestra.run.smithi118.stdout:CentOS Stream 9 - AppStream 1.4 MB/s | 19 MB 00:13 2024-04-15T17:24:01.610 INFO:teuthology.orchestra.run.smithi055.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-15T17:24:01.610 INFO:teuthology.orchestra.run.smithi055.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-15T17:24:01.707 INFO:teuthology.orchestra.run.smithi055.stdout:Dependencies resolved. 2024-04-15T17:24:01.716 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:24:01.716 INFO:teuthology.orchestra.run.smithi055.stdout: Package Arch Version Repository Size 2024-04-15T17:24:01.716 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:24:01.716 INFO:teuthology.orchestra.run.smithi055.stdout:Installing: 2024-04-15T17:24:01.716 INFO:teuthology.orchestra.run.smithi055.stdout: kernel x86_64 5.14.0-438.el9 CentOS-BaseOS 277 k 2024-04-15T17:24:01.716 INFO:teuthology.orchestra.run.smithi055.stdout:Installing dependencies: 2024-04-15T17:24:01.716 INFO:teuthology.orchestra.run.smithi055.stdout: kernel-core x86_64 5.14.0-438.el9 CentOS-BaseOS 15 M 2024-04-15T17:24:01.717 INFO:teuthology.orchestra.run.smithi055.stdout: kernel-modules x86_64 5.14.0-438.el9 CentOS-BaseOS 34 M 2024-04-15T17:24:01.717 INFO:teuthology.orchestra.run.smithi055.stdout: kernel-modules-core x86_64 5.14.0-438.el9 CentOS-BaseOS 28 M 2024-04-15T17:24:01.717 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:24:01.717 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction Summary 2024-04-15T17:24:01.717 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:24:01.717 INFO:teuthology.orchestra.run.smithi055.stdout:Install 4 Packages 2024-04-15T17:24:01.717 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:24:01.717 INFO:teuthology.orchestra.run.smithi055.stdout:Total download size: 77 M 2024-04-15T17:24:01.718 INFO:teuthology.orchestra.run.smithi055.stdout:Installed size: 123 M 2024-04-15T17:24:01.718 INFO:teuthology.orchestra.run.smithi055.stdout:Downloading Packages: 2024-04-15T17:24:01.996 INFO:teuthology.orchestra.run.smithi055.stdout:(1/4): kernel-5.14.0-438.el9.x86_64.rpm 997 kB/s | 277 kB 00:00 2024-04-15T17:24:03.246 INFO:teuthology.orchestra.run.smithi055.stdout:(2/4): kernel-core-5.14.0-438.el9.x86_64.rpm 9.9 MB/s | 15 MB 00:01 2024-04-15T17:24:03.521 INFO:teuthology.orchestra.run.smithi055.stdout:(3/4): kernel-modules-core-5.14.0-438.el9.x86_6 18 MB/s | 28 MB 00:01 2024-04-15T17:24:04.080 INFO:teuthology.orchestra.run.smithi055.stdout:(4/4): kernel-modules-5.14.0-438.el9.x86_64.rpm 14 MB/s | 34 MB 00:02 2024-04-15T17:24:04.083 INFO:teuthology.orchestra.run.smithi055.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:24:04.083 INFO:teuthology.orchestra.run.smithi055.stdout:Total 32 MB/s | 77 MB 00:02 2024-04-15T17:24:04.083 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction check 2024-04-15T17:24:04.424 INFO:teuthology.orchestra.run.smithi118.stdout:CentOS Stream 9 - CRB 9.4 MB/s | 6.2 MB 00:00 2024-04-15T17:24:04.541 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction check succeeded. 2024-04-15T17:24:04.541 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction test 2024-04-15T17:24:04.967 INFO:teuthology.orchestra.run.smithi092.stdout:lab-extras 14 kB/s | 1.7 kB 00:00 2024-04-15T17:24:05.423 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction test succeeded. 2024-04-15T17:24:05.423 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction 2024-04-15T17:24:06.080 INFO:teuthology.orchestra.run.smithi118.stdout:CentOS Stream 9 - Extras packages 33 kB/s | 16 kB 00:00 2024-04-15T17:24:07.299 INFO:teuthology.orchestra.run.smithi092.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-15T17:24:07.299 INFO:teuthology.orchestra.run.smithi092.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-15T17:24:07.391 INFO:teuthology.orchestra.run.smithi092.stdout:Dependencies resolved. 2024-04-15T17:24:07.395 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:24:07.395 INFO:teuthology.orchestra.run.smithi092.stdout: Package Arch Version Repository Size 2024-04-15T17:24:07.395 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:24:07.395 INFO:teuthology.orchestra.run.smithi092.stdout:Installing: 2024-04-15T17:24:07.395 INFO:teuthology.orchestra.run.smithi092.stdout: kernel x86_64 5.14.0-438.el9 CentOS-BaseOS 277 k 2024-04-15T17:24:07.395 INFO:teuthology.orchestra.run.smithi092.stdout:Installing dependencies: 2024-04-15T17:24:07.395 INFO:teuthology.orchestra.run.smithi092.stdout: kernel-core x86_64 5.14.0-438.el9 CentOS-BaseOS 15 M 2024-04-15T17:24:07.396 INFO:teuthology.orchestra.run.smithi092.stdout: kernel-modules x86_64 5.14.0-438.el9 CentOS-BaseOS 34 M 2024-04-15T17:24:07.396 INFO:teuthology.orchestra.run.smithi092.stdout: kernel-modules-core x86_64 5.14.0-438.el9 CentOS-BaseOS 28 M 2024-04-15T17:24:07.396 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:24:07.396 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction Summary 2024-04-15T17:24:07.396 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:24:07.396 INFO:teuthology.orchestra.run.smithi092.stdout:Install 4 Packages 2024-04-15T17:24:07.396 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:24:07.397 INFO:teuthology.orchestra.run.smithi092.stdout:Total download size: 77 M 2024-04-15T17:24:07.397 INFO:teuthology.orchestra.run.smithi092.stdout:Installed size: 123 M 2024-04-15T17:24:07.397 INFO:teuthology.orchestra.run.smithi092.stdout:Downloading Packages: 2024-04-15T17:24:07.398 INFO:teuthology.orchestra.run.smithi118.stdout:Extra Packages for Enterprise Linux 18 MB/s | 21 MB 00:01 2024-04-15T17:24:07.560 INFO:teuthology.orchestra.run.smithi092.stdout:(1/4): kernel-5.14.0-438.el9.x86_64.rpm 1.7 MB/s | 277 kB 00:00 2024-04-15T17:24:07.849 INFO:teuthology.orchestra.run.smithi055.stdout: Preparing : 1/1 2024-04-15T17:24:08.368 INFO:teuthology.orchestra.run.smithi092.stdout:(2/4): kernel-core-5.14.0-438.el9.x86_64.rpm 16 MB/s | 15 MB 00:00 2024-04-15T17:24:08.457 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : kernel-modules-core-5.14.0-438.el9.x86_64 1/4 2024-04-15T17:24:08.539 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T17:24:09.144 INFO:teuthology.orchestra.run.smithi092.stdout:(3/4): kernel-modules-core-5.14.0-438.el9.x86_6 18 MB/s | 28 MB 00:01 2024-04-15T17:24:09.452 INFO:teuthology.orchestra.run.smithi092.stdout:(4/4): kernel-modules-5.14.0-438.el9.x86_64.rpm 16 MB/s | 34 MB 00:02 2024-04-15T17:24:09.455 INFO:teuthology.orchestra.run.smithi092.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:24:09.455 INFO:teuthology.orchestra.run.smithi092.stdout:Total 37 MB/s | 77 MB 00:02 2024-04-15T17:24:09.456 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction check 2024-04-15T17:24:09.810 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction check succeeded. 2024-04-15T17:24:09.810 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction test 2024-04-15T17:24:10.682 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction test succeeded. 2024-04-15T17:24:10.682 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction 2024-04-15T17:24:11.480 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T17:24:11.628 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T17:24:12.540 INFO:teuthology.orchestra.run.smithi118.stdout:lab-extras 10 kB/s | 1.7 kB 00:00 2024-04-15T17:24:12.976 INFO:teuthology.orchestra.run.smithi092.stdout: Preparing : 1/1 2024-04-15T17:24:13.573 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : kernel-modules-core-5.14.0-438.el9.x86_64 1/4 2024-04-15T17:24:13.660 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T17:24:14.913 INFO:teuthology.orchestra.run.smithi118.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-15T17:24:14.914 INFO:teuthology.orchestra.run.smithi118.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-15T17:24:15.020 INFO:teuthology.orchestra.run.smithi118.stdout:Dependencies resolved. 2024-04-15T17:24:15.031 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:24:15.032 INFO:teuthology.orchestra.run.smithi118.stdout: Package Arch Version Repository Size 2024-04-15T17:24:15.032 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:24:15.032 INFO:teuthology.orchestra.run.smithi118.stdout:Installing: 2024-04-15T17:24:15.032 INFO:teuthology.orchestra.run.smithi118.stdout: kernel x86_64 5.14.0-438.el9 CentOS-BaseOS 277 k 2024-04-15T17:24:15.032 INFO:teuthology.orchestra.run.smithi118.stdout:Installing dependencies: 2024-04-15T17:24:15.032 INFO:teuthology.orchestra.run.smithi118.stdout: kernel-core x86_64 5.14.0-438.el9 CentOS-BaseOS 15 M 2024-04-15T17:24:15.032 INFO:teuthology.orchestra.run.smithi118.stdout: kernel-modules x86_64 5.14.0-438.el9 CentOS-BaseOS 34 M 2024-04-15T17:24:15.032 INFO:teuthology.orchestra.run.smithi118.stdout: kernel-modules-core x86_64 5.14.0-438.el9 CentOS-BaseOS 28 M 2024-04-15T17:24:15.032 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:24:15.032 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction Summary 2024-04-15T17:24:15.032 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:24:15.032 INFO:teuthology.orchestra.run.smithi118.stdout:Install 4 Packages 2024-04-15T17:24:15.033 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:24:15.033 INFO:teuthology.orchestra.run.smithi118.stdout:Total download size: 77 M 2024-04-15T17:24:15.033 INFO:teuthology.orchestra.run.smithi118.stdout:Installed size: 123 M 2024-04-15T17:24:15.033 INFO:teuthology.orchestra.run.smithi118.stdout:Downloading Packages: 2024-04-15T17:24:15.191 INFO:teuthology.orchestra.run.smithi118.stdout:(1/4): kernel-5.14.0-438.el9.x86_64.rpm 1.7 MB/s | 277 kB 00:00 2024-04-15T17:24:16.008 INFO:teuthology.orchestra.run.smithi118.stdout:(2/4): kernel-core-5.14.0-438.el9.x86_64.rpm 16 MB/s | 15 MB 00:00 2024-04-15T17:24:16.383 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T17:24:16.522 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T17:24:16.699 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T17:24:16.759 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T17:24:16.858 INFO:teuthology.orchestra.run.smithi118.stdout:(3/4): kernel-modules-5.14.0-438.el9.x86_64.rpm 18 MB/s | 34 MB 00:01 2024-04-15T17:24:17.650 INFO:teuthology.orchestra.run.smithi118.stdout:(4/4): kernel-modules-core-5.14.0-438.el9.x86_6 11 MB/s | 28 MB 00:02 2024-04-15T17:24:17.653 INFO:teuthology.orchestra.run.smithi118.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:24:17.653 INFO:teuthology.orchestra.run.smithi118.stdout:Total 29 MB/s | 77 MB 00:02 2024-04-15T17:24:17.653 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction check 2024-04-15T17:24:18.022 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction check succeeded. 2024-04-15T17:24:18.022 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction test 2024-04-15T17:24:18.881 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction test succeeded. 2024-04-15T17:24:18.882 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction 2024-04-15T17:24:21.185 INFO:teuthology.orchestra.run.smithi118.stdout: Preparing : 1/1 2024-04-15T17:24:21.207 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T17:24:21.312 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T17:24:21.786 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : kernel-modules-core-5.14.0-438.el9.x86_64 1/4 2024-04-15T17:24:21.864 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T17:24:21.874 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T17:24:24.627 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T17:24:24.769 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T17:24:25.996 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T17:24:29.479 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T17:24:29.585 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T17:24:34.335 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T17:24:52.952 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T17:24:52.952 INFO:teuthology.orchestra.run.smithi055.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-15T17:24:52.953 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:24:52.998 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 4/4 2024-04-15T17:24:53.330 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T17:24:53.330 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : kernel-5.14.0-438.el9.x86_64 1/4 2024-04-15T17:24:53.331 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T17:24:53.331 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T17:24:53.764 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T17:24:53.765 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:24:53.765 INFO:teuthology.orchestra.run.smithi055.stdout:Installed: 2024-04-15T17:24:53.765 INFO:teuthology.orchestra.run.smithi055.stdout: kernel-5.14.0-438.el9.x86_64 2024-04-15T17:24:53.765 INFO:teuthology.orchestra.run.smithi055.stdout: kernel-core-5.14.0-438.el9.x86_64 2024-04-15T17:24:53.765 INFO:teuthology.orchestra.run.smithi055.stdout: kernel-modules-5.14.0-438.el9.x86_64 2024-04-15T17:24:53.765 INFO:teuthology.orchestra.run.smithi055.stdout: kernel-modules-core-5.14.0-438.el9.x86_64 2024-04-15T17:24:53.765 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:24:53.765 INFO:teuthology.orchestra.run.smithi055.stdout:Complete! 2024-04-15T17:24:54.091 DEBUG:teuthology.orchestra.run.smithi055:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T17:24:54.245 INFO:teuthology.orchestra.run.smithi055.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T17:24:54.245 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T17:24:54.245 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 5.14.0-438.el9.x86_64 2024-04-15T17:24:54.246 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-15T17:24:54.246 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-15T17:24:54.246 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-04-15T17:24:54.246 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi055.front.sepia.ceph.com, path=None, version=distro) 2024-04-15T17:24:54.246 DEBUG:teuthology.orchestra.run.smithi055:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T17:24:54.330 INFO:teuthology.orchestra.run.smithi055.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T17:24:54.330 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T17:24:54.331 DEBUG:teuthology.orchestra.run.smithi055:> sudo rpm -qi grub2-tools 2024-04-15T17:24:54.375 INFO:teuthology.orchestra.run.smithi055.stdout:Name : grub2-tools 2024-04-15T17:24:54.375 INFO:teuthology.orchestra.run.smithi055.stdout:Epoch : 1 2024-04-15T17:24:54.375 INFO:teuthology.orchestra.run.smithi055.stdout:Version : 2.06 2024-04-15T17:24:54.375 INFO:teuthology.orchestra.run.smithi055.stdout:Release : 68.el9 2024-04-15T17:24:54.375 INFO:teuthology.orchestra.run.smithi055.stdout:Architecture: x86_64 2024-04-15T17:24:54.375 INFO:teuthology.orchestra.run.smithi055.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-15T17:24:54.375 INFO:teuthology.orchestra.run.smithi055.stdout:Group : Unspecified 2024-04-15T17:24:54.375 INFO:teuthology.orchestra.run.smithi055.stdout:Size : 8264254 2024-04-15T17:24:54.375 INFO:teuthology.orchestra.run.smithi055.stdout:License : GPLv3+ 2024-04-15T17:24:54.376 INFO:teuthology.orchestra.run.smithi055.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-15T17:24:54.376 INFO:teuthology.orchestra.run.smithi055.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-15T17:24:54.376 INFO:teuthology.orchestra.run.smithi055.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-15T17:24:54.376 INFO:teuthology.orchestra.run.smithi055.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-15T17:24:54.376 INFO:teuthology.orchestra.run.smithi055.stdout:Packager : builder@centos.org 2024-04-15T17:24:54.376 INFO:teuthology.orchestra.run.smithi055.stdout:Vendor : CentOS 2024-04-15T17:24:54.376 INFO:teuthology.orchestra.run.smithi055.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-15T17:24:54.376 INFO:teuthology.orchestra.run.smithi055.stdout:Summary : Support tools for GRUB. 2024-04-15T17:24:54.376 INFO:teuthology.orchestra.run.smithi055.stdout:Description : 2024-04-15T17:24:54.376 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:24:54.376 INFO:teuthology.orchestra.run.smithi055.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-15T17:24:54.376 INFO:teuthology.orchestra.run.smithi055.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-15T17:24:54.376 INFO:teuthology.orchestra.run.smithi055.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-15T17:24:54.376 INFO:teuthology.orchestra.run.smithi055.stdout:hardware devices. 2024-04-15T17:24:54.377 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:24:54.377 INFO:teuthology.orchestra.run.smithi055.stdout:This subpackage provides tools for support of all platforms. 2024-04-15T17:24:54.378 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-15T17:24:54.378 INFO:teuthology.task.kernel:Updating grub on smithi055 to boot 5.14.0-438.el9.x86_64 2024-04-15T17:24:54.378 DEBUG:teuthology.orchestra.run.smithi055:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-15T17:24:55.092 INFO:teuthology.orchestra.run.smithi055.stderr:Generating grub configuration file ... 2024-04-15T17:24:55.155 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T17:24:55.155 INFO:teuthology.orchestra.run.smithi092.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-15T17:24:55.155 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:24:55.198 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 4/4 2024-04-15T17:24:55.617 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T17:24:55.617 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : kernel-5.14.0-438.el9.x86_64 1/4 2024-04-15T17:24:55.617 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T17:24:55.617 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T17:24:56.045 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T17:24:56.045 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:24:56.045 INFO:teuthology.orchestra.run.smithi092.stdout:Installed: 2024-04-15T17:24:56.045 INFO:teuthology.orchestra.run.smithi092.stdout: kernel-5.14.0-438.el9.x86_64 2024-04-15T17:24:56.045 INFO:teuthology.orchestra.run.smithi092.stdout: kernel-core-5.14.0-438.el9.x86_64 2024-04-15T17:24:56.046 INFO:teuthology.orchestra.run.smithi092.stdout: kernel-modules-5.14.0-438.el9.x86_64 2024-04-15T17:24:56.046 INFO:teuthology.orchestra.run.smithi092.stdout: kernel-modules-core-5.14.0-438.el9.x86_64 2024-04-15T17:24:56.046 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:24:56.046 INFO:teuthology.orchestra.run.smithi092.stdout:Complete! 2024-04-15T17:24:56.379 DEBUG:teuthology.orchestra.run.smithi092:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T17:24:56.426 INFO:teuthology.orchestra.run.smithi055.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-15T17:24:56.463 INFO:teuthology.orchestra.run.smithi055.stderr:done 2024-04-15T17:24:56.465 DEBUG:teuthology.orchestra.run.smithi055:> mktemp 2024-04-15T17:24:56.476 INFO:teuthology.orchestra.run.smithi092.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T17:24:56.477 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T17:24:56.477 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 5.14.0-438.el9.x86_64 2024-04-15T17:24:56.477 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-15T17:24:56.477 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-15T17:24:56.477 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-04-15T17:24:56.477 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi092.front.sepia.ceph.com, path=None, version=distro) 2024-04-15T17:24:56.478 DEBUG:teuthology.orchestra.run.smithi092:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T17:24:56.521 INFO:teuthology.orchestra.run.smithi055.stdout:/tmp/tmp.Y76jDSOFWr 2024-04-15T17:24:56.521 DEBUG:teuthology.orchestra.run.smithi055:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.Y76jDSOFWr 2024-04-15T17:24:56.558 INFO:teuthology.orchestra.run.smithi092.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T17:24:56.558 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T17:24:56.558 DEBUG:teuthology.orchestra.run.smithi092:> sudo rpm -qi grub2-tools 2024-04-15T17:24:56.592 INFO:teuthology.orchestra.run.smithi092.stdout:Name : grub2-tools 2024-04-15T17:24:56.592 INFO:teuthology.orchestra.run.smithi092.stdout:Epoch : 1 2024-04-15T17:24:56.592 INFO:teuthology.orchestra.run.smithi092.stdout:Version : 2.06 2024-04-15T17:24:56.593 INFO:teuthology.orchestra.run.smithi092.stdout:Release : 68.el9 2024-04-15T17:24:56.593 INFO:teuthology.orchestra.run.smithi092.stdout:Architecture: x86_64 2024-04-15T17:24:56.593 INFO:teuthology.orchestra.run.smithi092.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-15T17:24:56.593 INFO:teuthology.orchestra.run.smithi092.stdout:Group : Unspecified 2024-04-15T17:24:56.593 INFO:teuthology.orchestra.run.smithi092.stdout:Size : 8264254 2024-04-15T17:24:56.593 INFO:teuthology.orchestra.run.smithi092.stdout:License : GPLv3+ 2024-04-15T17:24:56.593 INFO:teuthology.orchestra.run.smithi092.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-15T17:24:56.593 INFO:teuthology.orchestra.run.smithi092.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-15T17:24:56.593 INFO:teuthology.orchestra.run.smithi092.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-15T17:24:56.593 INFO:teuthology.orchestra.run.smithi092.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-15T17:24:56.593 INFO:teuthology.orchestra.run.smithi092.stdout:Packager : builder@centos.org 2024-04-15T17:24:56.593 INFO:teuthology.orchestra.run.smithi092.stdout:Vendor : CentOS 2024-04-15T17:24:56.594 INFO:teuthology.orchestra.run.smithi092.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-15T17:24:56.594 INFO:teuthology.orchestra.run.smithi092.stdout:Summary : Support tools for GRUB. 2024-04-15T17:24:56.594 INFO:teuthology.orchestra.run.smithi092.stdout:Description : 2024-04-15T17:24:56.594 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:24:56.594 INFO:teuthology.orchestra.run.smithi092.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-15T17:24:56.594 INFO:teuthology.orchestra.run.smithi092.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-15T17:24:56.594 INFO:teuthology.orchestra.run.smithi092.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-15T17:24:56.594 INFO:teuthology.orchestra.run.smithi092.stdout:hardware devices. 2024-04-15T17:24:56.594 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:24:56.594 INFO:teuthology.orchestra.run.smithi092.stdout:This subpackage provides tools for support of all platforms. 2024-04-15T17:24:56.596 DEBUG:teuthology.orchestra.run.smithi055:> sudo chmod 0666 /tmp/tmp.Y76jDSOFWr 2024-04-15T17:24:56.596 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-15T17:24:56.597 INFO:teuthology.task.kernel:Updating grub on smithi092 to boot 5.14.0-438.el9.x86_64 2024-04-15T17:24:56.597 DEBUG:teuthology.orchestra.run.smithi092:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-15T17:24:56.736 DEBUG:teuthology.orchestra.remote:smithi055:/tmp/tmp.Y76jDSOFWr is 6KB 2024-04-15T17:24:56.785 DEBUG:teuthology.orchestra.run.smithi055:> rm -fr /tmp/tmp.Y76jDSOFWr 2024-04-15T17:24:56.800 DEBUG:teuthology.orchestra.run.smithi055:> sudo /bin/ls /boot/loader/entries || true 2024-04-15T17:24:56.868 INFO:teuthology.orchestra.run.smithi055.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-15T17:24:56.868 INFO:teuthology.orchestra.run.smithi055.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-15T17:24:56.869 INFO:teuthology.orchestra.run.smithi055.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-15T17:24:56.869 INFO:teuthology.orchestra.run.smithi055.stdout:15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64.conf 2024-04-15T17:24:56.870 DEBUG:teuthology.orchestra.run.smithi055:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64 2024-04-15T17:24:57.034 DEBUG:teuthology.orchestra.run.smithi055:> sudo shutdown -r now 2024-04-15T17:24:57.172 INFO:teuthology.orchestra.run.smithi092.stderr:Generating grub configuration file ... 2024-04-15T17:24:58.586 INFO:teuthology.orchestra.run.smithi092.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-15T17:24:58.625 INFO:teuthology.orchestra.run.smithi092.stderr:done 2024-04-15T17:24:58.637 DEBUG:teuthology.orchestra.run.smithi092:> mktemp 2024-04-15T17:24:58.653 INFO:teuthology.orchestra.run.smithi092.stdout:/tmp/tmp.VrshRtMpd2 2024-04-15T17:24:58.653 DEBUG:teuthology.orchestra.run.smithi092:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.VrshRtMpd2 2024-04-15T17:24:58.722 DEBUG:teuthology.orchestra.run.smithi092:> sudo chmod 0666 /tmp/tmp.VrshRtMpd2 2024-04-15T17:24:58.862 DEBUG:teuthology.orchestra.remote:smithi092:/tmp/tmp.VrshRtMpd2 is 6KB 2024-04-15T17:24:58.912 DEBUG:teuthology.orchestra.run.smithi092:> rm -fr /tmp/tmp.VrshRtMpd2 2024-04-15T17:24:58.927 DEBUG:teuthology.orchestra.run.smithi092:> sudo /bin/ls /boot/loader/entries || true 2024-04-15T17:24:58.992 INFO:teuthology.orchestra.run.smithi092.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-15T17:24:58.993 INFO:teuthology.orchestra.run.smithi092.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-15T17:24:58.993 INFO:teuthology.orchestra.run.smithi092.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-15T17:24:58.993 INFO:teuthology.orchestra.run.smithi092.stdout:15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64.conf 2024-04-15T17:24:58.994 DEBUG:teuthology.orchestra.run.smithi092:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64 2024-04-15T17:24:59.125 DEBUG:teuthology.orchestra.run.smithi092:> sudo shutdown -r now 2024-04-15T17:25:04.931 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T17:25:04.931 INFO:teuthology.orchestra.run.smithi118.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-15T17:25:04.931 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:25:04.975 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 4/4 2024-04-15T17:25:05.324 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T17:25:05.324 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : kernel-5.14.0-438.el9.x86_64 1/4 2024-04-15T17:25:05.324 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T17:25:05.324 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T17:25:05.710 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T17:25:05.711 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:25:05.711 INFO:teuthology.orchestra.run.smithi118.stdout:Installed: 2024-04-15T17:25:05.711 INFO:teuthology.orchestra.run.smithi118.stdout: kernel-5.14.0-438.el9.x86_64 2024-04-15T17:25:05.711 INFO:teuthology.orchestra.run.smithi118.stdout: kernel-core-5.14.0-438.el9.x86_64 2024-04-15T17:25:05.711 INFO:teuthology.orchestra.run.smithi118.stdout: kernel-modules-5.14.0-438.el9.x86_64 2024-04-15T17:25:05.711 INFO:teuthology.orchestra.run.smithi118.stdout: kernel-modules-core-5.14.0-438.el9.x86_64 2024-04-15T17:25:05.711 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:25:05.711 INFO:teuthology.orchestra.run.smithi118.stdout:Complete! 2024-04-15T17:25:06.056 DEBUG:teuthology.orchestra.run.smithi118:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T17:25:06.152 INFO:teuthology.orchestra.run.smithi118.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T17:25:06.152 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T17:25:06.152 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 5.14.0-438.el9.x86_64 2024-04-15T17:25:06.153 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-15T17:25:06.153 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-15T17:25:06.153 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-04-15T17:25:06.153 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi118.front.sepia.ceph.com, path=None, version=distro) 2024-04-15T17:25:06.153 DEBUG:teuthology.orchestra.run.smithi118:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T17:25:06.233 INFO:teuthology.orchestra.run.smithi118.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T17:25:06.233 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T17:25:06.234 DEBUG:teuthology.orchestra.run.smithi118:> sudo rpm -qi grub2-tools 2024-04-15T17:25:06.271 INFO:teuthology.orchestra.run.smithi118.stdout:Name : grub2-tools 2024-04-15T17:25:06.271 INFO:teuthology.orchestra.run.smithi118.stdout:Epoch : 1 2024-04-15T17:25:06.271 INFO:teuthology.orchestra.run.smithi118.stdout:Version : 2.06 2024-04-15T17:25:06.271 INFO:teuthology.orchestra.run.smithi118.stdout:Release : 68.el9 2024-04-15T17:25:06.271 INFO:teuthology.orchestra.run.smithi118.stdout:Architecture: x86_64 2024-04-15T17:25:06.271 INFO:teuthology.orchestra.run.smithi118.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-15T17:25:06.272 INFO:teuthology.orchestra.run.smithi118.stdout:Group : Unspecified 2024-04-15T17:25:06.272 INFO:teuthology.orchestra.run.smithi118.stdout:Size : 8264254 2024-04-15T17:25:06.272 INFO:teuthology.orchestra.run.smithi118.stdout:License : GPLv3+ 2024-04-15T17:25:06.272 INFO:teuthology.orchestra.run.smithi118.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-15T17:25:06.272 INFO:teuthology.orchestra.run.smithi118.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-15T17:25:06.272 INFO:teuthology.orchestra.run.smithi118.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-15T17:25:06.272 INFO:teuthology.orchestra.run.smithi118.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-15T17:25:06.272 INFO:teuthology.orchestra.run.smithi118.stdout:Packager : builder@centos.org 2024-04-15T17:25:06.272 INFO:teuthology.orchestra.run.smithi118.stdout:Vendor : CentOS 2024-04-15T17:25:06.272 INFO:teuthology.orchestra.run.smithi118.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-15T17:25:06.272 INFO:teuthology.orchestra.run.smithi118.stdout:Summary : Support tools for GRUB. 2024-04-15T17:25:06.272 INFO:teuthology.orchestra.run.smithi118.stdout:Description : 2024-04-15T17:25:06.272 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:25:06.272 INFO:teuthology.orchestra.run.smithi118.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-15T17:25:06.272 INFO:teuthology.orchestra.run.smithi118.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-15T17:25:06.273 INFO:teuthology.orchestra.run.smithi118.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-15T17:25:06.273 INFO:teuthology.orchestra.run.smithi118.stdout:hardware devices. 2024-04-15T17:25:06.273 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:25:06.273 INFO:teuthology.orchestra.run.smithi118.stdout:This subpackage provides tools for support of all platforms. 2024-04-15T17:25:06.274 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-15T17:25:06.274 INFO:teuthology.task.kernel:Updating grub on smithi118 to boot 5.14.0-438.el9.x86_64 2024-04-15T17:25:06.275 DEBUG:teuthology.orchestra.run.smithi118:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-15T17:25:06.878 INFO:teuthology.orchestra.run.smithi118.stderr:Generating grub configuration file ... 2024-04-15T17:25:08.330 INFO:teuthology.orchestra.run.smithi118.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-15T17:25:08.363 INFO:teuthology.orchestra.run.smithi118.stderr:done 2024-04-15T17:25:08.366 DEBUG:teuthology.orchestra.run.smithi118:> mktemp 2024-04-15T17:25:08.383 INFO:teuthology.orchestra.run.smithi118.stdout:/tmp/tmp.pMVoCfc3Z4 2024-04-15T17:25:08.383 DEBUG:teuthology.orchestra.run.smithi118:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.pMVoCfc3Z4 2024-04-15T17:25:08.454 DEBUG:teuthology.orchestra.run.smithi118:> sudo chmod 0666 /tmp/tmp.pMVoCfc3Z4 2024-04-15T17:25:08.586 DEBUG:teuthology.orchestra.remote:smithi118:/tmp/tmp.pMVoCfc3Z4 is 6KB 2024-04-15T17:25:08.636 DEBUG:teuthology.orchestra.run.smithi118:> rm -fr /tmp/tmp.pMVoCfc3Z4 2024-04-15T17:25:08.650 DEBUG:teuthology.orchestra.run.smithi118:> sudo /bin/ls /boot/loader/entries || true 2024-04-15T17:25:08.715 INFO:teuthology.orchestra.run.smithi118.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-15T17:25:08.715 INFO:teuthology.orchestra.run.smithi118.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-15T17:25:08.715 INFO:teuthology.orchestra.run.smithi118.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-15T17:25:08.715 INFO:teuthology.orchestra.run.smithi118.stdout:15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64.conf 2024-04-15T17:25:08.716 DEBUG:teuthology.orchestra.run.smithi118:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64 2024-04-15T17:25:08.865 DEBUG:teuthology.orchestra.run.smithi118:> sudo shutdown -r now 2024-04-15T17:25:27.054 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-04-15T17:25:27.055 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi055.front.sepia.ceph.com' 2024-04-15T17:25:27.056 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi055.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T17:25:29.130 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-04-15T17:25:29.130 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi092.front.sepia.ceph.com' 2024-04-15T17:25:29.131 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi092.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T17:25:38.877 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-04-15T17:25:38.878 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi118.front.sepia.ceph.com' 2024-04-15T17:25:38.878 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi118.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T17:25:45.374 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.55 2024-04-15T17:25:47.678 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.92 2024-04-15T17:25:54.382 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi055.front.sepia.ceph.com' 2024-04-15T17:25:54.383 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi055.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T17:25:56.682 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi092.front.sepia.ceph.com' 2024-04-15T17:25:56.682 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi092.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T17:25:57.406 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.118 2024-04-15T17:25:59.742 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.92 2024-04-15T17:26:06.414 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi118.front.sepia.ceph.com' 2024-04-15T17:26:06.415 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi118.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T17:26:09.471 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.118 2024-04-15T17:26:11.745 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi092.front.sepia.ceph.com' 2024-04-15T17:26:11.746 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi092.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T17:26:12.766 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.55 2024-04-15T17:26:21.478 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi118.front.sepia.ceph.com' 2024-04-15T17:26:21.479 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi118.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T17:26:24.542 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.118 2024-04-15T17:26:24.767 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi055.front.sepia.ceph.com' 2024-04-15T17:26:24.768 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi055.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T17:26:27.039 DEBUG:teuthology.orchestra.run.smithi055:> true 2024-04-15T17:26:27.480 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi055.front.sepia.ceph.com' 2024-04-15T17:26:27.480 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-438.el9.x86_64"... 2024-04-15T17:26:27.480 DEBUG:teuthology.orchestra.run.smithi055:> uname -r 2024-04-15T17:26:27.496 INFO:teuthology.orchestra.run.smithi055.stdout:5.14.0-438.el9.x86_64 2024-04-15T17:26:27.496 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-438.el9.x86_64 vs 5.14.0-438.el9.x86_64 2024-04-15T17:26:27.496 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-15T17:26:27.496 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-15T17:26:28.497 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-04-15T17:26:28.497 DEBUG:teuthology.orchestra.run.smithi055:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-15T17:26:28.620 INFO:teuthology.orchestra.run.smithi055.stdout:ttyS1 2024-04-15T17:26:28.674 DEBUG:teuthology.parallel:result is None 2024-04-15T17:26:39.543 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi118.front.sepia.ceph.com' 2024-04-15T17:26:39.544 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi118.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T17:26:43.586 DEBUG:teuthology.orchestra.run.smithi092:> true 2024-04-15T17:26:43.973 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi092.front.sepia.ceph.com' 2024-04-15T17:26:43.973 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-438.el9.x86_64"... 2024-04-15T17:26:43.974 DEBUG:teuthology.orchestra.run.smithi092:> uname -r 2024-04-15T17:26:43.989 INFO:teuthology.orchestra.run.smithi092.stdout:5.14.0-438.el9.x86_64 2024-04-15T17:26:43.989 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-438.el9.x86_64 vs 5.14.0-438.el9.x86_64 2024-04-15T17:26:43.989 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-15T17:26:43.990 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-15T17:26:44.991 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-04-15T17:26:44.991 DEBUG:teuthology.orchestra.run.smithi092:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-15T17:26:45.064 INFO:teuthology.orchestra.run.smithi092.stdout:ttyS1 2024-04-15T17:26:45.089 DEBUG:teuthology.parallel:result is None 2024-04-15T17:27:11.699 DEBUG:teuthology.orchestra.run.smithi118:> true 2024-04-15T17:27:12.263 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi118.front.sepia.ceph.com' 2024-04-15T17:27:12.264 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.14.0-438.el9.x86_64"... 2024-04-15T17:27:12.264 DEBUG:teuthology.orchestra.run.smithi118:> uname -r 2024-04-15T17:27:12.288 INFO:teuthology.orchestra.run.smithi118.stdout:5.14.0-438.el9.x86_64 2024-04-15T17:27:12.288 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-438.el9.x86_64 vs 5.14.0-438.el9.x86_64 2024-04-15T17:27:12.288 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-15T17:27:12.288 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-15T17:27:13.290 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-04-15T17:27:13.290 DEBUG:teuthology.orchestra.run.smithi118:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-15T17:27:14.420 INFO:teuthology.orchestra.run.smithi118.stdout:ttyS1 2024-04-15T17:27:14.659 DEBUG:teuthology.parallel:result is None 2024-04-15T17:27:14.659 INFO:teuthology.run_tasks:Running task internal.base... 2024-04-15T17:27:14.668 INFO:teuthology.task.internal:Creating test directory... 2024-04-15T17:27:14.668 DEBUG:teuthology.orchestra.run.smithi055:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-15T17:27:14.673 DEBUG:teuthology.orchestra.run.smithi092:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-15T17:27:14.676 DEBUG:teuthology.orchestra.run.smithi118:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-15T17:27:14.692 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-04-15T17:27:14.722 INFO:teuthology.run_tasks:Running task internal.archive... 2024-04-15T17:27:14.754 INFO:teuthology.task.internal:Creating archive directory... 2024-04-15T17:27:14.754 DEBUG:teuthology.orchestra.run.smithi055:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-15T17:27:14.757 DEBUG:teuthology.orchestra.run.smithi092:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-15T17:27:14.759 DEBUG:teuthology.orchestra.run.smithi118:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-15T17:27:14.798 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-04-15T17:27:14.805 INFO:teuthology.task.internal:Enabling coredump saving... 2024-04-15T17:27:14.806 DEBUG:teuthology.orchestra.run.smithi055:> 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-04-15T17:27:14.821 DEBUG:teuthology.orchestra.run.smithi092:> 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-04-15T17:27:14.823 DEBUG:teuthology.orchestra.run.smithi118:> 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-04-15T17:27:14.858 INFO:teuthology.orchestra.run.smithi092.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T17:27:14.864 INFO:teuthology.orchestra.run.smithi055.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T17:27:14.872 INFO:teuthology.orchestra.run.smithi092.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T17:27:14.874 INFO:teuthology.orchestra.run.smithi118.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T17:27:14.878 INFO:teuthology.orchestra.run.smithi055.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T17:27:14.888 INFO:teuthology.orchestra.run.smithi118.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T17:27:14.889 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-04-15T17:27:14.896 INFO:teuthology.task.internal:Configuring sudo... 2024-04-15T17:27:14.896 DEBUG:teuthology.orchestra.run.smithi055:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-15T17:27:14.899 DEBUG:teuthology.orchestra.run.smithi092:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-15T17:27:14.917 DEBUG:teuthology.orchestra.run.smithi118:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-15T17:27:14.947 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-04-15T17:27:14.956 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-04-15T17:27:14.957 DEBUG:teuthology.orchestra.run.smithi055:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-15T17:27:14.969 DEBUG:teuthology.orchestra.run.smithi092:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-15T17:27:14.988 DEBUG:teuthology.orchestra.run.smithi118:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-15T17:27:15.003 DEBUG:teuthology.orchestra.run.smithi055:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T17:27:15.067 DEBUG:teuthology.orchestra.run.smithi055:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T17:27:15.118 DEBUG:teuthology.orchestra.run.smithi055:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T17:27:15.199 DEBUG:teuthology.orchestra.run.smithi055:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T17:27:15.244 DEBUG:teuthology.orchestra.run.smithi055:> set -ex 2024-04-15T17:27:15.244 DEBUG:teuthology.orchestra.run.smithi055:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-15T17:27:15.313 DEBUG:teuthology.orchestra.run.smithi092:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T17:27:15.356 DEBUG:teuthology.orchestra.run.smithi092:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T17:27:15.420 DEBUG:teuthology.orchestra.run.smithi092:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T17:27:15.462 DEBUG:teuthology.orchestra.run.smithi092:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T17:27:15.509 DEBUG:teuthology.orchestra.run.smithi092:> set -ex 2024-04-15T17:27:15.509 DEBUG:teuthology.orchestra.run.smithi092:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-15T17:27:15.580 DEBUG:teuthology.orchestra.run.smithi118:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T17:27:15.624 DEBUG:teuthology.orchestra.run.smithi118:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T17:27:15.681 DEBUG:teuthology.orchestra.run.smithi118:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T17:27:15.763 DEBUG:teuthology.orchestra.run.smithi118:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T17:27:15.808 DEBUG:teuthology.orchestra.run.smithi118:> set -ex 2024-04-15T17:27:15.808 DEBUG:teuthology.orchestra.run.smithi118:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-15T17:27:15.877 DEBUG:teuthology.orchestra.run.smithi055:> sudo service rsyslog restart 2024-04-15T17:27:15.879 DEBUG:teuthology.orchestra.run.smithi092:> sudo service rsyslog restart 2024-04-15T17:27:15.882 DEBUG:teuthology.orchestra.run.smithi118:> sudo service rsyslog restart 2024-04-15T17:27:15.934 INFO:teuthology.orchestra.run.smithi055.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T17:27:15.940 INFO:teuthology.orchestra.run.smithi092.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T17:27:15.969 INFO:teuthology.orchestra.run.smithi118.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T17:27:16.477 INFO:teuthology.run_tasks:Running task internal.timer... 2024-04-15T17:27:16.487 INFO:teuthology.task.internal:Starting timer... 2024-04-15T17:27:16.487 INFO:teuthology.run_tasks:Running task pcp... 2024-04-15T17:27:16.546 INFO:teuthology.run_tasks:Running task selinux... 2024-04-15T17:27:16.581 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-04-15T17:27:16.582 DEBUG:teuthology.orchestra.run.smithi055:> sudo service auditd rotate 2024-04-15T17:27:16.644 INFO:teuthology.orchestra.run.smithi055.stdout:Rotating logs: 2024-04-15T17:27:16.647 DEBUG:teuthology.orchestra.run.smithi092:> sudo service auditd rotate 2024-04-15T17:27:16.721 INFO:teuthology.orchestra.run.smithi092.stdout:Rotating logs: 2024-04-15T17:27:16.723 DEBUG:teuthology.orchestra.run.smithi118:> sudo service auditd rotate 2024-04-15T17:27:16.765 INFO:teuthology.orchestra.run.smithi118.stdout:Rotating logs: 2024-04-15T17:27:16.767 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-04-15T17:27:16.767 DEBUG:teuthology.orchestra.run.smithi055:> /usr/sbin/getenforce 2024-04-15T17:27:16.788 INFO:teuthology.orchestra.run.smithi055.stdout:Permissive 2024-04-15T17:27:16.788 DEBUG:teuthology.orchestra.run.smithi092:> /usr/sbin/getenforce 2024-04-15T17:27:16.821 INFO:teuthology.orchestra.run.smithi092.stdout:Permissive 2024-04-15T17:27:16.821 DEBUG:teuthology.orchestra.run.smithi118:> /usr/sbin/getenforce 2024-04-15T17:27:16.863 INFO:teuthology.orchestra.run.smithi118.stdout:Permissive 2024-04-15T17:27:16.863 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi055.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi092.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi118.front.sepia.ceph.com': 'permissive'} 2024-04-15T17:27:16.863 DEBUG:teuthology.orchestra.run.smithi055:> 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 scontext=system_u:system_r:logrotate_t:s0 2024-04-15T17:27:16.893 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T17:27:16.894 DEBUG:teuthology.orchestra.run.smithi092:> 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 scontext=system_u:system_r:logrotate_t:s0 2024-04-15T17:27:16.926 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T17:27:16.926 DEBUG:teuthology.orchestra.run.smithi118:> 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 scontext=system_u:system_r:logrotate_t:s0 2024-04-15T17:27:16.955 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T17:27:16.955 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-04-15T17:27:16.955 DEBUG:teuthology.orchestra.run.smithi055:> sudo /usr/sbin/setenforce permissive 2024-04-15T17:27:16.990 DEBUG:teuthology.orchestra.run.smithi092:> sudo /usr/sbin/setenforce permissive 2024-04-15T17:27:17.031 DEBUG:teuthology.orchestra.run.smithi118:> sudo /usr/sbin/setenforce permissive 2024-04-15T17:27:17.064 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-04-15T17:27:17.075 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-04-15T17:27:17.098 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-04-15T17:27:17.100 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi055.front.sepia.ceph.com,smithi092.front.sepia.ceph.com,smithi118.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-04-15T17:31:48.227 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi055.front.sepia.ceph.com'), Remote(name='ubuntu@smithi092.front.sepia.ceph.com'), Remote(name='ubuntu@smithi118.front.sepia.ceph.com')] 2024-04-15T17:31:48.229 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi055.front.sepia.ceph.com' 2024-04-15T17:31:48.230 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi055.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T17:31:48.321 DEBUG:teuthology.orchestra.run.smithi055:> true 2024-04-15T17:31:48.401 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi055.front.sepia.ceph.com' 2024-04-15T17:31:48.402 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi092.front.sepia.ceph.com' 2024-04-15T17:31:48.402 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi092.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T17:31:48.492 DEBUG:teuthology.orchestra.run.smithi092:> true 2024-04-15T17:31:48.582 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi092.front.sepia.ceph.com' 2024-04-15T17:31:48.582 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi118.front.sepia.ceph.com' 2024-04-15T17:31:48.583 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi118.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T17:31:48.673 DEBUG:teuthology.orchestra.run.smithi118:> true 2024-04-15T17:31:48.755 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi118.front.sepia.ceph.com' 2024-04-15T17:31:48.756 INFO:teuthology.run_tasks:Running task clock... 2024-04-15T17:31:48.768 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-04-15T17:31:48.769 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-15T17:31:48.769 DEBUG:teuthology.orchestra.run.smithi055:> 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-04-15T17:31:48.772 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-15T17:31:48.772 DEBUG:teuthology.orchestra.run.smithi092:> 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-04-15T17:31:48.774 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-15T17:31:48.774 DEBUG:teuthology.orchestra.run.smithi118:> 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-04-15T17:31:48.804 INFO:teuthology.orchestra.run.smithi055.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-15T17:31:48.806 INFO:teuthology.orchestra.run.smithi092.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-15T17:31:48.823 INFO:teuthology.orchestra.run.smithi055.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-15T17:31:48.824 INFO:teuthology.orchestra.run.smithi092.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-15T17:31:48.832 INFO:teuthology.orchestra.run.smithi118.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-15T17:31:48.850 INFO:teuthology.orchestra.run.smithi118.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-15T17:31:48.855 INFO:teuthology.orchestra.run.smithi055.stderr:sudo: ntpd: command not found 2024-04-15T17:31:48.856 INFO:teuthology.orchestra.run.smithi092.stderr:sudo: ntpd: command not found 2024-04-15T17:31:48.870 INFO:teuthology.orchestra.run.smithi055.stdout:506 Cannot talk to daemon 2024-04-15T17:31:48.870 INFO:teuthology.orchestra.run.smithi092.stdout:506 Cannot talk to daemon 2024-04-15T17:31:48.882 INFO:teuthology.orchestra.run.smithi118.stderr:sudo: ntpd: command not found 2024-04-15T17:31:48.887 INFO:teuthology.orchestra.run.smithi055.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-15T17:31:48.888 INFO:teuthology.orchestra.run.smithi092.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-15T17:31:48.897 INFO:teuthology.orchestra.run.smithi118.stdout:506 Cannot talk to daemon 2024-04-15T17:31:48.905 INFO:teuthology.orchestra.run.smithi055.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-15T17:31:48.906 INFO:teuthology.orchestra.run.smithi092.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-15T17:31:48.915 INFO:teuthology.orchestra.run.smithi118.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-15T17:31:48.932 INFO:teuthology.orchestra.run.smithi118.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-15T17:31:48.959 INFO:teuthology.orchestra.run.smithi092.stderr:bash: line 1: ntpq: command not found 2024-04-15T17:31:48.962 INFO:teuthology.orchestra.run.smithi092.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T17:31:48.962 INFO:teuthology.orchestra.run.smithi092.stdout:=============================================================================== 2024-04-15T17:31:48.962 INFO:teuthology.orchestra.run.smithi092.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T17:31:48.962 INFO:teuthology.orchestra.run.smithi092.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T17:31:48.962 INFO:teuthology.orchestra.run.smithi092.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T17:31:48.963 INFO:teuthology.orchestra.run.smithi092.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T17:31:48.963 INFO:teuthology.orchestra.run.smithi055.stderr:bash: line 1: ntpq: command not found 2024-04-15T17:31:48.969 INFO:teuthology.orchestra.run.smithi055.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T17:31:48.970 INFO:teuthology.orchestra.run.smithi055.stdout:=============================================================================== 2024-04-15T17:31:48.970 INFO:teuthology.orchestra.run.smithi055.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T17:31:48.970 INFO:teuthology.orchestra.run.smithi055.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T17:31:48.970 INFO:teuthology.orchestra.run.smithi055.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T17:31:48.970 INFO:teuthology.orchestra.run.smithi055.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T17:31:48.989 INFO:teuthology.orchestra.run.smithi118.stderr:bash: line 1: ntpq: command not found 2024-04-15T17:31:48.992 INFO:teuthology.orchestra.run.smithi118.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T17:31:48.992 INFO:teuthology.orchestra.run.smithi118.stdout:=============================================================================== 2024-04-15T17:31:48.992 INFO:teuthology.orchestra.run.smithi118.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T17:31:48.992 INFO:teuthology.orchestra.run.smithi118.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T17:31:48.992 INFO:teuthology.orchestra.run.smithi118.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T17:31:48.992 INFO:teuthology.orchestra.run.smithi118.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T17:31:48.993 INFO:teuthology.run_tasks:Running task install... 2024-04-15T17:31:49.002 DEBUG:teuthology.task.install:project ceph 2024-04-15T17:31:49.002 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'c2d8c3155d854ee204cb7c7261232571229d1d54'}} 2024-04-15T17:31:49.002 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'c2d8c3155d854ee204cb7c7261232571229d1d54'} 2024-04-15T17:31:49.002 INFO:teuthology.task.install:Using flavor: default 2024-04-15T17:31:49.008 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-04-15T17:31:49.008 INFO:teuthology.task.install:extra packages: [] 2024-04-15T17:31:49.009 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': 'c2d8c3155d854ee204cb7c7261232571229d1d54', 'tag': None, 'wait_for_package': False} 2024-04-15T17:31:49.009 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=c2d8c3155d854ee204cb7c7261232571229d1d54 2024-04-15T17:31:49.011 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': 'c2d8c3155d854ee204cb7c7261232571229d1d54', 'tag': None, 'wait_for_package': False} 2024-04-15T17:31:49.012 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=c2d8c3155d854ee204cb7c7261232571229d1d54 2024-04-15T17:31:49.013 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': 'c2d8c3155d854ee204cb7c7261232571229d1d54', 'tag': None, 'wait_for_package': False} 2024-04-15T17:31:49.013 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=c2d8c3155d854ee204cb7c7261232571229d1d54 2024-04-15T17:31:49.168 INFO:teuthology.task.install.rpm:Pulling from https://4.chacra.ceph.com/r/ceph/main/c2d8c3155d854ee204cb7c7261232571229d1d54/centos/9/flavors/default/ 2024-04-15T17:31:49.168 INFO:teuthology.task.install.rpm:Package version is 19.0.0-3080.gc2d8c315 2024-04-15T17:31:49.245 INFO:teuthology.task.install.rpm:Pulling from https://4.chacra.ceph.com/r/ceph/main/c2d8c3155d854ee204cb7c7261232571229d1d54/centos/9/flavors/default/ 2024-04-15T17:31:49.245 INFO:teuthology.task.install.rpm:Package version is 19.0.0-3080.gc2d8c315 2024-04-15T17:31:49.249 INFO:teuthology.task.install.rpm:Pulling from https://4.chacra.ceph.com/r/ceph/main/c2d8c3155d854ee204cb7c7261232571229d1d54/centos/9/flavors/default/ 2024-04-15T17:31:49.249 INFO:teuthology.task.install.rpm:Package version is 19.0.0-3080.gc2d8c315 2024-04-15T17:31:49.281 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://4.chacra.ceph.com/r/ceph/main/c2d8c3155d854ee204cb7c7261232571229d1d54/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://4.chacra.ceph.com/r/ceph/main/c2d8c3155d854ee204cb7c7261232571229d1d54/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://4.chacra.ceph.com/r/ceph/main/c2d8c3155d854ee204cb7c7261232571229d1d54/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-04-15T17:31:49.282 DEBUG:teuthology.orchestra.run.smithi092:> set -ex 2024-04-15T17:31:49.282 DEBUG:teuthology.orchestra.run.smithi092:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-04-15T17:31:49.311 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-04-15T17:31:49.311 DEBUG:teuthology.orchestra.run.smithi092:> 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/c2d8c3155d854ee204cb7c7261232571229d1d54/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-04-15T17:31:49.356 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://4.chacra.ceph.com/r/ceph/main/c2d8c3155d854ee204cb7c7261232571229d1d54/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://4.chacra.ceph.com/r/ceph/main/c2d8c3155d854ee204cb7c7261232571229d1d54/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://4.chacra.ceph.com/r/ceph/main/c2d8c3155d854ee204cb7c7261232571229d1d54/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-04-15T17:31:49.356 DEBUG:teuthology.orchestra.run.smithi118:> set -ex 2024-04-15T17:31:49.357 DEBUG:teuthology.orchestra.run.smithi118:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-04-15T17:31:49.380 DEBUG:teuthology.orchestra.run.smithi092:> 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-04-15T17:31:49.387 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-04-15T17:31:49.387 DEBUG:teuthology.orchestra.run.smithi118:> 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/c2d8c3155d854ee204cb7c7261232571229d1d54/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-04-15T17:31:49.432 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://4.chacra.ceph.com/r/ceph/main/c2d8c3155d854ee204cb7c7261232571229d1d54/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://4.chacra.ceph.com/r/ceph/main/c2d8c3155d854ee204cb7c7261232571229d1d54/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://4.chacra.ceph.com/r/ceph/main/c2d8c3155d854ee204cb7c7261232571229d1d54/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-04-15T17:31:49.432 DEBUG:teuthology.orchestra.run.smithi055:> set -ex 2024-04-15T17:31:49.432 DEBUG:teuthology.orchestra.run.smithi055:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-04-15T17:31:49.458 DEBUG:teuthology.orchestra.run.smithi118:> 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-04-15T17:31:49.462 DEBUG:teuthology.orchestra.run.smithi092:> 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-04-15T17:31:49.463 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-04-15T17:31:49.463 DEBUG:teuthology.orchestra.run.smithi055:> 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/c2d8c3155d854ee204cb7c7261232571229d1d54/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-04-15T17:31:49.529 INFO:teuthology.orchestra.run.smithi092.stdout:check_obsoletes = 1 2024-04-15T17:31:49.531 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum clean all 2024-04-15T17:31:49.534 DEBUG:teuthology.orchestra.run.smithi055:> 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-04-15T17:31:49.539 DEBUG:teuthology.orchestra.run.smithi118:> 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-04-15T17:31:49.607 INFO:teuthology.orchestra.run.smithi118.stdout:check_obsoletes = 1 2024-04-15T17:31:49.609 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum clean all 2024-04-15T17:31:49.617 DEBUG:teuthology.orchestra.run.smithi055:> 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-04-15T17:31:49.684 INFO:teuthology.orchestra.run.smithi055.stdout:check_obsoletes = 1 2024-04-15T17:31:49.686 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum clean all 2024-04-15T17:31:49.781 INFO:teuthology.orchestra.run.smithi092.stdout:74 files removed 2024-04-15T17:31:49.808 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum -y install ceph-radosgw 2024-04-15T17:31:49.860 INFO:teuthology.orchestra.run.smithi118.stdout:74 files removed 2024-04-15T17:31:49.886 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum -y install ceph-radosgw 2024-04-15T17:31:49.941 INFO:teuthology.orchestra.run.smithi055.stdout:74 files removed 2024-04-15T17:31:49.968 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum -y install ceph-radosgw 2024-04-15T17:31:50.576 INFO:teuthology.orchestra.run.smithi092.stdout:ceph packages for x86_64 179 kB/s | 83 kB 00:00 2024-04-15T17:31:50.593 INFO:teuthology.orchestra.run.smithi118.stdout:ceph packages for x86_64 206 kB/s | 83 kB 00:00 2024-04-15T17:31:50.687 INFO:teuthology.orchestra.run.smithi055.stdout:ceph packages for x86_64 204 kB/s | 83 kB 00:00 2024-04-15T17:31:50.911 INFO:teuthology.orchestra.run.smithi118.stdout:ceph noarch packages 43 kB/s | 12 kB 00:00 2024-04-15T17:31:51.001 INFO:teuthology.orchestra.run.smithi092.stdout:ceph noarch packages 31 kB/s | 12 kB 00:00 2024-04-15T17:31:51.355 INFO:teuthology.orchestra.run.smithi055.stdout:ceph noarch packages 19 kB/s | 12 kB 00:00 2024-04-15T17:31:51.797 INFO:teuthology.orchestra.run.smithi055.stdout:ceph source packages 4.8 kB/s | 1.9 kB 00:00 2024-04-15T17:31:52.375 INFO:teuthology.orchestra.run.smithi055.stdout:CentOS-9 - AppStream 12 MB/s | 6.7 MB 00:00 2024-04-15T17:31:52.918 INFO:teuthology.orchestra.run.smithi092.stdout:ceph source packages 1.0 kB/s | 1.9 kB 00:01 2024-04-15T17:31:53.512 INFO:teuthology.orchestra.run.smithi092.stdout:CentOS-9 - AppStream 12 MB/s | 6.7 MB 00:00 2024-04-15T17:31:54.208 INFO:teuthology.orchestra.run.smithi055.stdout:CentOS-9 - BaseOS 3.0 MB/s | 2.0 MB 00:00 2024-04-15T17:31:54.286 INFO:teuthology.orchestra.run.smithi118.stdout:ceph source packages 583 B/s | 1.9 kB 00:03 2024-04-15T17:31:54.906 INFO:teuthology.orchestra.run.smithi118.stdout:CentOS-9 - AppStream 12 MB/s | 6.7 MB 00:00 2024-04-15T17:31:55.129 INFO:teuthology.orchestra.run.smithi092.stdout:CentOS-9 - BaseOS 3.9 MB/s | 2.0 MB 00:00 2024-04-15T17:31:55.341 INFO:teuthology.orchestra.run.smithi055.stdout:CentOS Stream 9 - BaseOS 10 MB/s | 8.0 MB 00:00 2024-04-15T17:31:56.037 INFO:teuthology.orchestra.run.smithi092.stdout:CentOS Stream 9 - BaseOS 14 MB/s | 8.0 MB 00:00 2024-04-15T17:31:57.318 INFO:teuthology.orchestra.run.smithi055.stdout:CentOS Stream 9 - AppStream 24 MB/s | 19 MB 00:00 2024-04-15T17:31:57.798 INFO:teuthology.orchestra.run.smithi118.stdout:CentOS-9 - BaseOS 1.1 MB/s | 2.0 MB 00:01 2024-04-15T17:31:58.313 INFO:teuthology.orchestra.run.smithi092.stdout:CentOS Stream 9 - AppStream 16 MB/s | 19 MB 00:01 2024-04-15T17:32:01.544 INFO:teuthology.orchestra.run.smithi055.stdout:CentOS Stream 9 - CRB 12 MB/s | 6.2 MB 00:00 2024-04-15T17:32:02.978 INFO:teuthology.orchestra.run.smithi055.stdout:CentOS Stream 9 - Extras packages 78 kB/s | 16 kB 00:00 2024-04-15T17:32:04.080 INFO:teuthology.orchestra.run.smithi055.stdout:Extra Packages for Enterprise Linux 22 MB/s | 21 MB 00:00 2024-04-15T17:32:07.020 INFO:teuthology.orchestra.run.smithi118.stdout:CentOS Stream 9 - BaseOS 926 kB/s | 8.0 MB 00:08 2024-04-15T17:32:09.305 INFO:teuthology.orchestra.run.smithi055.stdout:lab-extras 33 kB/s | 1.7 kB 00:00 2024-04-15T17:32:09.896 INFO:teuthology.orchestra.run.smithi092.stdout:CentOS Stream 9 - CRB 781 kB/s | 6.2 MB 00:08 2024-04-15T17:32:10.596 INFO:teuthology.orchestra.run.smithi118.stdout:CentOS Stream 9 - AppStream 7.6 MB/s | 19 MB 00:02 2024-04-15T17:32:11.796 INFO:teuthology.orchestra.run.smithi092.stdout:CentOS Stream 9 - Extras packages 28 kB/s | 16 kB 00:00 2024-04-15T17:32:12.171 INFO:teuthology.orchestra.run.smithi055.stdout:Dependencies resolved. 2024-04-15T17:32:12.182 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:32:12.182 INFO:teuthology.orchestra.run.smithi055.stdout: Package Arch Version Repository Size 2024-04-15T17:32:12.182 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:32:12.182 INFO:teuthology.orchestra.run.smithi055.stdout:Installing: 2024-04-15T17:32:12.183 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-radosgw x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 11 M 2024-04-15T17:32:12.183 INFO:teuthology.orchestra.run.smithi055.stdout:Upgrading: 2024-04-15T17:32:12.183 INFO:teuthology.orchestra.run.smithi055.stdout: librados2 x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 3.4 M 2024-04-15T17:32:12.183 INFO:teuthology.orchestra.run.smithi055.stdout: librbd1 x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 3.1 M 2024-04-15T17:32:12.183 INFO:teuthology.orchestra.run.smithi055.stdout:Installing dependencies: 2024-04-15T17:32:12.183 INFO:teuthology.orchestra.run.smithi055.stdout: boost-program-options 2024-04-15T17:32:12.183 INFO:teuthology.orchestra.run.smithi055.stdout: x86_64 1.75.0-8.el9 CentOS-AppStream 106 k 2024-04-15T17:32:12.183 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-base x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 5.4 M 2024-04-15T17:32:12.183 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-common x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 21 M 2024-04-15T17:32:12.183 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-selinux x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 25 k 2024-04-15T17:32:12.183 INFO:teuthology.orchestra.run.smithi055.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-04-15T17:32:12.184 INFO:teuthology.orchestra.run.smithi055.stdout: libarrow x86_64 9.0.0-10.el9 epel 4.4 M 2024-04-15T17:32:12.184 INFO:teuthology.orchestra.run.smithi055.stdout: libarrow-doc noarch 9.0.0-10.el9 epel 26 k 2024-04-15T17:32:12.184 INFO:teuthology.orchestra.run.smithi055.stdout: libcephfs2 x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 747 k 2024-04-15T17:32:12.184 INFO:teuthology.orchestra.run.smithi055.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-04-15T17:32:12.184 INFO:teuthology.orchestra.run.smithi055.stdout: libpmemobj x86_64 1.12.1-1.el9 CentOS-AppStream 159 k 2024-04-15T17:32:12.184 INFO:teuthology.orchestra.run.smithi055.stdout: librabbitmq x86_64 0.11.0-7.el9 CentOS-AppStream 44 k 2024-04-15T17:32:12.184 INFO:teuthology.orchestra.run.smithi055.stdout: libradosstriper1 x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 501 k 2024-04-15T17:32:12.184 INFO:teuthology.orchestra.run.smithi055.stdout: librdkafka x86_64 1.6.1-102.el9 CentOS-AppStream 661 k 2024-04-15T17:32:12.184 INFO:teuthology.orchestra.run.smithi055.stdout: librgw2 x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 5.4 M 2024-04-15T17:32:12.184 INFO:teuthology.orchestra.run.smithi055.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-04-15T17:32:12.184 INFO:teuthology.orchestra.run.smithi055.stdout: lttng-ust x86_64 2.12.0-6.el9 CentOS-AppStream 282 k 2024-04-15T17:32:12.184 INFO:teuthology.orchestra.run.smithi055.stdout: parquet-libs x86_64 9.0.0-10.el9 epel 838 k 2024-04-15T17:32:12.185 INFO:teuthology.orchestra.run.smithi055.stdout: python3-ceph-argparse 2024-04-15T17:32:12.185 INFO:teuthology.orchestra.run.smithi055.stdout: x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 45 k 2024-04-15T17:32:12.185 INFO:teuthology.orchestra.run.smithi055.stdout: python3-ceph-common x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 135 k 2024-04-15T17:32:12.185 INFO:teuthology.orchestra.run.smithi055.stdout: python3-cephfs x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 162 k 2024-04-15T17:32:12.185 INFO:teuthology.orchestra.run.smithi055.stdout: python3-prettytable noarch 0.7.2-27.el9 CentOS-AppStream 41 k 2024-04-15T17:32:12.185 INFO:teuthology.orchestra.run.smithi055.stdout: python3-rados x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 320 k 2024-04-15T17:32:12.185 INFO:teuthology.orchestra.run.smithi055.stdout: python3-rbd x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 298 k 2024-04-15T17:32:12.185 INFO:teuthology.orchestra.run.smithi055.stdout: python3-rgw x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 100 k 2024-04-15T17:32:12.185 INFO:teuthology.orchestra.run.smithi055.stdout: qatlib x86_64 24.02.0-1.el9 CentOS-AppStream 220 k 2024-04-15T17:32:12.185 INFO:teuthology.orchestra.run.smithi055.stdout: qatzip-libs x86_64 1.2.0-1.el9 CentOS-AppStream 46 k 2024-04-15T17:32:12.185 INFO:teuthology.orchestra.run.smithi055.stdout: re2 x86_64 1:20211101-3.el9 epel 192 k 2024-04-15T17:32:12.185 INFO:teuthology.orchestra.run.smithi055.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-04-15T17:32:12.186 INFO:teuthology.orchestra.run.smithi055.stdout:Installing weak dependencies: 2024-04-15T17:32:12.186 INFO:teuthology.orchestra.run.smithi055.stdout: qatlib-service x86_64 24.02.0-1.el9 CentOS-AppStream 35 k 2024-04-15T17:32:12.186 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:32:12.186 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction Summary 2024-04-15T17:32:12.186 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:32:12.186 INFO:teuthology.orchestra.run.smithi055.stdout:Install 30 Packages 2024-04-15T17:32:12.186 INFO:teuthology.orchestra.run.smithi055.stdout:Upgrade 2 Packages 2024-04-15T17:32:12.186 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:32:12.187 INFO:teuthology.orchestra.run.smithi055.stdout:Total download size: 60 M 2024-04-15T17:32:12.187 INFO:teuthology.orchestra.run.smithi055.stdout:Downloading Packages: 2024-04-15T17:32:13.940 INFO:teuthology.orchestra.run.smithi055.stdout:(1/32): ceph-base-19.0.0-3080.gc2d8c315.el9.x86 3.4 MB/s | 5.4 MB 00:01 2024-04-15T17:32:14.016 INFO:teuthology.orchestra.run.smithi055.stdout:(2/32): ceph-selinux-19.0.0-3080.gc2d8c315.el9. 334 kB/s | 25 kB 00:00 2024-04-15T17:32:14.165 INFO:teuthology.orchestra.run.smithi055.stdout:(3/32): libcephfs2-19.0.0-3080.gc2d8c315.el9.x8 4.9 MB/s | 747 kB 00:00 2024-04-15T17:32:14.299 INFO:teuthology.orchestra.run.smithi055.stdout:(4/32): libradosstriper1-19.0.0-3080.gc2d8c315. 3.7 MB/s | 501 kB 00:00 2024-04-15T17:32:14.816 INFO:teuthology.orchestra.run.smithi055.stdout:(5/32): ceph-radosgw-19.0.0-3080.gc2d8c315.el9. 4.3 MB/s | 11 MB 00:02 2024-04-15T17:32:14.900 INFO:teuthology.orchestra.run.smithi055.stdout:(6/32): python3-ceph-argparse-19.0.0-3080.gc2d8 543 kB/s | 45 kB 00:00 2024-04-15T17:32:14.983 INFO:teuthology.orchestra.run.smithi055.stdout:(7/32): python3-ceph-common-19.0.0-3080.gc2d8c3 1.6 MB/s | 135 kB 00:00 2024-04-15T17:32:15.092 INFO:teuthology.orchestra.run.smithi055.stdout:(8/32): librgw2-19.0.0-3080.gc2d8c315.el9.x86_6 6.8 MB/s | 5.4 MB 00:00 2024-04-15T17:32:15.117 INFO:teuthology.orchestra.run.smithi055.stdout:(9/32): python3-cephfs-19.0.0-3080.gc2d8c315.el 1.2 MB/s | 162 kB 00:00 2024-04-15T17:32:15.326 INFO:teuthology.orchestra.run.smithi055.stdout:(10/32): ceph-common-19.0.0-3080.gc2d8c315.el9. 7.1 MB/s | 21 MB 00:02 2024-04-15T17:32:15.351 INFO:teuthology.orchestra.run.smithi055.stdout:(11/32): python3-rbd-19.0.0-3080.gc2d8c315.el9. 1.2 MB/s | 298 kB 00:00 2024-04-15T17:32:15.385 INFO:teuthology.orchestra.run.smithi055.stdout:(12/32): python3-rados-19.0.0-3080.gc2d8c315.el 1.1 MB/s | 320 kB 00:00 2024-04-15T17:32:15.410 INFO:teuthology.orchestra.run.smithi055.stdout:(13/32): python3-rgw-19.0.0-3080.gc2d8c315.el9. 1.2 MB/s | 100 kB 00:00 2024-04-15T17:32:15.544 INFO:teuthology.orchestra.run.smithi055.stdout:(14/32): boost-program-options-1.75.0-8.el9.x86 550 kB/s | 106 kB 00:00 2024-04-15T17:32:15.578 INFO:teuthology.orchestra.run.smithi055.stdout:(15/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 828 kB/s | 159 kB 00:00 2024-04-15T17:32:15.602 INFO:teuthology.orchestra.run.smithi055.stdout:(16/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 319 kB/s | 44 kB 00:00 2024-04-15T17:32:15.711 INFO:teuthology.orchestra.run.smithi055.stdout:(17/32): librdkafka-1.6.1-102.el9.x86_64.rpm 3.9 MB/s | 661 kB 00:00 2024-04-15T17:32:15.737 INFO:teuthology.orchestra.run.smithi055.stdout:(18/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 2.1 MB/s | 282 kB 00:00 2024-04-15T17:32:15.762 INFO:teuthology.orchestra.run.smithi055.stdout:(19/32): python3-prettytable-0.7.2-27.el9.noarc 260 kB/s | 41 kB 00:00 2024-04-15T17:32:15.787 INFO:teuthology.orchestra.run.smithi055.stdout:(20/32): qatlib-24.02.0-1.el9.x86_64.rpm 2.9 MB/s | 220 kB 00:00 2024-04-15T17:32:15.812 INFO:teuthology.orchestra.run.smithi055.stdout:(21/32): qatlib-service-24.02.0-1.el9.x86_64.rp 702 kB/s | 35 kB 00:00 2024-04-15T17:32:15.838 INFO:teuthology.orchestra.run.smithi055.stdout:(22/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 619 kB/s | 46 kB 00:00 2024-04-15T17:32:16.080 INFO:teuthology.orchestra.run.smithi055.stdout:(23/32): libarrow-doc-9.0.0-10.el9.noarch.rpm 107 kB/s | 26 kB 00:00 2024-04-15T17:32:16.263 INFO:teuthology.orchestra.run.smithi055.stdout:(24/32): liboath-2.6.7-2.el9.x86_64.rpm 265 kB/s | 49 kB 00:00 2024-04-15T17:32:16.342 INFO:teuthology.orchestra.run.smithi092.stdout:Extra Packages for Enterprise Linux 4.7 MB/s | 21 MB 00:04 2024-04-15T17:32:16.372 INFO:teuthology.orchestra.run.smithi055.stdout:(25/32): libunwind-1.6.2-1.el9.x86_64.rpm 621 kB/s | 67 kB 00:00 2024-04-15T17:32:16.405 INFO:teuthology.orchestra.run.smithi055.stdout:(26/32): gperftools-libs-2.9.1-2.el9.x86_64.rpm 500 kB/s | 309 kB 00:00 2024-04-15T17:32:16.547 INFO:teuthology.orchestra.run.smithi055.stdout:(27/32): re2-20211101-3.el9.x86_64.rpm 1.3 MB/s | 192 kB 00:00 2024-04-15T17:32:16.723 INFO:teuthology.orchestra.run.smithi055.stdout:(28/32): libarrow-9.0.0-10.el9.x86_64.rpm 5.0 MB/s | 4.4 MB 00:00 2024-04-15T17:32:16.798 INFO:teuthology.orchestra.run.smithi055.stdout:(29/32): parquet-libs-9.0.0-10.el9.x86_64.rpm 1.9 MB/s | 838 kB 00:00 2024-04-15T17:32:16.916 INFO:teuthology.orchestra.run.smithi055.stdout:(30/32): thrift-0.15.0-2.el9.x86_64.rpm 4.3 MB/s | 1.6 MB 00:00 2024-04-15T17:32:17.191 INFO:teuthology.orchestra.run.smithi055.stdout:(31/32): librbd1-19.0.0-3080.gc2d8c315.el9.x86_ 8.0 MB/s | 3.1 MB 00:00 2024-04-15T17:32:17.283 INFO:teuthology.orchestra.run.smithi055.stdout:(32/32): librados2-19.0.0-3080.gc2d8c315.el9.x8 6.1 MB/s | 3.4 MB 00:00 2024-04-15T17:32:17.287 INFO:teuthology.orchestra.run.smithi055.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:32:17.287 INFO:teuthology.orchestra.run.smithi055.stdout:Total 12 MB/s | 60 MB 00:05 2024-04-15T17:32:17.287 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction check 2024-04-15T17:32:17.330 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction check succeeded. 2024-04-15T17:32:17.330 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction test 2024-04-15T17:32:17.843 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction test succeeded. 2024-04-15T17:32:17.843 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction 2024-04-15T17:32:19.362 INFO:teuthology.orchestra.run.smithi055.stdout: Preparing : 1/1 2024-04-15T17:32:19.442 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-04-15T17:32:19.471 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-04-15T17:32:19.496 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-04-15T17:32:19.519 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-15T17:32:19.536 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-15T17:32:19.729 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-15T17:32:19.784 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-15T17:32:20.151 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-04-15T17:32:20.190 INFO:teuthology.orchestra.run.smithi055.stdout: Upgrading : librados2-2:19.0.0-3080.gc2d8c315.el9.x86_64 7/34 2024-04-15T17:32:20.266 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: librados2-2:19.0.0-3080.gc2d8c315.el9.x86_64 7/34 2024-04-15T17:32:20.356 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-rados-2:19.0.0-3080.gc2d8c315.el9.x86_64 8/34 2024-04-15T17:32:20.392 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : libcephfs2-2:19.0.0-3080.gc2d8c315.el9.x86_64 9/34 2024-04-15T17:32:20.438 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: libcephfs2-2:19.0.0-3080.gc2d8c315.el9.x86_64 9/34 2024-04-15T17:32:20.467 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-04-15T17:32:20.528 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-ceph-argparse-2:19.0.0-3080.gc2d8c315.el9. 11/34 2024-04-15T17:32:20.597 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-cephfs-2:19.0.0-3080.gc2d8c315.el9.x86_64 12/34 2024-04-15T17:32:20.619 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : libradosstriper1-2:19.0.0-3080.gc2d8c315.el9.x86_6 13/34 2024-04-15T17:32:20.683 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: libradosstriper1-2:19.0.0-3080.gc2d8c315.el9.x86_6 13/34 2024-04-15T17:32:20.718 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-04-15T17:32:20.829 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : re2-1:20211101-3.el9.x86_64 15/34 2024-04-15T17:32:20.861 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : libarrow-9.0.0-10.el9.x86_64 16/34 2024-04-15T17:32:20.901 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-04-15T17:32:20.942 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 18/34 2024-04-15T17:32:20.980 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : libarrow-doc-9.0.0-10.el9.noarch 19/34 2024-04-15T17:32:21.012 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-04-15T17:32:21.342 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-04-15T17:32:21.346 INFO:teuthology.orchestra.run.smithi092.stdout:lab-extras 28 kB/s | 1.7 kB 00:00 2024-04-15T17:32:21.367 INFO:teuthology.orchestra.run.smithi055.stdout: Upgrading : librbd1-2:19.0.0-3080.gc2d8c315.el9.x86_64 22/34 2024-04-15T17:32:21.441 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: librbd1-2:19.0.0-3080.gc2d8c315.el9.x86_64 22/34 2024-04-15T17:32:21.472 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-rbd-2:19.0.0-3080.gc2d8c315.el9.x86_64 23/34 2024-04-15T17:32:21.512 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-04-15T17:32:22.014 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : parquet-libs-9.0.0-10.el9.x86_64 25/34 2024-04-15T17:32:22.037 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : librgw2-2:19.0.0-3080.gc2d8c315.el9.x86_64 26/34 2024-04-15T17:32:22.114 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: librgw2-2:19.0.0-3080.gc2d8c315.el9.x86_64 26/34 2024-04-15T17:32:22.187 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-rgw-2:19.0.0-3080.gc2d8c315.el9.x86_64 27/34 2024-04-15T17:32:22.223 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-ceph-common-2:19.0.0-3080.gc2d8c315.el9.x8 28/34 2024-04-15T17:32:22.338 INFO:teuthology.orchestra.run.smithi118.stdout:CentOS Stream 9 - CRB 771 kB/s | 6.2 MB 00:08 2024-04-15T17:32:23.855 INFO:teuthology.orchestra.run.smithi118.stdout:CentOS Stream 9 - Extras packages 51 kB/s | 16 kB 00:00 2024-04-15T17:32:24.109 INFO:teuthology.orchestra.run.smithi092.stdout:Dependencies resolved. 2024-04-15T17:32:24.121 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:32:24.121 INFO:teuthology.orchestra.run.smithi092.stdout: Package Arch Version Repository Size 2024-04-15T17:32:24.121 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:32:24.121 INFO:teuthology.orchestra.run.smithi092.stdout:Installing: 2024-04-15T17:32:24.121 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-radosgw x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 11 M 2024-04-15T17:32:24.121 INFO:teuthology.orchestra.run.smithi092.stdout:Upgrading: 2024-04-15T17:32:24.121 INFO:teuthology.orchestra.run.smithi092.stdout: librados2 x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 3.4 M 2024-04-15T17:32:24.121 INFO:teuthology.orchestra.run.smithi092.stdout: librbd1 x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 3.1 M 2024-04-15T17:32:24.121 INFO:teuthology.orchestra.run.smithi092.stdout:Installing dependencies: 2024-04-15T17:32:24.121 INFO:teuthology.orchestra.run.smithi092.stdout: boost-program-options 2024-04-15T17:32:24.122 INFO:teuthology.orchestra.run.smithi092.stdout: x86_64 1.75.0-8.el9 CentOS-AppStream 106 k 2024-04-15T17:32:24.122 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-base x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 5.4 M 2024-04-15T17:32:24.122 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-common x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 21 M 2024-04-15T17:32:24.122 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-selinux x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 25 k 2024-04-15T17:32:24.122 INFO:teuthology.orchestra.run.smithi092.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-04-15T17:32:24.122 INFO:teuthology.orchestra.run.smithi092.stdout: libarrow x86_64 9.0.0-10.el9 epel 4.4 M 2024-04-15T17:32:24.122 INFO:teuthology.orchestra.run.smithi092.stdout: libarrow-doc noarch 9.0.0-10.el9 epel 26 k 2024-04-15T17:32:24.122 INFO:teuthology.orchestra.run.smithi092.stdout: libcephfs2 x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 747 k 2024-04-15T17:32:24.122 INFO:teuthology.orchestra.run.smithi092.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-04-15T17:32:24.122 INFO:teuthology.orchestra.run.smithi092.stdout: libpmemobj x86_64 1.12.1-1.el9 CentOS-AppStream 159 k 2024-04-15T17:32:24.123 INFO:teuthology.orchestra.run.smithi092.stdout: librabbitmq x86_64 0.11.0-7.el9 CentOS-AppStream 44 k 2024-04-15T17:32:24.123 INFO:teuthology.orchestra.run.smithi092.stdout: libradosstriper1 x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 501 k 2024-04-15T17:32:24.123 INFO:teuthology.orchestra.run.smithi092.stdout: librdkafka x86_64 1.6.1-102.el9 CentOS-AppStream 661 k 2024-04-15T17:32:24.123 INFO:teuthology.orchestra.run.smithi092.stdout: librgw2 x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 5.4 M 2024-04-15T17:32:24.123 INFO:teuthology.orchestra.run.smithi092.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-04-15T17:32:24.124 INFO:teuthology.orchestra.run.smithi092.stdout: lttng-ust x86_64 2.12.0-6.el9 CentOS-AppStream 282 k 2024-04-15T17:32:24.124 INFO:teuthology.orchestra.run.smithi092.stdout: parquet-libs x86_64 9.0.0-10.el9 epel 838 k 2024-04-15T17:32:24.124 INFO:teuthology.orchestra.run.smithi092.stdout: python3-ceph-argparse 2024-04-15T17:32:24.125 INFO:teuthology.orchestra.run.smithi092.stdout: x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 45 k 2024-04-15T17:32:24.125 INFO:teuthology.orchestra.run.smithi092.stdout: python3-ceph-common x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 135 k 2024-04-15T17:32:24.125 INFO:teuthology.orchestra.run.smithi092.stdout: python3-cephfs x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 162 k 2024-04-15T17:32:24.125 INFO:teuthology.orchestra.run.smithi092.stdout: python3-prettytable noarch 0.7.2-27.el9 CentOS-AppStream 41 k 2024-04-15T17:32:24.126 INFO:teuthology.orchestra.run.smithi092.stdout: python3-rados x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 320 k 2024-04-15T17:32:24.126 INFO:teuthology.orchestra.run.smithi092.stdout: python3-rbd x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 298 k 2024-04-15T17:32:24.126 INFO:teuthology.orchestra.run.smithi092.stdout: python3-rgw x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 100 k 2024-04-15T17:32:24.127 INFO:teuthology.orchestra.run.smithi092.stdout: qatlib x86_64 24.02.0-1.el9 CentOS-AppStream 220 k 2024-04-15T17:32:24.127 INFO:teuthology.orchestra.run.smithi092.stdout: qatzip-libs x86_64 1.2.0-1.el9 CentOS-AppStream 46 k 2024-04-15T17:32:24.128 INFO:teuthology.orchestra.run.smithi092.stdout: re2 x86_64 1:20211101-3.el9 epel 192 k 2024-04-15T17:32:24.128 INFO:teuthology.orchestra.run.smithi092.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-04-15T17:32:24.128 INFO:teuthology.orchestra.run.smithi092.stdout:Installing weak dependencies: 2024-04-15T17:32:24.129 INFO:teuthology.orchestra.run.smithi092.stdout: qatlib-service x86_64 24.02.0-1.el9 CentOS-AppStream 35 k 2024-04-15T17:32:24.129 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:32:24.129 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction Summary 2024-04-15T17:32:24.130 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:32:24.130 INFO:teuthology.orchestra.run.smithi092.stdout:Install 30 Packages 2024-04-15T17:32:24.130 INFO:teuthology.orchestra.run.smithi092.stdout:Upgrade 2 Packages 2024-04-15T17:32:24.131 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:32:24.132 INFO:teuthology.orchestra.run.smithi092.stdout:Total download size: 60 M 2024-04-15T17:32:24.132 INFO:teuthology.orchestra.run.smithi092.stdout:Downloading Packages: 2024-04-15T17:32:24.572 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: ceph-common-2:19.0.0-3080.gc2d8c315.el9.x86_64 29/34 2024-04-15T17:32:24.678 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : ceph-common-2:19.0.0-3080.gc2d8c315.el9.x86_64 29/34 2024-04-15T17:32:25.081 INFO:teuthology.orchestra.run.smithi092.stdout:(1/32): ceph-base-19.0.0-3080.gc2d8c315.el9.x86 9.2 MB/s | 5.4 MB 00:00 2024-04-15T17:32:25.140 INFO:teuthology.orchestra.run.smithi092.stdout:(2/32): ceph-selinux-19.0.0-3080.gc2d8c315.el9. 431 kB/s | 25 kB 00:00 2024-04-15T17:32:25.231 INFO:teuthology.orchestra.run.smithi092.stdout:(3/32): libcephfs2-19.0.0-3080.gc2d8c315.el9.x8 8.0 MB/s | 747 kB 00:00 2024-04-15T17:32:25.255 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: ceph-common-2:19.0.0-3080.gc2d8c315.el9.x86_64 29/34 2024-04-15T17:32:25.290 INFO:teuthology.orchestra.run.smithi092.stdout:(4/32): libradosstriper1-19.0.0-3080.gc2d8c315. 8.4 MB/s | 501 kB 00:00 2024-04-15T17:32:25.291 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : ceph-base-2:19.0.0-3080.gc2d8c315.el9.x86_64 30/34 2024-04-15T17:32:25.368 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: ceph-base-2:19.0.0-3080.gc2d8c315.el9.x86_64 30/34 2024-04-15T17:32:25.368 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-04-15T17:32:25.368 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-04-15T17:32:25.368 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:32:25.418 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : ceph-selinux-2:19.0.0-3080.gc2d8c315.el9.x86_64 31/34 2024-04-15T17:32:25.507 INFO:teuthology.orchestra.run.smithi118.stdout:Extra Packages for Enterprise Linux 14 MB/s | 21 MB 00:01 2024-04-15T17:32:25.722 INFO:teuthology.orchestra.run.smithi092.stdout:(5/32): librgw2-19.0.0-3080.gc2d8c315.el9.x86_6 12 MB/s | 5.4 MB 00:00 2024-04-15T17:32:25.849 INFO:teuthology.orchestra.run.smithi092.stdout:(6/32): ceph-radosgw-19.0.0-3080.gc2d8c315.el9. 7.8 MB/s | 11 MB 00:01 2024-04-15T17:32:25.874 INFO:teuthology.orchestra.run.smithi092.stdout:(7/32): python3-ceph-argparse-19.0.0-3080.gc2d8 297 kB/s | 45 kB 00:00 2024-04-15T17:32:25.900 INFO:teuthology.orchestra.run.smithi092.stdout:(8/32): python3-ceph-common-19.0.0-3080.gc2d8c3 2.6 MB/s | 135 kB 00:00 2024-04-15T17:32:25.933 INFO:teuthology.orchestra.run.smithi092.stdout:(9/32): python3-cephfs-19.0.0-3080.gc2d8c315.el 2.7 MB/s | 162 kB 00:00 2024-04-15T17:32:25.958 INFO:teuthology.orchestra.run.smithi092.stdout:(10/32): python3-rados-19.0.0-3080.gc2d8c315.el 5.4 MB/s | 320 kB 00:00 2024-04-15T17:32:25.984 INFO:teuthology.orchestra.run.smithi092.stdout:(11/32): python3-rbd-19.0.0-3080.gc2d8c315.el9. 5.8 MB/s | 298 kB 00:00 2024-04-15T17:32:26.009 INFO:teuthology.orchestra.run.smithi092.stdout:(12/32): python3-rgw-19.0.0-3080.gc2d8c315.el9. 1.9 MB/s | 100 kB 00:00 2024-04-15T17:32:26.185 INFO:teuthology.orchestra.run.smithi092.stdout:(13/32): boost-program-options-1.75.0-8.el9.x86 528 kB/s | 106 kB 00:00 2024-04-15T17:32:26.210 INFO:teuthology.orchestra.run.smithi092.stdout:(14/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 795 kB/s | 159 kB 00:00 2024-04-15T17:32:26.244 INFO:teuthology.orchestra.run.smithi092.stdout:(15/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 749 kB/s | 44 kB 00:00 2024-04-15T17:32:26.302 INFO:teuthology.orchestra.run.smithi092.stdout:(16/32): librdkafka-1.6.1-102.el9.x86_64.rpm 7.0 MB/s | 661 kB 00:00 2024-04-15T17:32:26.336 INFO:teuthology.orchestra.run.smithi092.stdout:(17/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 3.0 MB/s | 282 kB 00:00 2024-04-15T17:32:26.361 INFO:teuthology.orchestra.run.smithi092.stdout:(18/32): python3-prettytable-0.7.2-27.el9.noarc 705 kB/s | 41 kB 00:00 2024-04-15T17:32:26.387 INFO:teuthology.orchestra.run.smithi092.stdout:(19/32): qatlib-24.02.0-1.el9.x86_64.rpm 4.3 MB/s | 220 kB 00:00 2024-04-15T17:32:26.412 INFO:teuthology.orchestra.run.smithi092.stdout:(20/32): qatlib-service-24.02.0-1.el9.x86_64.rp 695 kB/s | 35 kB 00:00 2024-04-15T17:32:26.438 INFO:teuthology.orchestra.run.smithi092.stdout:(21/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 927 kB/s | 46 kB 00:00 2024-04-15T17:32:26.538 INFO:teuthology.orchestra.run.smithi092.stdout:(22/32): gperftools-libs-2.9.1-2.el9.x86_64.rpm 2.4 MB/s | 309 kB 00:00 2024-04-15T17:32:26.571 INFO:teuthology.orchestra.run.smithi092.stdout:(23/32): libarrow-doc-9.0.0-10.el9.noarch.rpm 783 kB/s | 26 kB 00:00 2024-04-15T17:32:26.605 INFO:teuthology.orchestra.run.smithi092.stdout:(24/32): liboath-2.6.7-2.el9.x86_64.rpm 1.4 MB/s | 49 kB 00:00 2024-04-15T17:32:26.639 INFO:teuthology.orchestra.run.smithi092.stdout:(25/32): libunwind-1.6.2-1.el9.x86_64.rpm 2.0 MB/s | 67 kB 00:00 2024-04-15T17:32:26.714 INFO:teuthology.orchestra.run.smithi092.stdout:(26/32): libarrow-9.0.0-10.el9.x86_64.rpm 16 MB/s | 4.4 MB 00:00 2024-04-15T17:32:26.756 INFO:teuthology.orchestra.run.smithi092.stdout:(27/32): parquet-libs-9.0.0-10.el9.x86_64.rpm 7.0 MB/s | 838 kB 00:00 2024-04-15T17:32:26.781 INFO:teuthology.orchestra.run.smithi092.stdout:(28/32): re2-20211101-3.el9.x86_64.rpm 2.8 MB/s | 192 kB 00:00 2024-04-15T17:32:26.840 INFO:teuthology.orchestra.run.smithi092.stdout:(29/32): thrift-0.15.0-2.el9.x86_64.rpm 19 MB/s | 1.6 MB 00:00 2024-04-15T17:32:27.090 INFO:teuthology.orchestra.run.smithi092.stdout:(30/32): librados2-19.0.0-3080.gc2d8c315.el9.x8 11 MB/s | 3.4 MB 00:00 2024-04-15T17:32:27.232 INFO:teuthology.orchestra.run.smithi092.stdout:(31/32): librbd1-19.0.0-3080.gc2d8c315.el9.x86_ 8.0 MB/s | 3.1 MB 00:00 2024-04-15T17:32:27.807 INFO:teuthology.orchestra.run.smithi092.stdout:(32/32): ceph-common-19.0.0-3080.gc2d8c315.el9. 6.4 MB/s | 21 MB 00:03 2024-04-15T17:32:27.811 INFO:teuthology.orchestra.run.smithi092.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:32:27.812 INFO:teuthology.orchestra.run.smithi092.stdout:Total 16 MB/s | 60 MB 00:03 2024-04-15T17:32:27.812 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction check 2024-04-15T17:32:27.846 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction check succeeded. 2024-04-15T17:32:27.846 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction test 2024-04-15T17:32:28.335 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction test succeeded. 2024-04-15T17:32:28.336 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction 2024-04-15T17:32:29.817 INFO:teuthology.orchestra.run.smithi092.stdout: Preparing : 1/1 2024-04-15T17:32:29.898 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-04-15T17:32:29.937 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-04-15T17:32:29.979 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-04-15T17:32:30.010 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-15T17:32:30.027 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-15T17:32:30.221 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-15T17:32:30.283 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-15T17:32:30.600 INFO:teuthology.orchestra.run.smithi118.stdout:lab-extras 24 kB/s | 1.7 kB 00:00 2024-04-15T17:32:30.628 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-04-15T17:32:30.689 INFO:teuthology.orchestra.run.smithi092.stdout: Upgrading : librados2-2:19.0.0-3080.gc2d8c315.el9.x86_64 7/34 2024-04-15T17:32:30.773 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: librados2-2:19.0.0-3080.gc2d8c315.el9.x86_64 7/34 2024-04-15T17:32:30.863 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-rados-2:19.0.0-3080.gc2d8c315.el9.x86_64 8/34 2024-04-15T17:32:30.891 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : libcephfs2-2:19.0.0-3080.gc2d8c315.el9.x86_64 9/34 2024-04-15T17:32:30.937 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: libcephfs2-2:19.0.0-3080.gc2d8c315.el9.x86_64 9/34 2024-04-15T17:32:30.965 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-04-15T17:32:31.010 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-ceph-argparse-2:19.0.0-3080.gc2d8c315.el9. 11/34 2024-04-15T17:32:31.079 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-cephfs-2:19.0.0-3080.gc2d8c315.el9.x86_64 12/34 2024-04-15T17:32:31.110 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : libradosstriper1-2:19.0.0-3080.gc2d8c315.el9.x86_6 13/34 2024-04-15T17:32:31.174 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: libradosstriper1-2:19.0.0-3080.gc2d8c315.el9.x86_6 13/34 2024-04-15T17:32:31.209 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-04-15T17:32:31.319 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : re2-1:20211101-3.el9.x86_64 15/34 2024-04-15T17:32:31.352 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : libarrow-9.0.0-10.el9.x86_64 16/34 2024-04-15T17:32:31.401 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-04-15T17:32:31.433 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 18/34 2024-04-15T17:32:31.462 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : libarrow-doc-9.0.0-10.el9.noarch 19/34 2024-04-15T17:32:31.495 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-04-15T17:32:31.812 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-04-15T17:32:31.841 INFO:teuthology.orchestra.run.smithi092.stdout: Upgrading : librbd1-2:19.0.0-3080.gc2d8c315.el9.x86_64 22/34 2024-04-15T17:32:31.932 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: librbd1-2:19.0.0-3080.gc2d8c315.el9.x86_64 22/34 2024-04-15T17:32:31.963 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-rbd-2:19.0.0-3080.gc2d8c315.el9.x86_64 23/34 2024-04-15T17:32:32.003 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-04-15T17:32:32.482 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : parquet-libs-9.0.0-10.el9.x86_64 25/34 2024-04-15T17:32:32.511 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : librgw2-2:19.0.0-3080.gc2d8c315.el9.x86_64 26/34 2024-04-15T17:32:32.576 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: librgw2-2:19.0.0-3080.gc2d8c315.el9.x86_64 26/34 2024-04-15T17:32:32.682 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-rgw-2:19.0.0-3080.gc2d8c315.el9.x86_64 27/34 2024-04-15T17:32:32.905 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-ceph-common-2:19.0.0-3080.gc2d8c315.el9.x8 28/34 2024-04-15T17:32:33.344 INFO:teuthology.orchestra.run.smithi118.stdout:Dependencies resolved. 2024-04-15T17:32:33.355 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:32:33.355 INFO:teuthology.orchestra.run.smithi118.stdout: Package Arch Version Repository Size 2024-04-15T17:32:33.355 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:32:33.355 INFO:teuthology.orchestra.run.smithi118.stdout:Installing: 2024-04-15T17:32:33.356 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-radosgw x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 11 M 2024-04-15T17:32:33.356 INFO:teuthology.orchestra.run.smithi118.stdout:Upgrading: 2024-04-15T17:32:33.356 INFO:teuthology.orchestra.run.smithi118.stdout: librados2 x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 3.4 M 2024-04-15T17:32:33.356 INFO:teuthology.orchestra.run.smithi118.stdout: librbd1 x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 3.1 M 2024-04-15T17:32:33.356 INFO:teuthology.orchestra.run.smithi118.stdout:Installing dependencies: 2024-04-15T17:32:33.356 INFO:teuthology.orchestra.run.smithi118.stdout: boost-program-options 2024-04-15T17:32:33.356 INFO:teuthology.orchestra.run.smithi118.stdout: x86_64 1.75.0-8.el9 CentOS-AppStream 106 k 2024-04-15T17:32:33.356 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-base x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 5.4 M 2024-04-15T17:32:33.356 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-common x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 21 M 2024-04-15T17:32:33.356 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-selinux x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 25 k 2024-04-15T17:32:33.357 INFO:teuthology.orchestra.run.smithi118.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-04-15T17:32:33.357 INFO:teuthology.orchestra.run.smithi118.stdout: libarrow x86_64 9.0.0-10.el9 epel 4.4 M 2024-04-15T17:32:33.357 INFO:teuthology.orchestra.run.smithi118.stdout: libarrow-doc noarch 9.0.0-10.el9 epel 26 k 2024-04-15T17:32:33.357 INFO:teuthology.orchestra.run.smithi118.stdout: libcephfs2 x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 747 k 2024-04-15T17:32:33.357 INFO:teuthology.orchestra.run.smithi118.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-04-15T17:32:33.357 INFO:teuthology.orchestra.run.smithi118.stdout: libpmemobj x86_64 1.12.1-1.el9 CentOS-AppStream 159 k 2024-04-15T17:32:33.357 INFO:teuthology.orchestra.run.smithi118.stdout: librabbitmq x86_64 0.11.0-7.el9 CentOS-AppStream 44 k 2024-04-15T17:32:33.357 INFO:teuthology.orchestra.run.smithi118.stdout: libradosstriper1 x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 501 k 2024-04-15T17:32:33.357 INFO:teuthology.orchestra.run.smithi118.stdout: librdkafka x86_64 1.6.1-102.el9 CentOS-AppStream 661 k 2024-04-15T17:32:33.357 INFO:teuthology.orchestra.run.smithi118.stdout: librgw2 x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 5.4 M 2024-04-15T17:32:33.357 INFO:teuthology.orchestra.run.smithi118.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-04-15T17:32:33.357 INFO:teuthology.orchestra.run.smithi118.stdout: lttng-ust x86_64 2.12.0-6.el9 CentOS-AppStream 282 k 2024-04-15T17:32:33.358 INFO:teuthology.orchestra.run.smithi118.stdout: parquet-libs x86_64 9.0.0-10.el9 epel 838 k 2024-04-15T17:32:33.358 INFO:teuthology.orchestra.run.smithi118.stdout: python3-ceph-argparse 2024-04-15T17:32:33.358 INFO:teuthology.orchestra.run.smithi118.stdout: x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 45 k 2024-04-15T17:32:33.358 INFO:teuthology.orchestra.run.smithi118.stdout: python3-ceph-common x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 135 k 2024-04-15T17:32:33.358 INFO:teuthology.orchestra.run.smithi118.stdout: python3-cephfs x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 162 k 2024-04-15T17:32:33.358 INFO:teuthology.orchestra.run.smithi118.stdout: python3-prettytable noarch 0.7.2-27.el9 CentOS-AppStream 41 k 2024-04-15T17:32:33.358 INFO:teuthology.orchestra.run.smithi118.stdout: python3-rados x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 320 k 2024-04-15T17:32:33.358 INFO:teuthology.orchestra.run.smithi118.stdout: python3-rbd x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 298 k 2024-04-15T17:32:33.358 INFO:teuthology.orchestra.run.smithi118.stdout: python3-rgw x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 100 k 2024-04-15T17:32:33.358 INFO:teuthology.orchestra.run.smithi118.stdout: qatlib x86_64 24.02.0-1.el9 CentOS-AppStream 220 k 2024-04-15T17:32:33.359 INFO:teuthology.orchestra.run.smithi118.stdout: qatzip-libs x86_64 1.2.0-1.el9 CentOS-AppStream 46 k 2024-04-15T17:32:33.359 INFO:teuthology.orchestra.run.smithi118.stdout: re2 x86_64 1:20211101-3.el9 epel 192 k 2024-04-15T17:32:33.359 INFO:teuthology.orchestra.run.smithi118.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-04-15T17:32:33.359 INFO:teuthology.orchestra.run.smithi118.stdout:Installing weak dependencies: 2024-04-15T17:32:33.359 INFO:teuthology.orchestra.run.smithi118.stdout: qatlib-service x86_64 24.02.0-1.el9 CentOS-AppStream 35 k 2024-04-15T17:32:33.359 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:32:33.359 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction Summary 2024-04-15T17:32:33.359 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:32:33.359 INFO:teuthology.orchestra.run.smithi118.stdout:Install 30 Packages 2024-04-15T17:32:33.359 INFO:teuthology.orchestra.run.smithi118.stdout:Upgrade 2 Packages 2024-04-15T17:32:33.359 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:32:33.360 INFO:teuthology.orchestra.run.smithi118.stdout:Total download size: 60 M 2024-04-15T17:32:33.360 INFO:teuthology.orchestra.run.smithi118.stdout:Downloading Packages: 2024-04-15T17:32:34.917 INFO:teuthology.orchestra.run.smithi118.stdout:(1/32): ceph-common-19.0.0-3080.gc2d8c315.el9.x 14 MB/s | 21 MB 00:01 2024-04-15T17:32:34.959 INFO:teuthology.orchestra.run.smithi118.stdout:(2/32): ceph-selinux-19.0.0-3080.gc2d8c315.el9. 607 kB/s | 25 kB 00:00 2024-04-15T17:32:35.042 INFO:teuthology.orchestra.run.smithi118.stdout:(3/32): libcephfs2-19.0.0-3080.gc2d8c315.el9.x8 8.8 MB/s | 747 kB 00:00 2024-04-15T17:32:35.176 INFO:teuthology.orchestra.run.smithi118.stdout:(4/32): ceph-radosgw-19.0.0-3080.gc2d8c315.el9. 6.1 MB/s | 11 MB 00:01 2024-04-15T17:32:35.210 INFO:teuthology.orchestra.run.smithi118.stdout:(5/32): libradosstriper1-19.0.0-3080.gc2d8c315. 2.9 MB/s | 501 kB 00:00 2024-04-15T17:32:35.240 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: ceph-common-2:19.0.0-3080.gc2d8c315.el9.x86_64 29/34 2024-04-15T17:32:35.252 INFO:teuthology.orchestra.run.smithi118.stdout:(6/32): python3-ceph-argparse-19.0.0-3080.gc2d8 1.1 MB/s | 45 kB 00:00 2024-04-15T17:32:35.438 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : ceph-common-2:19.0.0-3080.gc2d8c315.el9.x86_64 29/34 2024-04-15T17:32:35.519 INFO:teuthology.orchestra.run.smithi118.stdout:(7/32): librgw2-19.0.0-3080.gc2d8c315.el9.x86_6 16 MB/s | 5.4 MB 00:00 2024-04-15T17:32:35.544 INFO:teuthology.orchestra.run.smithi118.stdout:(8/32): python3-ceph-common-19.0.0-3080.gc2d8c3 461 kB/s | 135 kB 00:00 2024-04-15T17:32:35.586 INFO:teuthology.orchestra.run.smithi118.stdout:(9/32): python3-cephfs-19.0.0-3080.gc2d8c315.el 2.4 MB/s | 162 kB 00:00 2024-04-15T17:32:35.620 INFO:teuthology.orchestra.run.smithi118.stdout:(10/32): python3-rados-19.0.0-3080.gc2d8c315.el 4.2 MB/s | 320 kB 00:00 2024-04-15T17:32:35.653 INFO:teuthology.orchestra.run.smithi118.stdout:(11/32): python3-rbd-19.0.0-3080.gc2d8c315.el9. 4.4 MB/s | 298 kB 00:00 2024-04-15T17:32:35.679 INFO:teuthology.orchestra.run.smithi118.stdout:(12/32): python3-rgw-19.0.0-3080.gc2d8c315.el9. 1.7 MB/s | 100 kB 00:00 2024-04-15T17:32:35.737 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: ceph-selinux-2:19.0.0-3080.gc2d8c315.el9.x86_64 31/34 2024-04-15T17:32:35.737 INFO:teuthology.orchestra.run.smithi055.stdout:skipping the directory /sys 2024-04-15T17:32:35.737 INFO:teuthology.orchestra.run.smithi055.stdout:skipping the directory /proc 2024-04-15T17:32:35.738 INFO:teuthology.orchestra.run.smithi055.stdout:skipping the directory /mnt 2024-04-15T17:32:35.738 INFO:teuthology.orchestra.run.smithi055.stdout:skipping the directory /var/tmp 2024-04-15T17:32:35.738 INFO:teuthology.orchestra.run.smithi055.stdout:skipping the directory /home 2024-04-15T17:32:35.738 INFO:teuthology.orchestra.run.smithi055.stdout:skipping the directory /root 2024-04-15T17:32:35.738 INFO:teuthology.orchestra.run.smithi055.stdout:skipping the directory /tmp 2024-04-15T17:32:35.738 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:32:35.804 INFO:teuthology.orchestra.run.smithi118.stdout:(13/32): boost-program-options-1.75.0-8.el9.x86 704 kB/s | 106 kB 00:00 2024-04-15T17:32:35.821 INFO:teuthology.orchestra.run.smithi118.stdout:(14/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 1.1 MB/s | 159 kB 00:00 2024-04-15T17:32:35.846 INFO:teuthology.orchestra.run.smithi118.stdout:(15/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 1.0 MB/s | 44 kB 00:00 2024-04-15T17:32:35.913 INFO:teuthology.orchestra.run.smithi118.stdout:(16/32): librdkafka-1.6.1-102.el9.x86_64.rpm 7.0 MB/s | 661 kB 00:00 2024-04-15T17:32:35.947 INFO:teuthology.orchestra.run.smithi118.stdout:(17/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 2.7 MB/s | 282 kB 00:00 2024-04-15T17:32:35.964 INFO:teuthology.orchestra.run.smithi118.stdout:(18/32): python3-prettytable-0.7.2-27.el9.noarc 825 kB/s | 41 kB 00:00 2024-04-15T17:32:35.985 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: ceph-common-2:19.0.0-3080.gc2d8c315.el9.x86_64 29/34 2024-04-15T17:32:35.989 INFO:teuthology.orchestra.run.smithi118.stdout:(19/32): qatlib-24.02.0-1.el9.x86_64.rpm 5.1 MB/s | 220 kB 00:00 2024-04-15T17:32:36.006 INFO:teuthology.orchestra.run.smithi118.stdout:(20/32): qatlib-service-24.02.0-1.el9.x86_64.rp 832 kB/s | 35 kB 00:00 2024-04-15T17:32:36.030 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : ceph-base-2:19.0.0-3080.gc2d8c315.el9.x86_64 30/34 2024-04-15T17:32:36.032 INFO:teuthology.orchestra.run.smithi118.stdout:(21/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 1.1 MB/s | 46 kB 00:00 2024-04-15T17:32:36.099 INFO:teuthology.orchestra.run.smithi118.stdout:(22/32): ceph-base-19.0.0-3080.gc2d8c315.el9.x8 2.0 MB/s | 5.4 MB 00:02 2024-04-15T17:32:36.147 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: ceph-base-2:19.0.0-3080.gc2d8c315.el9.x86_64 30/34 2024-04-15T17:32:36.147 INFO:teuthology.orchestra.run.smithi092.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-04-15T17:32:36.147 INFO:teuthology.orchestra.run.smithi092.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-04-15T17:32:36.147 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:32:36.183 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : ceph-selinux-2:19.0.0-3080.gc2d8c315.el9.x86_64 31/34 2024-04-15T17:32:36.282 INFO:teuthology.orchestra.run.smithi118.stdout:(23/32): libarrow-doc-9.0.0-10.el9.noarch.rpm 190 kB/s | 26 kB 00:00 2024-04-15T17:32:36.341 INFO:teuthology.orchestra.run.smithi118.stdout:(24/32): liboath-2.6.7-2.el9.x86_64.rpm 832 kB/s | 49 kB 00:00 2024-04-15T17:32:36.383 INFO:teuthology.orchestra.run.smithi118.stdout:(25/32): gperftools-libs-2.9.1-2.el9.x86_64.rpm 821 kB/s | 309 kB 00:00 2024-04-15T17:32:36.408 INFO:teuthology.orchestra.run.smithi118.stdout:(26/32): libunwind-1.6.2-1.el9.x86_64.rpm 1.0 MB/s | 67 kB 00:00 2024-04-15T17:32:36.575 INFO:teuthology.orchestra.run.smithi118.stdout:(27/32): re2-20211101-3.el9.x86_64.rpm 1.1 MB/s | 192 kB 00:00 2024-04-15T17:32:36.751 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : ceph-radosgw-2:19.0.0-3080.gc2d8c315.el9.x86_64 32/34 2024-04-15T17:32:36.776 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: ceph-radosgw-2:19.0.0-3080.gc2d8c315.el9.x86_64 32/34 2024-04-15T17:32:36.776 INFO:teuthology.orchestra.run.smithi055.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T17:32:36.776 INFO:teuthology.orchestra.run.smithi055.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-04-15T17:32:36.776 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-15T17:32:36.776 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-15T17:32:36.776 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:32:36.778 INFO:teuthology.orchestra.run.smithi055.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-15T17:32:36.863 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-15T17:32:36.863 INFO:teuthology.orchestra.run.smithi055.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T17:32:36.901 INFO:teuthology.orchestra.run.smithi118.stdout:(28/32): parquet-libs-9.0.0-10.el9.x86_64.rpm 1.6 MB/s | 838 kB 00:00 2024-04-15T17:32:37.493 INFO:teuthology.orchestra.run.smithi118.stdout:(29/32): thrift-0.15.0-2.el9.x86_64.rpm 1.7 MB/s | 1.6 MB 00:00 2024-04-15T17:32:37.642 INFO:teuthology.orchestra.run.smithi118.stdout:(30/32): librados2-19.0.0-3080.gc2d8c315.el9.x8 4.6 MB/s | 3.4 MB 00:00 2024-04-15T17:32:37.884 INFO:teuthology.orchestra.run.smithi118.stdout:(31/32): librbd1-19.0.0-3080.gc2d8c315.el9.x86_ 8.0 MB/s | 3.1 MB 00:00 2024-04-15T17:32:38.032 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T17:32:38.032 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : ceph-base-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/34 2024-04-15T17:32:38.032 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : ceph-common-2:19.0.0-3080.gc2d8c315.el9.x86_64 2/34 2024-04-15T17:32:38.033 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : ceph-radosgw-2:19.0.0-3080.gc2d8c315.el9.x86_64 3/34 2024-04-15T17:32:38.033 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : ceph-selinux-2:19.0.0-3080.gc2d8c315.el9.x86_64 4/34 2024-04-15T17:32:38.033 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : libcephfs2-2:19.0.0-3080.gc2d8c315.el9.x86_64 5/34 2024-04-15T17:32:38.033 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : libradosstriper1-2:19.0.0-3080.gc2d8c315.el9.x86_6 6/34 2024-04-15T17:32:38.033 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : librgw2-2:19.0.0-3080.gc2d8c315.el9.x86_64 7/34 2024-04-15T17:32:38.033 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-ceph-argparse-2:19.0.0-3080.gc2d8c315.el9. 8/34 2024-04-15T17:32:38.033 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-ceph-common-2:19.0.0-3080.gc2d8c315.el9.x8 9/34 2024-04-15T17:32:38.033 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-cephfs-2:19.0.0-3080.gc2d8c315.el9.x86_64 10/34 2024-04-15T17:32:38.033 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-rados-2:19.0.0-3080.gc2d8c315.el9.x86_64 11/34 2024-04-15T17:32:38.033 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-rbd-2:19.0.0-3080.gc2d8c315.el9.x86_64 12/34 2024-04-15T17:32:38.033 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-rgw-2:19.0.0-3080.gc2d8c315.el9.x86_64 13/34 2024-04-15T17:32:38.034 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-04-15T17:32:38.034 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-04-15T17:32:38.034 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-04-15T17:32:38.034 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-04-15T17:32:38.034 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-04-15T17:32:38.034 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-04-15T17:32:38.034 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-04-15T17:32:38.034 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-04-15T17:32:38.034 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-04-15T17:32:38.034 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 23/34 2024-04-15T17:32:38.034 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : libarrow-9.0.0-10.el9.x86_64 24/34 2024-04-15T17:32:38.034 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : libarrow-doc-9.0.0-10.el9.noarch 25/34 2024-04-15T17:32:38.034 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-04-15T17:32:38.034 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-04-15T17:32:38.035 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : parquet-libs-9.0.0-10.el9.x86_64 28/34 2024-04-15T17:32:38.035 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : re2-1:20211101-3.el9.x86_64 29/34 2024-04-15T17:32:38.036 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-04-15T17:32:38.036 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : librados2-2:19.0.0-3080.gc2d8c315.el9.x86_64 31/34 2024-04-15T17:32:38.036 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-04-15T17:32:38.036 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : librbd1-2:19.0.0-3080.gc2d8c315.el9.x86_64 33/34 2024-04-15T17:32:38.426 INFO:teuthology.orchestra.run.smithi118.stdout:(32/32): libarrow-9.0.0-10.el9.x86_64.rpm 1.8 MB/s | 4.4 MB 00:02 2024-04-15T17:32:38.434 INFO:teuthology.orchestra.run.smithi118.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:32:38.434 INFO:teuthology.orchestra.run.smithi118.stdout:Total 12 MB/s | 60 MB 00:05 2024-04-15T17:32:38.434 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction check 2024-04-15T17:32:38.471 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction check succeeded. 2024-04-15T17:32:38.471 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction test 2024-04-15T17:32:38.978 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction test succeeded. 2024-04-15T17:32:38.978 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction 2024-04-15T17:32:39.033 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T17:32:39.033 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:32:39.033 INFO:teuthology.orchestra.run.smithi055.stdout:Upgraded: 2024-04-15T17:32:39.033 INFO:teuthology.orchestra.run.smithi055.stdout: librados2-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:39.033 INFO:teuthology.orchestra.run.smithi055.stdout: librbd1-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:39.033 INFO:teuthology.orchestra.run.smithi055.stdout:Installed: 2024-04-15T17:32:39.033 INFO:teuthology.orchestra.run.smithi055.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-04-15T17:32:39.033 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-base-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:39.034 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-common-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:39.034 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-radosgw-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:39.034 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-selinux-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:39.034 INFO:teuthology.orchestra.run.smithi055.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-04-15T17:32:39.034 INFO:teuthology.orchestra.run.smithi055.stdout: libarrow-9.0.0-10.el9.x86_64 2024-04-15T17:32:39.034 INFO:teuthology.orchestra.run.smithi055.stdout: libarrow-doc-9.0.0-10.el9.noarch 2024-04-15T17:32:39.034 INFO:teuthology.orchestra.run.smithi055.stdout: libcephfs2-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:39.034 INFO:teuthology.orchestra.run.smithi055.stdout: liboath-2.6.7-2.el9.x86_64 2024-04-15T17:32:39.034 INFO:teuthology.orchestra.run.smithi055.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-04-15T17:32:39.034 INFO:teuthology.orchestra.run.smithi055.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-04-15T17:32:39.034 INFO:teuthology.orchestra.run.smithi055.stdout: libradosstriper1-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:39.034 INFO:teuthology.orchestra.run.smithi055.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-04-15T17:32:39.034 INFO:teuthology.orchestra.run.smithi055.stdout: librgw2-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:39.035 INFO:teuthology.orchestra.run.smithi055.stdout: libunwind-1.6.2-1.el9.x86_64 2024-04-15T17:32:39.035 INFO:teuthology.orchestra.run.smithi055.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-04-15T17:32:39.035 INFO:teuthology.orchestra.run.smithi055.stdout: parquet-libs-9.0.0-10.el9.x86_64 2024-04-15T17:32:39.035 INFO:teuthology.orchestra.run.smithi055.stdout: python3-ceph-argparse-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:39.035 INFO:teuthology.orchestra.run.smithi055.stdout: python3-ceph-common-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:39.035 INFO:teuthology.orchestra.run.smithi055.stdout: python3-cephfs-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:39.035 INFO:teuthology.orchestra.run.smithi055.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-04-15T17:32:39.035 INFO:teuthology.orchestra.run.smithi055.stdout: python3-rados-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:39.035 INFO:teuthology.orchestra.run.smithi055.stdout: python3-rbd-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:39.035 INFO:teuthology.orchestra.run.smithi055.stdout: python3-rgw-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:39.035 INFO:teuthology.orchestra.run.smithi055.stdout: qatlib-24.02.0-1.el9.x86_64 2024-04-15T17:32:39.035 INFO:teuthology.orchestra.run.smithi055.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-04-15T17:32:39.035 INFO:teuthology.orchestra.run.smithi055.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-04-15T17:32:39.036 INFO:teuthology.orchestra.run.smithi055.stdout: re2-1:20211101-3.el9.x86_64 2024-04-15T17:32:39.036 INFO:teuthology.orchestra.run.smithi055.stdout: thrift-0.15.0-2.el9.x86_64 2024-04-15T17:32:39.036 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:32:39.036 INFO:teuthology.orchestra.run.smithi055.stdout:Complete! 2024-04-15T17:32:39.352 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum -y install ceph-test 2024-04-15T17:32:39.930 INFO:teuthology.orchestra.run.smithi055.stdout:Last metadata expiration check: 0:00:30 ago on Mon 15 Apr 2024 05:32:09 PM UTC. 2024-04-15T17:32:40.091 INFO:teuthology.orchestra.run.smithi055.stdout:Dependencies resolved. 2024-04-15T17:32:40.092 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:32:40.092 INFO:teuthology.orchestra.run.smithi055.stdout: Package Arch Version Repository Size 2024-04-15T17:32:40.092 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:32:40.092 INFO:teuthology.orchestra.run.smithi055.stdout:Installing: 2024-04-15T17:32:40.092 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-test x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 49 M 2024-04-15T17:32:40.092 INFO:teuthology.orchestra.run.smithi055.stdout:Installing dependencies: 2024-04-15T17:32:40.092 INFO:teuthology.orchestra.run.smithi055.stdout: jq x86_64 1.6-16.el9 baseos 187 k 2024-04-15T17:32:40.093 INFO:teuthology.orchestra.run.smithi055.stdout: libcephsqlite x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 163 k 2024-04-15T17:32:40.093 INFO:teuthology.orchestra.run.smithi055.stdout: oniguruma x86_64 6.9.6-1.el9.5 CentOS-AppStream 217 k 2024-04-15T17:32:40.093 INFO:teuthology.orchestra.run.smithi055.stdout: socat x86_64 1.7.4.1-5.el9 CentOS-AppStream 300 k 2024-04-15T17:32:40.093 INFO:teuthology.orchestra.run.smithi055.stdout: xmlstarlet x86_64 1.6.1-20.el9 CentOS-AppStream 63 k 2024-04-15T17:32:40.093 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:32:40.093 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction Summary 2024-04-15T17:32:40.093 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:32:40.093 INFO:teuthology.orchestra.run.smithi055.stdout:Install 6 Packages 2024-04-15T17:32:40.093 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:32:40.094 INFO:teuthology.orchestra.run.smithi055.stdout:Total download size: 50 M 2024-04-15T17:32:40.094 INFO:teuthology.orchestra.run.smithi055.stdout:Installed size: 212 M 2024-04-15T17:32:40.094 INFO:teuthology.orchestra.run.smithi055.stdout:Downloading Packages: 2024-04-15T17:32:40.477 INFO:teuthology.orchestra.run.smithi118.stdout: Preparing : 1/1 2024-04-15T17:32:40.567 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-04-15T17:32:40.598 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-04-15T17:32:40.623 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-04-15T17:32:40.646 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-15T17:32:40.664 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-15T17:32:40.681 INFO:teuthology.orchestra.run.smithi055.stdout:(1/6): oniguruma-6.9.6-1.el9.5.x86_64.rpm 931 kB/s | 217 kB 00:00 2024-04-15T17:32:40.747 INFO:teuthology.orchestra.run.smithi055.stdout:(2/6): socat-1.7.4.1-5.el9.x86_64.rpm 4.4 MB/s | 300 kB 00:00 2024-04-15T17:32:40.781 INFO:teuthology.orchestra.run.smithi055.stdout:(3/6): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.8 MB/s | 63 kB 00:00 2024-04-15T17:32:40.864 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-15T17:32:40.922 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-15T17:32:40.939 INFO:teuthology.orchestra.run.smithi055.stdout:(4/6): libcephsqlite-19.0.0-3080.gc2d8c315.el9. 332 kB/s | 163 kB 00:00 2024-04-15T17:32:40.973 INFO:teuthology.orchestra.run.smithi055.stdout:(5/6): jq-1.6-16.el9.x86_64.rpm 976 kB/s | 187 kB 00:00 2024-04-15T17:32:41.356 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-04-15T17:32:41.442 INFO:teuthology.orchestra.run.smithi118.stdout: Upgrading : librados2-2:19.0.0-3080.gc2d8c315.el9.x86_64 7/34 2024-04-15T17:32:41.516 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: librados2-2:19.0.0-3080.gc2d8c315.el9.x86_64 7/34 2024-04-15T17:32:41.596 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-rados-2:19.0.0-3080.gc2d8c315.el9.x86_64 8/34 2024-04-15T17:32:41.627 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : libcephfs2-2:19.0.0-3080.gc2d8c315.el9.x86_64 9/34 2024-04-15T17:32:41.689 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: libcephfs2-2:19.0.0-3080.gc2d8c315.el9.x86_64 9/34 2024-04-15T17:32:41.718 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-04-15T17:32:41.762 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-ceph-argparse-2:19.0.0-3080.gc2d8c315.el9. 11/34 2024-04-15T17:32:41.830 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-cephfs-2:19.0.0-3080.gc2d8c315.el9.x86_64 12/34 2024-04-15T17:32:41.854 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : libradosstriper1-2:19.0.0-3080.gc2d8c315.el9.x86_6 13/34 2024-04-15T17:32:41.918 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: libradosstriper1-2:19.0.0-3080.gc2d8c315.el9.x86_6 13/34 2024-04-15T17:32:41.953 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-04-15T17:32:42.060 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : re2-1:20211101-3.el9.x86_64 15/34 2024-04-15T17:32:42.088 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : libarrow-9.0.0-10.el9.x86_64 16/34 2024-04-15T17:32:42.128 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-04-15T17:32:42.161 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 18/34 2024-04-15T17:32:42.189 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : libarrow-doc-9.0.0-10.el9.noarch 19/34 2024-04-15T17:32:42.214 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-04-15T17:32:42.529 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-04-15T17:32:42.561 INFO:teuthology.orchestra.run.smithi118.stdout: Upgrading : librbd1-2:19.0.0-3080.gc2d8c315.el9.x86_64 22/34 2024-04-15T17:32:42.658 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: librbd1-2:19.0.0-3080.gc2d8c315.el9.x86_64 22/34 2024-04-15T17:32:42.690 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-rbd-2:19.0.0-3080.gc2d8c315.el9.x86_64 23/34 2024-04-15T17:32:42.813 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-04-15T17:32:42.823 INFO:teuthology.orchestra.run.smithi055.stdout:(6/6): ceph-test-19.0.0-3080.gc2d8c315.el9.x86_ 21 MB/s | 49 MB 00:02 2024-04-15T17:32:42.827 INFO:teuthology.orchestra.run.smithi055.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:32:42.827 INFO:teuthology.orchestra.run.smithi055.stdout:Total 18 MB/s | 50 MB 00:02 2024-04-15T17:32:42.841 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction check 2024-04-15T17:32:42.865 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction check succeeded. 2024-04-15T17:32:42.865 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction test 2024-04-15T17:32:43.273 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction test succeeded. 2024-04-15T17:32:43.273 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction 2024-04-15T17:32:43.289 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : parquet-libs-9.0.0-10.el9.x86_64 25/34 2024-04-15T17:32:43.347 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : librgw2-2:19.0.0-3080.gc2d8c315.el9.x86_64 26/34 2024-04-15T17:32:43.424 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: librgw2-2:19.0.0-3080.gc2d8c315.el9.x86_64 26/34 2024-04-15T17:32:43.486 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-rgw-2:19.0.0-3080.gc2d8c315.el9.x86_64 27/34 2024-04-15T17:32:43.516 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-ceph-common-2:19.0.0-3080.gc2d8c315.el9.x8 28/34 2024-04-15T17:32:43.876 INFO:teuthology.orchestra.run.smithi055.stdout: Preparing : 1/1 2024-04-15T17:32:43.975 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/6 2024-04-15T17:32:44.008 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : socat-1.7.4.1-5.el9.x86_64 2/6 2024-04-15T17:32:44.047 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-15T17:32:44.090 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : jq-1.6-16.el9.x86_64 4/6 2024-04-15T17:32:44.118 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : libcephsqlite-2:19.0.0-3080.gc2d8c315.el9.x86_64 5/6 2024-04-15T17:32:45.740 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: ceph-common-2:19.0.0-3080.gc2d8c315.el9.x86_64 29/34 2024-04-15T17:32:45.771 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : ceph-common-2:19.0.0-3080.gc2d8c315.el9.x86_64 29/34 2024-04-15T17:32:45.926 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: ceph-selinux-2:19.0.0-3080.gc2d8c315.el9.x86_64 31/34 2024-04-15T17:32:45.926 INFO:teuthology.orchestra.run.smithi092.stdout:skipping the directory /sys 2024-04-15T17:32:45.926 INFO:teuthology.orchestra.run.smithi092.stdout:skipping the directory /proc 2024-04-15T17:32:45.926 INFO:teuthology.orchestra.run.smithi092.stdout:skipping the directory /mnt 2024-04-15T17:32:45.926 INFO:teuthology.orchestra.run.smithi092.stdout:skipping the directory /var/tmp 2024-04-15T17:32:45.926 INFO:teuthology.orchestra.run.smithi092.stdout:skipping the directory /home 2024-04-15T17:32:45.926 INFO:teuthology.orchestra.run.smithi092.stdout:skipping the directory /root 2024-04-15T17:32:45.926 INFO:teuthology.orchestra.run.smithi092.stdout:skipping the directory /tmp 2024-04-15T17:32:45.926 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:32:46.333 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: ceph-common-2:19.0.0-3080.gc2d8c315.el9.x86_64 29/34 2024-04-15T17:32:46.366 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : ceph-base-2:19.0.0-3080.gc2d8c315.el9.x86_64 30/34 2024-04-15T17:32:46.449 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: ceph-base-2:19.0.0-3080.gc2d8c315.el9.x86_64 30/34 2024-04-15T17:32:46.449 INFO:teuthology.orchestra.run.smithi118.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-04-15T17:32:46.449 INFO:teuthology.orchestra.run.smithi118.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-04-15T17:32:46.449 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:32:46.484 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : ceph-selinux-2:19.0.0-3080.gc2d8c315.el9.x86_64 31/34 2024-04-15T17:32:46.930 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : ceph-radosgw-2:19.0.0-3080.gc2d8c315.el9.x86_64 32/34 2024-04-15T17:32:46.955 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: ceph-radosgw-2:19.0.0-3080.gc2d8c315.el9.x86_64 32/34 2024-04-15T17:32:46.955 INFO:teuthology.orchestra.run.smithi092.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T17:32:46.955 INFO:teuthology.orchestra.run.smithi092.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-04-15T17:32:46.955 INFO:teuthology.orchestra.run.smithi092.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-15T17:32:46.956 INFO:teuthology.orchestra.run.smithi092.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-15T17:32:46.956 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:32:46.957 INFO:teuthology.orchestra.run.smithi092.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-15T17:32:47.049 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-15T17:32:47.049 INFO:teuthology.orchestra.run.smithi092.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T17:32:48.170 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T17:32:48.171 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : ceph-base-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/34 2024-04-15T17:32:48.171 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : ceph-common-2:19.0.0-3080.gc2d8c315.el9.x86_64 2/34 2024-04-15T17:32:48.171 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : ceph-radosgw-2:19.0.0-3080.gc2d8c315.el9.x86_64 3/34 2024-04-15T17:32:48.171 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : ceph-selinux-2:19.0.0-3080.gc2d8c315.el9.x86_64 4/34 2024-04-15T17:32:48.171 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : libcephfs2-2:19.0.0-3080.gc2d8c315.el9.x86_64 5/34 2024-04-15T17:32:48.171 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : libradosstriper1-2:19.0.0-3080.gc2d8c315.el9.x86_6 6/34 2024-04-15T17:32:48.171 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : librgw2-2:19.0.0-3080.gc2d8c315.el9.x86_64 7/34 2024-04-15T17:32:48.171 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-ceph-argparse-2:19.0.0-3080.gc2d8c315.el9. 8/34 2024-04-15T17:32:48.171 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-ceph-common-2:19.0.0-3080.gc2d8c315.el9.x8 9/34 2024-04-15T17:32:48.172 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-cephfs-2:19.0.0-3080.gc2d8c315.el9.x86_64 10/34 2024-04-15T17:32:48.172 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-rados-2:19.0.0-3080.gc2d8c315.el9.x86_64 11/34 2024-04-15T17:32:48.172 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-rbd-2:19.0.0-3080.gc2d8c315.el9.x86_64 12/34 2024-04-15T17:32:48.172 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-rgw-2:19.0.0-3080.gc2d8c315.el9.x86_64 13/34 2024-04-15T17:32:48.172 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-04-15T17:32:48.172 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-04-15T17:32:48.172 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-04-15T17:32:48.172 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-04-15T17:32:48.172 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-04-15T17:32:48.172 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-04-15T17:32:48.172 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-04-15T17:32:48.172 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-04-15T17:32:48.172 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-04-15T17:32:48.173 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 23/34 2024-04-15T17:32:48.173 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : libarrow-9.0.0-10.el9.x86_64 24/34 2024-04-15T17:32:48.173 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : libarrow-doc-9.0.0-10.el9.noarch 25/34 2024-04-15T17:32:48.173 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-04-15T17:32:48.173 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-04-15T17:32:48.173 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : parquet-libs-9.0.0-10.el9.x86_64 28/34 2024-04-15T17:32:48.174 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : re2-1:20211101-3.el9.x86_64 29/34 2024-04-15T17:32:48.174 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-04-15T17:32:48.174 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : librados2-2:19.0.0-3080.gc2d8c315.el9.x86_64 31/34 2024-04-15T17:32:48.174 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-04-15T17:32:48.174 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : librbd1-2:19.0.0-3080.gc2d8c315.el9.x86_64 33/34 2024-04-15T17:32:49.021 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: libcephsqlite-2:19.0.0-3080.gc2d8c315.el9.x86_64 5/6 2024-04-15T17:32:49.094 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : ceph-test-2:19.0.0-3080.gc2d8c315.el9.x86_64 6/6 2024-04-15T17:32:49.349 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T17:32:49.349 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:32:49.349 INFO:teuthology.orchestra.run.smithi092.stdout:Upgraded: 2024-04-15T17:32:49.349 INFO:teuthology.orchestra.run.smithi092.stdout: librados2-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:49.349 INFO:teuthology.orchestra.run.smithi092.stdout: librbd1-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:49.349 INFO:teuthology.orchestra.run.smithi092.stdout:Installed: 2024-04-15T17:32:49.349 INFO:teuthology.orchestra.run.smithi092.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-04-15T17:32:49.349 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-base-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:49.349 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-common-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:49.349 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-radosgw-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:49.350 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-selinux-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:49.350 INFO:teuthology.orchestra.run.smithi092.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-04-15T17:32:49.350 INFO:teuthology.orchestra.run.smithi092.stdout: libarrow-9.0.0-10.el9.x86_64 2024-04-15T17:32:49.350 INFO:teuthology.orchestra.run.smithi092.stdout: libarrow-doc-9.0.0-10.el9.noarch 2024-04-15T17:32:49.350 INFO:teuthology.orchestra.run.smithi092.stdout: libcephfs2-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:49.350 INFO:teuthology.orchestra.run.smithi092.stdout: liboath-2.6.7-2.el9.x86_64 2024-04-15T17:32:49.350 INFO:teuthology.orchestra.run.smithi092.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-04-15T17:32:49.350 INFO:teuthology.orchestra.run.smithi092.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-04-15T17:32:49.350 INFO:teuthology.orchestra.run.smithi092.stdout: libradosstriper1-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:49.350 INFO:teuthology.orchestra.run.smithi092.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-04-15T17:32:49.350 INFO:teuthology.orchestra.run.smithi092.stdout: librgw2-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:49.350 INFO:teuthology.orchestra.run.smithi092.stdout: libunwind-1.6.2-1.el9.x86_64 2024-04-15T17:32:49.351 INFO:teuthology.orchestra.run.smithi092.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-04-15T17:32:49.351 INFO:teuthology.orchestra.run.smithi092.stdout: parquet-libs-9.0.0-10.el9.x86_64 2024-04-15T17:32:49.351 INFO:teuthology.orchestra.run.smithi092.stdout: python3-ceph-argparse-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:49.351 INFO:teuthology.orchestra.run.smithi092.stdout: python3-ceph-common-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:49.351 INFO:teuthology.orchestra.run.smithi092.stdout: python3-cephfs-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:49.351 INFO:teuthology.orchestra.run.smithi092.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-04-15T17:32:49.351 INFO:teuthology.orchestra.run.smithi092.stdout: python3-rados-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:49.351 INFO:teuthology.orchestra.run.smithi092.stdout: python3-rbd-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:49.351 INFO:teuthology.orchestra.run.smithi092.stdout: python3-rgw-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:49.351 INFO:teuthology.orchestra.run.smithi092.stdout: qatlib-24.02.0-1.el9.x86_64 2024-04-15T17:32:49.351 INFO:teuthology.orchestra.run.smithi092.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-04-15T17:32:49.351 INFO:teuthology.orchestra.run.smithi092.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-04-15T17:32:49.351 INFO:teuthology.orchestra.run.smithi092.stdout: re2-1:20211101-3.el9.x86_64 2024-04-15T17:32:49.351 INFO:teuthology.orchestra.run.smithi092.stdout: thrift-0.15.0-2.el9.x86_64 2024-04-15T17:32:49.352 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:32:49.352 INFO:teuthology.orchestra.run.smithi092.stdout:Complete! 2024-04-15T17:32:49.627 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum -y install ceph-test 2024-04-15T17:32:50.200 INFO:teuthology.orchestra.run.smithi092.stdout:Last metadata expiration check: 0:00:29 ago on Mon 15 Apr 2024 05:32:21 PM UTC. 2024-04-15T17:32:50.353 INFO:teuthology.orchestra.run.smithi092.stdout:Dependencies resolved. 2024-04-15T17:32:50.353 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:32:50.353 INFO:teuthology.orchestra.run.smithi092.stdout: Package Arch Version Repository Size 2024-04-15T17:32:50.353 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:32:50.353 INFO:teuthology.orchestra.run.smithi092.stdout:Installing: 2024-04-15T17:32:50.354 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-test x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 49 M 2024-04-15T17:32:50.354 INFO:teuthology.orchestra.run.smithi092.stdout:Installing dependencies: 2024-04-15T17:32:50.354 INFO:teuthology.orchestra.run.smithi092.stdout: jq x86_64 1.6-16.el9 baseos 187 k 2024-04-15T17:32:50.354 INFO:teuthology.orchestra.run.smithi092.stdout: libcephsqlite x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 163 k 2024-04-15T17:32:50.354 INFO:teuthology.orchestra.run.smithi092.stdout: oniguruma x86_64 6.9.6-1.el9.5 CentOS-AppStream 217 k 2024-04-15T17:32:50.354 INFO:teuthology.orchestra.run.smithi092.stdout: socat x86_64 1.7.4.1-5.el9 CentOS-AppStream 300 k 2024-04-15T17:32:50.354 INFO:teuthology.orchestra.run.smithi092.stdout: xmlstarlet x86_64 1.6.1-20.el9 CentOS-AppStream 63 k 2024-04-15T17:32:50.354 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:32:50.354 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction Summary 2024-04-15T17:32:50.354 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:32:50.354 INFO:teuthology.orchestra.run.smithi092.stdout:Install 6 Packages 2024-04-15T17:32:50.354 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:32:50.355 INFO:teuthology.orchestra.run.smithi092.stdout:Total download size: 50 M 2024-04-15T17:32:50.355 INFO:teuthology.orchestra.run.smithi092.stdout:Installed size: 212 M 2024-04-15T17:32:50.355 INFO:teuthology.orchestra.run.smithi092.stdout:Downloading Packages: 2024-04-15T17:32:50.611 INFO:teuthology.orchestra.run.smithi092.stdout:(1/6): oniguruma-6.9.6-1.el9.5.x86_64.rpm 1.3 MB/s | 217 kB 00:00 2024-04-15T17:32:50.670 INFO:teuthology.orchestra.run.smithi092.stdout:(2/6): socat-1.7.4.1-5.el9.x86_64.rpm 5.0 MB/s | 300 kB 00:00 2024-04-15T17:32:50.704 INFO:teuthology.orchestra.run.smithi092.stdout:(3/6): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.8 MB/s | 63 kB 00:00 2024-04-15T17:32:50.771 INFO:teuthology.orchestra.run.smithi092.stdout:(4/6): libcephsqlite-19.0.0-3080.gc2d8c315.el9. 500 kB/s | 163 kB 00:00 2024-04-15T17:32:50.813 INFO:teuthology.orchestra.run.smithi092.stdout:(5/6): jq-1.6-16.el9.x86_64.rpm 1.7 MB/s | 187 kB 00:00 2024-04-15T17:32:51.531 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: ceph-test-2:19.0.0-3080.gc2d8c315.el9.x86_64 6/6 2024-04-15T17:32:51.531 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : ceph-test-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/6 2024-04-15T17:32:51.531 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : libcephsqlite-2:19.0.0-3080.gc2d8c315.el9.x86_64 2/6 2024-04-15T17:32:51.531 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-15T17:32:51.531 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : socat-1.7.4.1-5.el9.x86_64 4/6 2024-04-15T17:32:51.531 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 5/6 2024-04-15T17:32:51.854 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : jq-1.6-16.el9.x86_64 6/6 2024-04-15T17:32:51.855 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:32:51.855 INFO:teuthology.orchestra.run.smithi055.stdout:Installed: 2024-04-15T17:32:51.855 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-test-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:51.855 INFO:teuthology.orchestra.run.smithi055.stdout: jq-1.6-16.el9.x86_64 2024-04-15T17:32:51.855 INFO:teuthology.orchestra.run.smithi055.stdout: libcephsqlite-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:32:51.855 INFO:teuthology.orchestra.run.smithi055.stdout: oniguruma-6.9.6-1.el9.5.x86_64 2024-04-15T17:32:51.855 INFO:teuthology.orchestra.run.smithi055.stdout: socat-1.7.4.1-5.el9.x86_64 2024-04-15T17:32:51.855 INFO:teuthology.orchestra.run.smithi055.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-04-15T17:32:51.855 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:32:51.855 INFO:teuthology.orchestra.run.smithi055.stdout:Complete! 2024-04-15T17:32:52.278 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum -y install ceph 2024-04-15T17:32:52.871 INFO:teuthology.orchestra.run.smithi055.stdout:Last metadata expiration check: 0:00:43 ago on Mon 15 Apr 2024 05:32:09 PM UTC. 2024-04-15T17:32:52.872 INFO:teuthology.orchestra.run.smithi092.stdout:(6/6): ceph-test-19.0.0-3080.gc2d8c315.el9.x86_ 20 MB/s | 49 MB 00:02 2024-04-15T17:32:52.874 INFO:teuthology.orchestra.run.smithi092.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:32:52.874 INFO:teuthology.orchestra.run.smithi092.stdout:Total 20 MB/s | 50 MB 00:02 2024-04-15T17:32:52.889 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction check 2024-04-15T17:32:52.910 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction check succeeded. 2024-04-15T17:32:52.910 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction test 2024-04-15T17:32:53.036 INFO:teuthology.orchestra.run.smithi055.stdout:Dependencies resolved. 2024-04-15T17:32:53.038 INFO:teuthology.orchestra.run.smithi055.stdout:========================================================================================= 2024-04-15T17:32:53.038 INFO:teuthology.orchestra.run.smithi055.stdout: Package Arch Version Repository Size 2024-04-15T17:32:53.038 INFO:teuthology.orchestra.run.smithi055.stdout:========================================================================================= 2024-04-15T17:32:53.038 INFO:teuthology.orchestra.run.smithi055.stdout:Installing: 2024-04-15T17:32:53.038 INFO:teuthology.orchestra.run.smithi055.stdout: ceph x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 6.6 k 2024-04-15T17:32:53.038 INFO:teuthology.orchestra.run.smithi055.stdout:Installing dependencies: 2024-04-15T17:32:53.038 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-mds x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 2.4 M 2024-04-15T17:32:53.038 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-mgr x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 1.5 M 2024-04-15T17:32:53.039 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-mgr-modules-core noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 249 k 2024-04-15T17:32:53.039 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-mon x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 4.7 M 2024-04-15T17:32:53.039 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-osd x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 17 M 2024-04-15T17:32:53.039 INFO:teuthology.orchestra.run.smithi055.stdout: lua x86_64 5.4.4-4.el9 CentOS-AppStream 187 k 2024-04-15T17:32:53.039 INFO:teuthology.orchestra.run.smithi055.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-04-15T17:32:53.039 INFO:teuthology.orchestra.run.smithi055.stdout: luarocks noarch 3.9.2-1.el9 epel 151 k 2024-04-15T17:32:53.039 INFO:teuthology.orchestra.run.smithi055.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-04-15T17:32:53.039 INFO:teuthology.orchestra.run.smithi055.stdout: python3-cffi x86_64 1.14.5-5.el9 CentOS-BaseOS 241 k 2024-04-15T17:32:53.039 INFO:teuthology.orchestra.run.smithi055.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-04-15T17:32:53.039 INFO:teuthology.orchestra.run.smithi055.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-04-15T17:32:53.039 INFO:teuthology.orchestra.run.smithi055.stdout: python3-cryptography x86_64 36.0.1-4.el9 CentOS-BaseOS 1.1 M 2024-04-15T17:32:53.039 INFO:teuthology.orchestra.run.smithi055.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-04-15T17:32:53.039 INFO:teuthology.orchestra.run.smithi055.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-04-15T17:32:53.039 INFO:teuthology.orchestra.run.smithi055.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2024-04-15T17:32:53.040 INFO:teuthology.orchestra.run.smithi055.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-04-15T17:32:53.040 INFO:teuthology.orchestra.run.smithi055.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-04-15T17:32:53.040 INFO:teuthology.orchestra.run.smithi055.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-04-15T17:32:53.040 INFO:teuthology.orchestra.run.smithi055.stdout: python3-mako noarch 1.1.4-6.el9 CentOS-AppStream 144 k 2024-04-15T17:32:53.040 INFO:teuthology.orchestra.run.smithi055.stdout: python3-markupsafe x86_64 1.1.1-12.el9 CentOS-AppStream 32 k 2024-04-15T17:32:53.040 INFO:teuthology.orchestra.run.smithi055.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-04-15T17:32:53.040 INFO:teuthology.orchestra.run.smithi055.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-04-15T17:32:53.040 INFO:teuthology.orchestra.run.smithi055.stdout: python3-ply noarch 3.11-14.el9 CentOS-BaseOS 103 k 2024-04-15T17:32:53.040 INFO:teuthology.orchestra.run.smithi055.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-04-15T17:32:53.040 INFO:teuthology.orchestra.run.smithi055.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-04-15T17:32:53.040 INFO:teuthology.orchestra.run.smithi055.stdout: python3-pycparser noarch 2.20-6.el9 CentOS-BaseOS 124 k 2024-04-15T17:32:53.040 INFO:teuthology.orchestra.run.smithi055.stdout: python3-pytz noarch 2021.1-5.el9 CentOS-AppStream 47 k 2024-04-15T17:32:53.040 INFO:teuthology.orchestra.run.smithi055.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-04-15T17:32:53.041 INFO:teuthology.orchestra.run.smithi055.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-04-15T17:32:53.041 INFO:teuthology.orchestra.run.smithi055.stdout: python3-toml noarch 0.10.2-6.el9 CentOS-AppStream 39 k 2024-04-15T17:32:53.041 INFO:teuthology.orchestra.run.smithi055.stdout: python3-urllib3 noarch 1.26.5-5.el9 CentOS-BaseOS 187 k 2024-04-15T17:32:53.041 INFO:teuthology.orchestra.run.smithi055.stdout: python3-webob noarch 1.8.7-6.el9 epel 230 k 2024-04-15T17:32:53.041 INFO:teuthology.orchestra.run.smithi055.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-04-15T17:32:53.041 INFO:teuthology.orchestra.run.smithi055.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-04-15T17:32:53.041 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:32:53.041 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction Summary 2024-04-15T17:32:53.041 INFO:teuthology.orchestra.run.smithi055.stdout:========================================================================================= 2024-04-15T17:32:53.041 INFO:teuthology.orchestra.run.smithi055.stdout:Install 36 Packages 2024-04-15T17:32:53.041 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:32:53.042 INFO:teuthology.orchestra.run.smithi055.stdout:Total download size: 30 M 2024-04-15T17:32:53.042 INFO:teuthology.orchestra.run.smithi055.stdout:Installed size: 107 M 2024-04-15T17:32:53.042 INFO:teuthology.orchestra.run.smithi055.stdout:Downloading Packages: 2024-04-15T17:32:53.303 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction test succeeded. 2024-04-15T17:32:53.304 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction 2024-04-15T17:32:53.901 INFO:teuthology.orchestra.run.smithi055.stdout:(1/36): ceph-19.0.0-3080.gc2d8c315.el9.x86_64.r 39 kB/s | 6.6 kB 00:00 2024-04-15T17:32:53.913 INFO:teuthology.orchestra.run.smithi092.stdout: Preparing : 1/1 2024-04-15T17:32:53.996 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/6 2024-04-15T17:32:54.039 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : socat-1.7.4.1-5.el9.x86_64 2/6 2024-04-15T17:32:54.075 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-15T17:32:54.113 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : jq-1.6-16.el9.x86_64 4/6 2024-04-15T17:32:54.141 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : libcephsqlite-2:19.0.0-3080.gc2d8c315.el9.x86_64 5/6 2024-04-15T17:32:54.168 INFO:teuthology.orchestra.run.smithi055.stdout:(2/36): ceph-mds-19.0.0-3080.gc2d8c315.el9.x86_ 5.4 MB/s | 2.4 MB 00:00 2024-04-15T17:32:54.602 INFO:teuthology.orchestra.run.smithi055.stdout:(3/36): ceph-mon-19.0.0-3080.gc2d8c315.el9.x86_ 6.7 MB/s | 4.7 MB 00:00 2024-04-15T17:32:54.669 INFO:teuthology.orchestra.run.smithi055.stdout:(4/36): ceph-mgr-modules-core-19.0.0-3080.gc2d8 3.7 MB/s | 249 kB 00:00 2024-04-15T17:32:54.786 INFO:teuthology.orchestra.run.smithi055.stdout:(5/36): lua-5.4.4-4.el9.x86_64.rpm 1.6 MB/s | 187 kB 00:00 2024-04-15T17:32:54.828 INFO:teuthology.orchestra.run.smithi055.stdout:(6/36): python3-mako-1.1.4-6.el9.noarch.rpm 3.4 MB/s | 144 kB 00:00 2024-04-15T17:32:54.861 INFO:teuthology.orchestra.run.smithi055.stdout:(7/36): ceph-mgr-19.0.0-3080.gc2d8c315.el9.x86_ 1.3 MB/s | 1.5 MB 00:01 2024-04-15T17:32:54.887 INFO:teuthology.orchestra.run.smithi055.stdout:(8/36): python3-markupsafe-1.1.1-12.el9.x86_64. 538 kB/s | 32 kB 00:00 2024-04-15T17:32:54.913 INFO:teuthology.orchestra.run.smithi055.stdout:(9/36): python3-pytz-2021.1-5.el9.noarch.rpm 945 kB/s | 47 kB 00:00 2024-04-15T17:32:54.937 INFO:teuthology.orchestra.run.smithi055.stdout:(10/36): python3-toml-0.10.2-6.el9.noarch.rpm 770 kB/s | 39 kB 00:00 2024-04-15T17:32:54.971 INFO:teuthology.orchestra.run.smithi055.stdout:(11/36): python3-cffi-1.14.5-5.el9.x86_64.rpm 4.0 MB/s | 241 kB 00:00 2024-04-15T17:32:55.146 INFO:teuthology.orchestra.run.smithi055.stdout:(12/36): ceph-osd-19.0.0-3080.gc2d8c315.el9.x86 17 MB/s | 17 MB 00:00 2024-04-15T17:32:55.188 INFO:teuthology.orchestra.run.smithi055.stdout:(13/36): python3-cryptography-36.0.1-4.el9.x86_ 4.6 MB/s | 1.1 MB 00:00 2024-04-15T17:32:55.214 INFO:teuthology.orchestra.run.smithi055.stdout:(14/36): python3-ply-3.11-14.el9.noarch.rpm 426 kB/s | 103 kB 00:00 2024-04-15T17:32:55.239 INFO:teuthology.orchestra.run.smithi055.stdout:(15/36): python3-pycparser-2.20-6.el9.noarch.rp 1.3 MB/s | 124 kB 00:00 2024-04-15T17:32:55.264 INFO:teuthology.orchestra.run.smithi055.stdout:(16/36): python3-urllib3-1.26.5-5.el9.noarch.rp 3.7 MB/s | 187 kB 00:00 2024-04-15T17:32:55.339 INFO:teuthology.orchestra.run.smithi055.stdout:(17/36): lua-devel-5.4.4-4.el9.x86_64.rpm 224 kB/s | 22 kB 00:00 2024-04-15T17:32:55.456 INFO:teuthology.orchestra.run.smithi055.stdout:(18/36): python3-requests-2.25.1-8.el9.noarch.r 516 kB/s | 125 kB 00:00 2024-04-15T17:32:55.482 INFO:teuthology.orchestra.run.smithi055.stdout:(19/36): luarocks-3.9.2-1.el9.noarch.rpm 696 kB/s | 151 kB 00:00 2024-04-15T17:32:55.507 INFO:teuthology.orchestra.run.smithi055.stdout:(20/36): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 260 kB/s | 43 kB 00:00 2024-04-15T17:32:55.565 INFO:teuthology.orchestra.run.smithi055.stdout:(21/36): python3-jaraco-8.2.1-3.el9.noarch.rpm 183 kB/s | 11 kB 00:00 2024-04-15T17:32:55.620 INFO:teuthology.orchestra.run.smithi055.stdout:(22/36): python3-cherrypy-18.6.1-2.el9.noarch.r 2.5 MB/s | 358 kB 00:00 2024-04-15T17:32:55.641 INFO:teuthology.orchestra.run.smithi055.stdout:(23/36): python3-jaraco-classes-3.2.1-5.el9.noa 235 kB/s | 18 kB 00:00 2024-04-15T17:32:55.674 INFO:teuthology.orchestra.run.smithi055.stdout:(24/36): python3-jaraco-collections-3.0.0-8.el9 429 kB/s | 23 kB 00:00 2024-04-15T17:32:55.700 INFO:teuthology.orchestra.run.smithi055.stdout:(25/36): python3-jaraco-functools-3.5.0-2.el9.n 332 kB/s | 19 kB 00:00 2024-04-15T17:32:55.725 INFO:teuthology.orchestra.run.smithi055.stdout:(26/36): python3-cheroot-8.6.0-4.el9.noarch.rpm 640 kB/s | 172 kB 00:00 2024-04-15T17:32:55.750 INFO:teuthology.orchestra.run.smithi055.stdout:(27/36): python3-jaraco-text-3.2.0-6.el9.noarch 260 kB/s | 20 kB 00:00 2024-04-15T17:32:55.776 INFO:teuthology.orchestra.run.smithi055.stdout:(28/36): python3-logutils-0.3.5-21.el9.noarch.r 613 kB/s | 46 kB 00:00 2024-04-15T17:32:55.801 INFO:teuthology.orchestra.run.smithi055.stdout:(29/36): python3-more-itertools-8.12.0-2.el9.no 1.0 MB/s | 79 kB 00:00 2024-04-15T17:32:55.826 INFO:teuthology.orchestra.run.smithi055.stdout:(30/36): python3-pecan-1.4.2-3.el9.noarch.rpm 3.5 MB/s | 272 kB 00:00 2024-04-15T17:32:55.851 INFO:teuthology.orchestra.run.smithi055.stdout:(31/36): python3-portend-3.1.0-2.el9.noarch.rpm 217 kB/s | 16 kB 00:00 2024-04-15T17:32:55.877 INFO:teuthology.orchestra.run.smithi055.stdout:(32/36): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.2 MB/s | 90 kB 00:00 2024-04-15T17:32:55.902 INFO:teuthology.orchestra.run.smithi055.stdout:(33/36): python3-tempora-5.0.0-2.el9.noarch.rpm 474 kB/s | 36 kB 00:00 2024-04-15T17:32:55.944 INFO:teuthology.orchestra.run.smithi055.stdout:(34/36): python3-zc-lockfile-2.0-10.el9.noarch. 480 kB/s | 20 kB 00:00 2024-04-15T17:32:55.977 INFO:teuthology.orchestra.run.smithi055.stdout:(35/36): python3-webob-1.8.7-6.el9.noarch.rpm 1.8 MB/s | 230 kB 00:00 2024-04-15T17:32:56.002 INFO:teuthology.orchestra.run.smithi055.stdout:(36/36): python3-werkzeug-2.0.3-3.el9.1.noarch. 3.3 MB/s | 427 kB 00:00 2024-04-15T17:32:56.006 INFO:teuthology.orchestra.run.smithi055.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:32:56.007 INFO:teuthology.orchestra.run.smithi055.stdout:Total 10 MB/s | 30 MB 00:02 2024-04-15T17:32:56.032 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction check 2024-04-15T17:32:56.077 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction check succeeded. 2024-04-15T17:32:56.077 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction test 2024-04-15T17:32:56.499 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction test succeeded. 2024-04-15T17:32:56.499 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction 2024-04-15T17:32:57.148 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: ceph-selinux-2:19.0.0-3080.gc2d8c315.el9.x86_64 31/34 2024-04-15T17:32:57.149 INFO:teuthology.orchestra.run.smithi118.stdout:skipping the directory /sys 2024-04-15T17:32:57.149 INFO:teuthology.orchestra.run.smithi118.stdout:skipping the directory /proc 2024-04-15T17:32:57.149 INFO:teuthology.orchestra.run.smithi118.stdout:skipping the directory /mnt 2024-04-15T17:32:57.149 INFO:teuthology.orchestra.run.smithi118.stdout:skipping the directory /var/tmp 2024-04-15T17:32:57.149 INFO:teuthology.orchestra.run.smithi118.stdout:skipping the directory /home 2024-04-15T17:32:57.149 INFO:teuthology.orchestra.run.smithi118.stdout:skipping the directory /root 2024-04-15T17:32:57.149 INFO:teuthology.orchestra.run.smithi118.stdout:skipping the directory /tmp 2024-04-15T17:32:57.149 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:32:57.843 INFO:teuthology.orchestra.run.smithi055.stdout: Preparing : 1/1 2024-04-15T17:32:57.888 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/36 2024-04-15T17:32:57.921 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/36 2024-04-15T17:32:57.950 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/36 2024-04-15T17:32:58.023 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/36 2024-04-15T17:32:58.074 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : luarocks-3.9.2-1.el9.noarch 5/36 2024-04-15T17:32:58.106 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/36 2024-04-15T17:32:58.202 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/36 2024-04-15T17:32:58.219 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : ceph-radosgw-2:19.0.0-3080.gc2d8c315.el9.x86_64 32/34 2024-04-15T17:32:58.245 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: ceph-radosgw-2:19.0.0-3080.gc2d8c315.el9.x86_64 32/34 2024-04-15T17:32:58.245 INFO:teuthology.orchestra.run.smithi118.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T17:32:58.245 INFO:teuthology.orchestra.run.smithi118.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-04-15T17:32:58.245 INFO:teuthology.orchestra.run.smithi118.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-15T17:32:58.245 INFO:teuthology.orchestra.run.smithi118.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-15T17:32:58.245 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:32:58.247 INFO:teuthology.orchestra.run.smithi118.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-15T17:32:58.278 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/36 2024-04-15T17:32:58.322 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-15T17:32:58.322 INFO:teuthology.orchestra.run.smithi118.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T17:32:58.334 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-webob-1.8.7-6.el9.noarch 9/36 2024-04-15T17:32:58.407 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/36 2024-04-15T17:32:58.460 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-urllib3-1.26.5-5.el9.noarch 11/36 2024-04-15T17:32:58.498 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 12/36 2024-04-15T17:32:58.556 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-ply-3.11-14.el9.noarch 13/36 2024-04-15T17:32:58.612 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 14/36 2024-04-15T17:32:58.814 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 15/36 2024-04-15T17:32:58.861 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 16/36 2024-04-15T17:32:58.884 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: libcephsqlite-2:19.0.0-3080.gc2d8c315.el9.x86_64 5/6 2024-04-15T17:32:58.908 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 17/36 2024-04-15T17:32:58.943 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 18/36 2024-04-15T17:32:58.957 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : ceph-test-2:19.0.0-3080.gc2d8c315.el9.x86_64 6/6 2024-04-15T17:32:58.972 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 19/36 2024-04-15T17:32:59.051 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 20/36 2024-04-15T17:32:59.082 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-15T17:32:59.116 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 22/36 2024-04-15T17:32:59.148 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 23/36 2024-04-15T17:32:59.192 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 24/36 2024-04-15T17:32:59.226 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 25/36 2024-04-15T17:32:59.320 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 26/36 2024-04-15T17:32:59.365 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 27/36 2024-04-15T17:32:59.436 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T17:32:59.437 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : ceph-base-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/34 2024-04-15T17:32:59.437 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : ceph-common-2:19.0.0-3080.gc2d8c315.el9.x86_64 2/34 2024-04-15T17:32:59.437 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : ceph-radosgw-2:19.0.0-3080.gc2d8c315.el9.x86_64 3/34 2024-04-15T17:32:59.437 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : ceph-selinux-2:19.0.0-3080.gc2d8c315.el9.x86_64 4/34 2024-04-15T17:32:59.437 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : libcephfs2-2:19.0.0-3080.gc2d8c315.el9.x86_64 5/34 2024-04-15T17:32:59.437 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : libradosstriper1-2:19.0.0-3080.gc2d8c315.el9.x86_6 6/34 2024-04-15T17:32:59.438 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : librgw2-2:19.0.0-3080.gc2d8c315.el9.x86_64 7/34 2024-04-15T17:32:59.438 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-ceph-argparse-2:19.0.0-3080.gc2d8c315.el9. 8/34 2024-04-15T17:32:59.438 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-ceph-common-2:19.0.0-3080.gc2d8c315.el9.x8 9/34 2024-04-15T17:32:59.438 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-cephfs-2:19.0.0-3080.gc2d8c315.el9.x86_64 10/34 2024-04-15T17:32:59.438 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-rados-2:19.0.0-3080.gc2d8c315.el9.x86_64 11/34 2024-04-15T17:32:59.438 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-rbd-2:19.0.0-3080.gc2d8c315.el9.x86_64 12/34 2024-04-15T17:32:59.438 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-rgw-2:19.0.0-3080.gc2d8c315.el9.x86_64 13/34 2024-04-15T17:32:59.438 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-04-15T17:32:59.438 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-04-15T17:32:59.438 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-04-15T17:32:59.438 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-04-15T17:32:59.438 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-04-15T17:32:59.438 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-04-15T17:32:59.439 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-04-15T17:32:59.439 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-04-15T17:32:59.439 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-04-15T17:32:59.439 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 23/34 2024-04-15T17:32:59.439 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : libarrow-9.0.0-10.el9.x86_64 24/34 2024-04-15T17:32:59.439 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : libarrow-doc-9.0.0-10.el9.noarch 25/34 2024-04-15T17:32:59.439 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-04-15T17:32:59.439 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-04-15T17:32:59.440 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 28/36 2024-04-15T17:32:59.440 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : parquet-libs-9.0.0-10.el9.x86_64 28/34 2024-04-15T17:32:59.440 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : re2-1:20211101-3.el9.x86_64 29/34 2024-04-15T17:32:59.440 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-04-15T17:32:59.441 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : librados2-2:19.0.0-3080.gc2d8c315.el9.x86_64 31/34 2024-04-15T17:32:59.441 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-04-15T17:32:59.441 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : librbd1-2:19.0.0-3080.gc2d8c315.el9.x86_64 33/34 2024-04-15T17:32:59.580 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 29/36 2024-04-15T17:32:59.704 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-15T17:32:59.881 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : ceph-mgr-modules-core-2:19.0.0-3080.gc2d8c315.el9. 31/36 2024-04-15T17:32:59.911 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : ceph-mgr-2:19.0.0-3080.gc2d8c315.el9.x86_64 32/36 2024-04-15T17:32:59.938 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: ceph-mgr-2:19.0.0-3080.gc2d8c315.el9.x86_64 32/36 2024-04-15T17:32:59.938 INFO:teuthology.orchestra.run.smithi055.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T17:32:59.938 INFO:teuthology.orchestra.run.smithi055.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-04-15T17:32:59.938 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-15T17:32:59.939 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-15T17:32:59.939 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:00.447 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T17:33:00.447 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:00.447 INFO:teuthology.orchestra.run.smithi118.stdout:Upgraded: 2024-04-15T17:33:00.447 INFO:teuthology.orchestra.run.smithi118.stdout: librados2-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:00.448 INFO:teuthology.orchestra.run.smithi118.stdout: librbd1-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:00.448 INFO:teuthology.orchestra.run.smithi118.stdout:Installed: 2024-04-15T17:33:00.448 INFO:teuthology.orchestra.run.smithi118.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-04-15T17:33:00.448 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-base-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:00.448 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-common-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:00.448 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-radosgw-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:00.448 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-selinux-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:00.448 INFO:teuthology.orchestra.run.smithi118.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-04-15T17:33:00.448 INFO:teuthology.orchestra.run.smithi118.stdout: libarrow-9.0.0-10.el9.x86_64 2024-04-15T17:33:00.448 INFO:teuthology.orchestra.run.smithi118.stdout: libarrow-doc-9.0.0-10.el9.noarch 2024-04-15T17:33:00.448 INFO:teuthology.orchestra.run.smithi118.stdout: libcephfs2-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:00.448 INFO:teuthology.orchestra.run.smithi118.stdout: liboath-2.6.7-2.el9.x86_64 2024-04-15T17:33:00.448 INFO:teuthology.orchestra.run.smithi118.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-04-15T17:33:00.448 INFO:teuthology.orchestra.run.smithi118.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-04-15T17:33:00.449 INFO:teuthology.orchestra.run.smithi118.stdout: libradosstriper1-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:00.449 INFO:teuthology.orchestra.run.smithi118.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-04-15T17:33:00.449 INFO:teuthology.orchestra.run.smithi118.stdout: librgw2-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:00.449 INFO:teuthology.orchestra.run.smithi118.stdout: libunwind-1.6.2-1.el9.x86_64 2024-04-15T17:33:00.449 INFO:teuthology.orchestra.run.smithi118.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-04-15T17:33:00.449 INFO:teuthology.orchestra.run.smithi118.stdout: parquet-libs-9.0.0-10.el9.x86_64 2024-04-15T17:33:00.449 INFO:teuthology.orchestra.run.smithi118.stdout: python3-ceph-argparse-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:00.449 INFO:teuthology.orchestra.run.smithi118.stdout: python3-ceph-common-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:00.449 INFO:teuthology.orchestra.run.smithi118.stdout: python3-cephfs-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:00.449 INFO:teuthology.orchestra.run.smithi118.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-04-15T17:33:00.449 INFO:teuthology.orchestra.run.smithi118.stdout: python3-rados-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:00.449 INFO:teuthology.orchestra.run.smithi118.stdout: python3-rbd-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:00.449 INFO:teuthology.orchestra.run.smithi118.stdout: python3-rgw-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:00.449 INFO:teuthology.orchestra.run.smithi118.stdout: qatlib-24.02.0-1.el9.x86_64 2024-04-15T17:33:00.450 INFO:teuthology.orchestra.run.smithi118.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-04-15T17:33:00.450 INFO:teuthology.orchestra.run.smithi118.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-04-15T17:33:00.450 INFO:teuthology.orchestra.run.smithi118.stdout: re2-1:20211101-3.el9.x86_64 2024-04-15T17:33:00.450 INFO:teuthology.orchestra.run.smithi118.stdout: thrift-0.15.0-2.el9.x86_64 2024-04-15T17:33:00.450 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:00.450 INFO:teuthology.orchestra.run.smithi118.stdout:Complete! 2024-04-15T17:33:00.792 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum -y install ceph-test 2024-04-15T17:33:01.362 INFO:teuthology.orchestra.run.smithi118.stdout:Last metadata expiration check: 0:00:31 ago on Mon 15 Apr 2024 05:32:30 PM UTC. 2024-04-15T17:33:01.454 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : ceph-osd-2:19.0.0-3080.gc2d8c315.el9.x86_64 33/36 2024-04-15T17:33:01.482 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: ceph-osd-2:19.0.0-3080.gc2d8c315.el9.x86_64 33/36 2024-04-15T17:33:01.482 INFO:teuthology.orchestra.run.smithi055.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T17:33:01.482 INFO:teuthology.orchestra.run.smithi055.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-04-15T17:33:01.482 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-15T17:33:01.482 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-15T17:33:01.483 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:01.509 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: ceph-test-2:19.0.0-3080.gc2d8c315.el9.x86_64 6/6 2024-04-15T17:33:01.509 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : ceph-test-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/6 2024-04-15T17:33:01.509 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : libcephsqlite-2:19.0.0-3080.gc2d8c315.el9.x86_64 2/6 2024-04-15T17:33:01.509 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-15T17:33:01.509 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : socat-1.7.4.1-5.el9.x86_64 4/6 2024-04-15T17:33:01.510 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 5/6 2024-04-15T17:33:01.514 INFO:teuthology.orchestra.run.smithi118.stdout:Dependencies resolved. 2024-04-15T17:33:01.515 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:33:01.516 INFO:teuthology.orchestra.run.smithi118.stdout: Package Arch Version Repository Size 2024-04-15T17:33:01.516 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:33:01.516 INFO:teuthology.orchestra.run.smithi118.stdout:Installing: 2024-04-15T17:33:01.516 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-test x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 49 M 2024-04-15T17:33:01.516 INFO:teuthology.orchestra.run.smithi118.stdout:Installing dependencies: 2024-04-15T17:33:01.516 INFO:teuthology.orchestra.run.smithi118.stdout: jq x86_64 1.6-16.el9 baseos 187 k 2024-04-15T17:33:01.516 INFO:teuthology.orchestra.run.smithi118.stdout: libcephsqlite x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 163 k 2024-04-15T17:33:01.516 INFO:teuthology.orchestra.run.smithi118.stdout: oniguruma x86_64 6.9.6-1.el9.5 CentOS-AppStream 217 k 2024-04-15T17:33:01.516 INFO:teuthology.orchestra.run.smithi118.stdout: socat x86_64 1.7.4.1-5.el9 CentOS-AppStream 300 k 2024-04-15T17:33:01.516 INFO:teuthology.orchestra.run.smithi118.stdout: xmlstarlet x86_64 1.6.1-20.el9 CentOS-AppStream 63 k 2024-04-15T17:33:01.516 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:01.516 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction Summary 2024-04-15T17:33:01.516 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:33:01.517 INFO:teuthology.orchestra.run.smithi118.stdout:Install 6 Packages 2024-04-15T17:33:01.517 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:01.517 INFO:teuthology.orchestra.run.smithi118.stdout:Total download size: 50 M 2024-04-15T17:33:01.517 INFO:teuthology.orchestra.run.smithi118.stdout:Installed size: 212 M 2024-04-15T17:33:01.517 INFO:teuthology.orchestra.run.smithi118.stdout:Downloading Packages: 2024-04-15T17:33:01.751 INFO:teuthology.orchestra.run.smithi118.stdout:(1/6): oniguruma-6.9.6-1.el9.5.x86_64.rpm 1.2 MB/s | 217 kB 00:00 2024-04-15T17:33:01.801 INFO:teuthology.orchestra.run.smithi118.stdout:(2/6): socat-1.7.4.1-5.el9.x86_64.rpm 5.9 MB/s | 300 kB 00:00 2024-04-15T17:33:01.835 INFO:teuthology.orchestra.run.smithi118.stdout:(3/6): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.8 MB/s | 63 kB 00:00 2024-04-15T17:33:01.902 INFO:teuthology.orchestra.run.smithi118.stdout:(4/6): libcephsqlite-19.0.0-3080.gc2d8c315.el9. 505 kB/s | 163 kB 00:00 2024-04-15T17:33:01.925 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : jq-1.6-16.el9.x86_64 6/6 2024-04-15T17:33:01.926 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:01.926 INFO:teuthology.orchestra.run.smithi092.stdout:Installed: 2024-04-15T17:33:01.926 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-test-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:01.926 INFO:teuthology.orchestra.run.smithi092.stdout: jq-1.6-16.el9.x86_64 2024-04-15T17:33:01.926 INFO:teuthology.orchestra.run.smithi092.stdout: libcephsqlite-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:01.926 INFO:teuthology.orchestra.run.smithi092.stdout: oniguruma-6.9.6-1.el9.5.x86_64 2024-04-15T17:33:01.926 INFO:teuthology.orchestra.run.smithi092.stdout: socat-1.7.4.1-5.el9.x86_64 2024-04-15T17:33:01.926 INFO:teuthology.orchestra.run.smithi092.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-04-15T17:33:01.926 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:01.926 INFO:teuthology.orchestra.run.smithi092.stdout:Complete! 2024-04-15T17:33:01.947 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : ceph-mon-2:19.0.0-3080.gc2d8c315.el9.x86_64 34/36 2024-04-15T17:33:01.960 INFO:teuthology.orchestra.run.smithi118.stdout:(5/6): jq-1.6-16.el9.x86_64.rpm 1.5 MB/s | 187 kB 00:00 2024-04-15T17:33:01.971 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: ceph-mon-2:19.0.0-3080.gc2d8c315.el9.x86_64 34/36 2024-04-15T17:33:01.971 INFO:teuthology.orchestra.run.smithi055.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T17:33:01.971 INFO:teuthology.orchestra.run.smithi055.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-04-15T17:33:01.971 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-15T17:33:01.972 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-15T17:33:01.972 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:02.205 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : ceph-mds-2:19.0.0-3080.gc2d8c315.el9.x86_64 35/36 2024-04-15T17:33:02.229 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: ceph-mds-2:19.0.0-3080.gc2d8c315.el9.x86_64 35/36 2024-04-15T17:33:02.230 INFO:teuthology.orchestra.run.smithi055.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T17:33:02.230 INFO:teuthology.orchestra.run.smithi055.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-04-15T17:33:02.230 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-15T17:33:02.230 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-15T17:33:02.230 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:02.274 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum -y install ceph 2024-04-15T17:33:02.297 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : ceph-2:19.0.0-3080.gc2d8c315.el9.x86_64 36/36 2024-04-15T17:33:02.875 INFO:teuthology.orchestra.run.smithi092.stdout:Last metadata expiration check: 0:00:41 ago on Mon 15 Apr 2024 05:32:21 PM UTC. 2024-04-15T17:33:03.054 INFO:teuthology.orchestra.run.smithi092.stdout:Dependencies resolved. 2024-04-15T17:33:03.056 INFO:teuthology.orchestra.run.smithi092.stdout:========================================================================================= 2024-04-15T17:33:03.056 INFO:teuthology.orchestra.run.smithi092.stdout: Package Arch Version Repository Size 2024-04-15T17:33:03.057 INFO:teuthology.orchestra.run.smithi092.stdout:========================================================================================= 2024-04-15T17:33:03.057 INFO:teuthology.orchestra.run.smithi092.stdout:Installing: 2024-04-15T17:33:03.057 INFO:teuthology.orchestra.run.smithi092.stdout: ceph x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 6.6 k 2024-04-15T17:33:03.057 INFO:teuthology.orchestra.run.smithi092.stdout:Installing dependencies: 2024-04-15T17:33:03.057 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-mds x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 2.4 M 2024-04-15T17:33:03.057 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-mgr x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 1.5 M 2024-04-15T17:33:03.057 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-mgr-modules-core noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 249 k 2024-04-15T17:33:03.057 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-mon x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 4.7 M 2024-04-15T17:33:03.057 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-osd x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 17 M 2024-04-15T17:33:03.057 INFO:teuthology.orchestra.run.smithi092.stdout: lua x86_64 5.4.4-4.el9 CentOS-AppStream 187 k 2024-04-15T17:33:03.058 INFO:teuthology.orchestra.run.smithi092.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-04-15T17:33:03.058 INFO:teuthology.orchestra.run.smithi092.stdout: luarocks noarch 3.9.2-1.el9 epel 151 k 2024-04-15T17:33:03.058 INFO:teuthology.orchestra.run.smithi092.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-04-15T17:33:03.058 INFO:teuthology.orchestra.run.smithi092.stdout: python3-cffi x86_64 1.14.5-5.el9 CentOS-BaseOS 241 k 2024-04-15T17:33:03.058 INFO:teuthology.orchestra.run.smithi092.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-04-15T17:33:03.058 INFO:teuthology.orchestra.run.smithi092.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-04-15T17:33:03.058 INFO:teuthology.orchestra.run.smithi092.stdout: python3-cryptography x86_64 36.0.1-4.el9 CentOS-BaseOS 1.1 M 2024-04-15T17:33:03.058 INFO:teuthology.orchestra.run.smithi092.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-04-15T17:33:03.059 INFO:teuthology.orchestra.run.smithi092.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-04-15T17:33:03.059 INFO:teuthology.orchestra.run.smithi092.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2024-04-15T17:33:03.059 INFO:teuthology.orchestra.run.smithi092.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-04-15T17:33:03.059 INFO:teuthology.orchestra.run.smithi092.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-04-15T17:33:03.059 INFO:teuthology.orchestra.run.smithi092.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-04-15T17:33:03.059 INFO:teuthology.orchestra.run.smithi092.stdout: python3-mako noarch 1.1.4-6.el9 CentOS-AppStream 144 k 2024-04-15T17:33:03.059 INFO:teuthology.orchestra.run.smithi092.stdout: python3-markupsafe x86_64 1.1.1-12.el9 CentOS-AppStream 32 k 2024-04-15T17:33:03.059 INFO:teuthology.orchestra.run.smithi092.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-04-15T17:33:03.059 INFO:teuthology.orchestra.run.smithi092.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-04-15T17:33:03.059 INFO:teuthology.orchestra.run.smithi092.stdout: python3-ply noarch 3.11-14.el9 CentOS-BaseOS 103 k 2024-04-15T17:33:03.060 INFO:teuthology.orchestra.run.smithi092.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-04-15T17:33:03.060 INFO:teuthology.orchestra.run.smithi092.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-04-15T17:33:03.060 INFO:teuthology.orchestra.run.smithi092.stdout: python3-pycparser noarch 2.20-6.el9 CentOS-BaseOS 124 k 2024-04-15T17:33:03.060 INFO:teuthology.orchestra.run.smithi092.stdout: python3-pytz noarch 2021.1-5.el9 CentOS-AppStream 47 k 2024-04-15T17:33:03.060 INFO:teuthology.orchestra.run.smithi092.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-04-15T17:33:03.060 INFO:teuthology.orchestra.run.smithi092.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-04-15T17:33:03.060 INFO:teuthology.orchestra.run.smithi092.stdout: python3-toml noarch 0.10.2-6.el9 CentOS-AppStream 39 k 2024-04-15T17:33:03.060 INFO:teuthology.orchestra.run.smithi092.stdout: python3-urllib3 noarch 1.26.5-5.el9 CentOS-BaseOS 187 k 2024-04-15T17:33:03.060 INFO:teuthology.orchestra.run.smithi092.stdout: python3-webob noarch 1.8.7-6.el9 epel 230 k 2024-04-15T17:33:03.060 INFO:teuthology.orchestra.run.smithi092.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-04-15T17:33:03.060 INFO:teuthology.orchestra.run.smithi092.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-04-15T17:33:03.061 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:03.061 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction Summary 2024-04-15T17:33:03.061 INFO:teuthology.orchestra.run.smithi092.stdout:========================================================================================= 2024-04-15T17:33:03.061 INFO:teuthology.orchestra.run.smithi092.stdout:Install 36 Packages 2024-04-15T17:33:03.061 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:03.062 INFO:teuthology.orchestra.run.smithi092.stdout:Total download size: 30 M 2024-04-15T17:33:03.062 INFO:teuthology.orchestra.run.smithi092.stdout:Installed size: 107 M 2024-04-15T17:33:03.062 INFO:teuthology.orchestra.run.smithi092.stdout:Downloading Packages: 2024-04-15T17:33:03.917 INFO:teuthology.orchestra.run.smithi092.stdout:(1/36): ceph-19.0.0-3080.gc2d8c315.el9.x86_64.r 29 kB/s | 6.6 kB 00:00 2024-04-15T17:33:03.977 INFO:teuthology.orchestra.run.smithi118.stdout:(6/6): ceph-test-19.0.0-3080.gc2d8c315.el9.x86_ 20 MB/s | 49 MB 00:02 2024-04-15T17:33:03.980 INFO:teuthology.orchestra.run.smithi118.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:33:03.980 INFO:teuthology.orchestra.run.smithi118.stdout:Total 20 MB/s | 50 MB 00:02 2024-04-15T17:33:03.995 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction check 2024-04-15T17:33:04.016 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction check succeeded. 2024-04-15T17:33:04.016 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction test 2024-04-15T17:33:04.043 INFO:teuthology.orchestra.run.smithi092.stdout:(2/36): ceph-mgr-19.0.0-3080.gc2d8c315.el9.x86_ 4.3 MB/s | 1.5 MB 00:00 2024-04-15T17:33:04.122 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: ceph-2:19.0.0-3080.gc2d8c315.el9.x86_64 36/36 2024-04-15T17:33:04.122 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : ceph-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/36 2024-04-15T17:33:04.122 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : ceph-mds-2:19.0.0-3080.gc2d8c315.el9.x86_64 2/36 2024-04-15T17:33:04.122 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : ceph-mgr-2:19.0.0-3080.gc2d8c315.el9.x86_64 3/36 2024-04-15T17:33:04.122 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : ceph-mon-2:19.0.0-3080.gc2d8c315.el9.x86_64 4/36 2024-04-15T17:33:04.122 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : ceph-osd-2:19.0.0-3080.gc2d8c315.el9.x86_64 5/36 2024-04-15T17:33:04.123 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : ceph-mgr-modules-core-2:19.0.0-3080.gc2d8c315.el9. 6/36 2024-04-15T17:33:04.123 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : lua-5.4.4-4.el9.x86_64 7/36 2024-04-15T17:33:04.123 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 8/36 2024-04-15T17:33:04.123 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 9/36 2024-04-15T17:33:04.123 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 10/36 2024-04-15T17:33:04.123 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 11/36 2024-04-15T17:33:04.123 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 12/36 2024-04-15T17:33:04.123 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 13/36 2024-04-15T17:33:04.123 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-ply-3.11-14.el9.noarch 14/36 2024-04-15T17:33:04.123 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 15/36 2024-04-15T17:33:04.123 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-urllib3-1.26.5-5.el9.noarch 16/36 2024-04-15T17:33:04.124 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 17/36 2024-04-15T17:33:04.124 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 18/36 2024-04-15T17:33:04.124 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : luarocks-3.9.2-1.el9.noarch 19/36 2024-04-15T17:33:04.124 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 20/36 2024-04-15T17:33:04.124 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-15T17:33:04.124 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 22/36 2024-04-15T17:33:04.124 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 23/36 2024-04-15T17:33:04.124 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 24/36 2024-04-15T17:33:04.124 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 25/36 2024-04-15T17:33:04.124 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 26/36 2024-04-15T17:33:04.124 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 27/36 2024-04-15T17:33:04.126 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 28/36 2024-04-15T17:33:04.126 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 29/36 2024-04-15T17:33:04.126 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-15T17:33:04.126 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 31/36 2024-04-15T17:33:04.126 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 32/36 2024-04-15T17:33:04.126 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 33/36 2024-04-15T17:33:04.126 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-webob-1.8.7-6.el9.noarch 34/36 2024-04-15T17:33:04.126 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 35/36 2024-04-15T17:33:04.351 INFO:teuthology.orchestra.run.smithi092.stdout:(3/36): ceph-mds-19.0.0-3080.gc2d8c315.el9.x86_ 3.6 MB/s | 2.4 MB 00:00 2024-04-15T17:33:04.409 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction test succeeded. 2024-04-15T17:33:04.410 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction 2024-04-15T17:33:04.443 INFO:teuthology.orchestra.run.smithi092.stdout:(4/36): ceph-mgr-modules-core-19.0.0-3080.gc2d8 2.7 MB/s | 249 kB 00:00 2024-04-15T17:33:04.551 INFO:teuthology.orchestra.run.smithi092.stdout:(5/36): lua-5.4.4-4.el9.x86_64.rpm 1.7 MB/s | 187 kB 00:00 2024-04-15T17:33:04.594 INFO:teuthology.orchestra.run.smithi092.stdout:(6/36): python3-mako-1.1.4-6.el9.noarch.rpm 3.4 MB/s | 144 kB 00:00 2024-04-15T17:33:04.627 INFO:teuthology.orchestra.run.smithi092.stdout:(7/36): python3-markupsafe-1.1.1-12.el9.x86_64. 956 kB/s | 32 kB 00:00 2024-04-15T17:33:04.661 INFO:teuthology.orchestra.run.smithi092.stdout:(8/36): python3-pytz-2021.1-5.el9.noarch.rpm 1.4 MB/s | 47 kB 00:00 2024-04-15T17:33:04.694 INFO:teuthology.orchestra.run.smithi092.stdout:(9/36): python3-toml-0.10.2-6.el9.noarch.rpm 1.1 MB/s | 39 kB 00:00 2024-04-15T17:33:04.894 INFO:teuthology.orchestra.run.smithi092.stdout:(10/36): ceph-osd-19.0.0-3080.gc2d8c315.el9.x86 20 MB/s | 17 MB 00:00 2024-04-15T17:33:04.920 INFO:teuthology.orchestra.run.smithi092.stdout:(11/36): python3-cffi-1.14.5-5.el9.x86_64.rpm 1.0 MB/s | 241 kB 00:00 2024-04-15T17:33:04.979 INFO:teuthology.orchestra.run.smithi092.stdout:(12/36): python3-cryptography-36.0.1-4.el9.x86_ 14 MB/s | 1.1 MB 00:00 2024-04-15T17:33:04.991 INFO:teuthology.orchestra.run.smithi118.stdout: Preparing : 1/1 2024-04-15T17:33:05.004 INFO:teuthology.orchestra.run.smithi092.stdout:(13/36): python3-ply-3.11-14.el9.noarch.rpm 1.2 MB/s | 103 kB 00:00 2024-04-15T17:33:05.029 INFO:teuthology.orchestra.run.smithi092.stdout:(14/36): python3-pycparser-2.20-6.el9.noarch.rp 2.4 MB/s | 124 kB 00:00 2024-04-15T17:33:05.055 INFO:teuthology.orchestra.run.smithi092.stdout:(15/36): python3-urllib3-1.26.5-5.el9.noarch.rp 3.6 MB/s | 187 kB 00:00 2024-04-15T17:33:05.074 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/6 2024-04-15T17:33:05.103 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 36/36 2024-04-15T17:33:05.103 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:05.103 INFO:teuthology.orchestra.run.smithi055.stdout:Installed: 2024-04-15T17:33:05.103 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:05.103 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-mds-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:05.103 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-mgr-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:05.103 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-mgr-modules-core-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:33:05.103 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-mon-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:05.103 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-osd-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:05.104 INFO:teuthology.orchestra.run.smithi055.stdout: lua-5.4.4-4.el9.x86_64 2024-04-15T17:33:05.104 INFO:teuthology.orchestra.run.smithi055.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-04-15T17:33:05.104 INFO:teuthology.orchestra.run.smithi055.stdout: luarocks-3.9.2-1.el9.noarch 2024-04-15T17:33:05.104 INFO:teuthology.orchestra.run.smithi055.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-04-15T17:33:05.104 INFO:teuthology.orchestra.run.smithi055.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-04-15T17:33:05.104 INFO:teuthology.orchestra.run.smithi055.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-04-15T17:33:05.104 INFO:teuthology.orchestra.run.smithi055.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-04-15T17:33:05.104 INFO:teuthology.orchestra.run.smithi055.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-04-15T17:33:05.104 INFO:teuthology.orchestra.run.smithi055.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-04-15T17:33:05.104 INFO:teuthology.orchestra.run.smithi055.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-04-15T17:33:05.104 INFO:teuthology.orchestra.run.smithi055.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-04-15T17:33:05.104 INFO:teuthology.orchestra.run.smithi055.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-04-15T17:33:05.104 INFO:teuthology.orchestra.run.smithi055.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-04-15T17:33:05.104 INFO:teuthology.orchestra.run.smithi055.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-04-15T17:33:05.105 INFO:teuthology.orchestra.run.smithi055.stdout: python3-mako-1.1.4-6.el9.noarch 2024-04-15T17:33:05.105 INFO:teuthology.orchestra.run.smithi055.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-04-15T17:33:05.105 INFO:teuthology.orchestra.run.smithi055.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-04-15T17:33:05.105 INFO:teuthology.orchestra.run.smithi055.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-04-15T17:33:05.105 INFO:teuthology.orchestra.run.smithi055.stdout: python3-ply-3.11-14.el9.noarch 2024-04-15T17:33:05.105 INFO:teuthology.orchestra.run.smithi055.stdout: python3-portend-3.1.0-2.el9.noarch 2024-04-15T17:33:05.105 INFO:teuthology.orchestra.run.smithi055.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-04-15T17:33:05.105 INFO:teuthology.orchestra.run.smithi055.stdout: python3-pycparser-2.20-6.el9.noarch 2024-04-15T17:33:05.105 INFO:teuthology.orchestra.run.smithi055.stdout: python3-pytz-2021.1-5.el9.noarch 2024-04-15T17:33:05.105 INFO:teuthology.orchestra.run.smithi055.stdout: python3-requests-2.25.1-8.el9.noarch 2024-04-15T17:33:05.105 INFO:teuthology.orchestra.run.smithi055.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-04-15T17:33:05.105 INFO:teuthology.orchestra.run.smithi055.stdout: python3-toml-0.10.2-6.el9.noarch 2024-04-15T17:33:05.105 INFO:teuthology.orchestra.run.smithi055.stdout: python3-urllib3-1.26.5-5.el9.noarch 2024-04-15T17:33:05.105 INFO:teuthology.orchestra.run.smithi055.stdout: python3-webob-1.8.7-6.el9.noarch 2024-04-15T17:33:05.106 INFO:teuthology.orchestra.run.smithi055.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-04-15T17:33:05.106 INFO:teuthology.orchestra.run.smithi055.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-04-15T17:33:05.106 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:05.106 INFO:teuthology.orchestra.run.smithi055.stdout:Complete! 2024-04-15T17:33:05.106 INFO:teuthology.orchestra.run.smithi092.stdout:(16/36): lua-devel-5.4.4-4.el9.x86_64.rpm 447 kB/s | 22 kB 00:00 2024-04-15T17:33:05.111 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : socat-1.7.4.1-5.el9.x86_64 2/6 2024-04-15T17:33:05.146 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-15T17:33:05.185 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : jq-1.6-16.el9.x86_64 4/6 2024-04-15T17:33:05.214 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : libcephsqlite-2:19.0.0-3080.gc2d8c315.el9.x86_64 5/6 2024-04-15T17:33:05.280 INFO:teuthology.orchestra.run.smithi092.stdout:(17/36): python3-requests-2.25.1-8.el9.noarch.r 499 kB/s | 125 kB 00:00 2024-04-15T17:33:05.462 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum -y install ceph-base 2024-04-15T17:33:05.739 INFO:teuthology.orchestra.run.smithi092.stdout:(18/36): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 95 kB/s | 43 kB 00:00 2024-04-15T17:33:05.847 INFO:teuthology.orchestra.run.smithi092.stdout:(19/36): ceph-mon-19.0.0-3080.gc2d8c315.el9.x86 2.4 MB/s | 4.7 MB 00:01 2024-04-15T17:33:06.055 INFO:teuthology.orchestra.run.smithi055.stdout:Last metadata expiration check: 0:00:57 ago on Mon 15 Apr 2024 05:32:09 PM UTC. 2024-04-15T17:33:06.158 INFO:teuthology.orchestra.run.smithi055.stdout:Package ceph-base-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:33:06.213 INFO:teuthology.orchestra.run.smithi055.stdout:Dependencies resolved. 2024-04-15T17:33:06.214 INFO:teuthology.orchestra.run.smithi055.stdout:Nothing to do. 2024-04-15T17:33:06.214 INFO:teuthology.orchestra.run.smithi055.stdout:Complete! 2024-04-15T17:33:06.285 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum -y install cephadm 2024-04-15T17:33:06.875 INFO:teuthology.orchestra.run.smithi055.stdout:Last metadata expiration check: 0:00:57 ago on Mon 15 Apr 2024 05:32:09 PM UTC. 2024-04-15T17:33:07.034 INFO:teuthology.orchestra.run.smithi055.stdout:Dependencies resolved. 2024-04-15T17:33:07.035 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:33:07.035 INFO:teuthology.orchestra.run.smithi055.stdout: Package Arch Version Repository Size 2024-04-15T17:33:07.035 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:33:07.036 INFO:teuthology.orchestra.run.smithi055.stdout:Installing: 2024-04-15T17:33:07.036 INFO:teuthology.orchestra.run.smithi055.stdout: cephadm noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 762 k 2024-04-15T17:33:07.036 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:07.036 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction Summary 2024-04-15T17:33:07.036 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:33:07.036 INFO:teuthology.orchestra.run.smithi055.stdout:Install 1 Package 2024-04-15T17:33:07.036 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:07.036 INFO:teuthology.orchestra.run.smithi055.stdout:Total download size: 762 k 2024-04-15T17:33:07.036 INFO:teuthology.orchestra.run.smithi055.stdout:Installed size: 769 k 2024-04-15T17:33:07.036 INFO:teuthology.orchestra.run.smithi055.stdout:Downloading Packages: 2024-04-15T17:33:07.156 INFO:teuthology.orchestra.run.smithi092.stdout:(20/36): luarocks-3.9.2-1.el9.noarch.rpm 74 kB/s | 151 kB 00:02 2024-04-15T17:33:07.181 INFO:teuthology.orchestra.run.smithi092.stdout:(21/36): python3-cheroot-8.6.0-4.el9.noarch.rpm 119 kB/s | 172 kB 00:01 2024-04-15T17:33:07.206 INFO:teuthology.orchestra.run.smithi092.stdout:(22/36): python3-cherrypy-18.6.1-2.el9.noarch.r 264 kB/s | 358 kB 00:01 2024-04-15T17:33:07.231 INFO:teuthology.orchestra.run.smithi092.stdout:(23/36): python3-jaraco-8.2.1-3.el9.noarch.rpm 143 kB/s | 11 kB 00:00 2024-04-15T17:33:07.248 INFO:teuthology.orchestra.run.smithi092.stdout:(24/36): python3-jaraco-classes-3.2.1-5.el9.noa 265 kB/s | 18 kB 00:00 2024-04-15T17:33:07.430 INFO:teuthology.orchestra.run.smithi055.stdout:cephadm-19.0.0-3080.gc2d8c315.el9.noarch.rpm 1.9 MB/s | 762 kB 00:00 2024-04-15T17:33:07.431 INFO:teuthology.orchestra.run.smithi055.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:33:07.431 INFO:teuthology.orchestra.run.smithi055.stdout:Total 1.9 MB/s | 762 kB 00:00 2024-04-15T17:33:07.431 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction check 2024-04-15T17:33:07.437 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction check succeeded. 2024-04-15T17:33:07.437 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction test 2024-04-15T17:33:07.443 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction test succeeded. 2024-04-15T17:33:07.443 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction 2024-04-15T17:33:07.534 INFO:teuthology.orchestra.run.smithi055.stdout: Preparing : 1/1 2024-04-15T17:33:07.950 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 1/1 2024-04-15T17:33:08.038 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 1/1 2024-04-15T17:33:08.396 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 1/1 2024-04-15T17:33:08.635 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 1/1 2024-04-15T17:33:08.636 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:08.636 INFO:teuthology.orchestra.run.smithi055.stdout:Installed: 2024-04-15T17:33:08.636 INFO:teuthology.orchestra.run.smithi055.stdout: cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:33:08.636 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:08.636 INFO:teuthology.orchestra.run.smithi055.stdout:Complete! 2024-04-15T17:33:08.835 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum -y install ceph-immutable-object-cache 2024-04-15T17:33:09.423 INFO:teuthology.orchestra.run.smithi055.stdout:Last metadata expiration check: 0:01:00 ago on Mon 15 Apr 2024 05:32:09 PM UTC. 2024-04-15T17:33:09.582 INFO:teuthology.orchestra.run.smithi055.stdout:Dependencies resolved. 2024-04-15T17:33:09.583 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:33:09.583 INFO:teuthology.orchestra.run.smithi055.stdout: Package Arch Version Repo Size 2024-04-15T17:33:09.583 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:33:09.583 INFO:teuthology.orchestra.run.smithi055.stdout:Installing: 2024-04-15T17:33:09.583 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-immutable-object-cache x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 145 k 2024-04-15T17:33:09.583 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:09.583 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction Summary 2024-04-15T17:33:09.583 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:33:09.583 INFO:teuthology.orchestra.run.smithi055.stdout:Install 1 Package 2024-04-15T17:33:09.583 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:09.583 INFO:teuthology.orchestra.run.smithi055.stdout:Total download size: 145 k 2024-04-15T17:33:09.583 INFO:teuthology.orchestra.run.smithi055.stdout:Installed size: 435 k 2024-04-15T17:33:09.583 INFO:teuthology.orchestra.run.smithi055.stdout:Downloading Packages: 2024-04-15T17:33:09.819 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: libcephsqlite-2:19.0.0-3080.gc2d8c315.el9.x86_64 5/6 2024-04-15T17:33:09.896 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : ceph-test-2:19.0.0-3080.gc2d8c315.el9.x86_64 6/6 2024-04-15T17:33:09.937 INFO:teuthology.orchestra.run.smithi055.stdout:ceph-immutable-object-cache-19.0.0-3080.gc2d8c3 411 kB/s | 145 kB 00:00 2024-04-15T17:33:09.937 INFO:teuthology.orchestra.run.smithi055.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:33:09.937 INFO:teuthology.orchestra.run.smithi055.stdout:Total 409 kB/s | 145 kB 00:00 2024-04-15T17:33:09.938 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction check 2024-04-15T17:33:09.946 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction check succeeded. 2024-04-15T17:33:09.946 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction test 2024-04-15T17:33:10.000 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction test succeeded. 2024-04-15T17:33:10.001 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction 2024-04-15T17:33:10.152 INFO:teuthology.orchestra.run.smithi055.stdout: Preparing : 1/1 2024-04-15T17:33:10.204 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : ceph-immutable-object-cache-2:19.0.0-3080.gc2d8c315. 1/1 2024-04-15T17:33:10.229 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.0.0-3080.gc2d8c315. 1/1 2024-04-15T17:33:10.230 INFO:teuthology.orchestra.run.smithi055.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T17:33:10.230 INFO:teuthology.orchestra.run.smithi055.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-04-15T17:33:10.230 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:11.197 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : ceph-immutable-object-cache-2:19.0.0-3080.gc2d8c315. 1/1 2024-04-15T17:33:11.197 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:11.197 INFO:teuthology.orchestra.run.smithi055.stdout:Installed: 2024-04-15T17:33:11.197 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-immutable-object-cache-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:11.197 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:11.197 INFO:teuthology.orchestra.run.smithi055.stdout:Complete! 2024-04-15T17:33:11.470 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum -y install ceph-mgr 2024-04-15T17:33:12.063 INFO:teuthology.orchestra.run.smithi055.stdout:Last metadata expiration check: 0:01:03 ago on Mon 15 Apr 2024 05:32:09 PM UTC. 2024-04-15T17:33:12.165 INFO:teuthology.orchestra.run.smithi055.stdout:Package ceph-mgr-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:33:12.221 INFO:teuthology.orchestra.run.smithi055.stdout:Dependencies resolved. 2024-04-15T17:33:12.222 INFO:teuthology.orchestra.run.smithi055.stdout:Nothing to do. 2024-04-15T17:33:12.223 INFO:teuthology.orchestra.run.smithi055.stdout:Complete! 2024-04-15T17:33:12.294 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum -y install ceph-mgr-dashboard 2024-04-15T17:33:12.331 INFO:teuthology.orchestra.run.smithi092.stdout:(25/36): python3-jaraco-collections-3.0.0-8.el9 4.5 kB/s | 23 kB 00:05 2024-04-15T17:33:12.356 INFO:teuthology.orchestra.run.smithi092.stdout:(26/36): python3-jaraco-functools-3.5.0-2.el9.n 3.8 kB/s | 19 kB 00:05 2024-04-15T17:33:12.381 INFO:teuthology.orchestra.run.smithi092.stdout:(27/36): python3-jaraco-text-3.2.0-6.el9.noarch 3.8 kB/s | 20 kB 00:05 2024-04-15T17:33:12.740 INFO:teuthology.orchestra.run.smithi092.stdout:(28/36): python3-logutils-0.3.5-21.el9.noarch.r 130 kB/s | 46 kB 00:00 2024-04-15T17:33:12.765 INFO:teuthology.orchestra.run.smithi092.stdout:(29/36): python3-more-itertools-8.12.0-2.el9.no 206 kB/s | 79 kB 00:00 2024-04-15T17:33:12.799 INFO:teuthology.orchestra.run.smithi092.stdout:(30/36): python3-pecan-1.4.2-3.el9.noarch.rpm 655 kB/s | 272 kB 00:00 2024-04-15T17:33:12.879 INFO:teuthology.orchestra.run.smithi055.stdout:Last metadata expiration check: 0:01:03 ago on Mon 15 Apr 2024 05:32:09 PM UTC. 2024-04-15T17:33:12.964 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: ceph-test-2:19.0.0-3080.gc2d8c315.el9.x86_64 6/6 2024-04-15T17:33:12.964 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : ceph-test-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/6 2024-04-15T17:33:12.964 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : libcephsqlite-2:19.0.0-3080.gc2d8c315.el9.x86_64 2/6 2024-04-15T17:33:12.965 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-15T17:33:12.965 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : socat-1.7.4.1-5.el9.x86_64 4/6 2024-04-15T17:33:12.965 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 5/6 2024-04-15T17:33:13.036 INFO:teuthology.orchestra.run.smithi055.stdout:Dependencies resolved. 2024-04-15T17:33:13.037 INFO:teuthology.orchestra.run.smithi055.stdout:====================================================================================== 2024-04-15T17:33:13.037 INFO:teuthology.orchestra.run.smithi055.stdout: Package Arch Version Repository Size 2024-04-15T17:33:13.038 INFO:teuthology.orchestra.run.smithi055.stdout:====================================================================================== 2024-04-15T17:33:13.038 INFO:teuthology.orchestra.run.smithi055.stdout:Installing: 2024-04-15T17:33:13.038 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-mgr-dashboard noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 3.5 M 2024-04-15T17:33:13.038 INFO:teuthology.orchestra.run.smithi055.stdout:Installing dependencies: 2024-04-15T17:33:13.038 INFO:teuthology.orchestra.run.smithi055.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-04-15T17:33:13.038 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-grafana-dashboards noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 34 k 2024-04-15T17:33:13.038 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-prometheus-alerts noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 16 k 2024-04-15T17:33:13.038 INFO:teuthology.orchestra.run.smithi055.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-04-15T17:33:13.038 INFO:teuthology.orchestra.run.smithi055.stdout: protobuf x86_64 3.14.0-13.el9 CentOS-AppStream 1.0 M 2024-04-15T17:33:13.038 INFO:teuthology.orchestra.run.smithi055.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-04-15T17:33:13.039 INFO:teuthology.orchestra.run.smithi055.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-04-15T17:33:13.039 INFO:teuthology.orchestra.run.smithi055.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-04-15T17:33:13.039 INFO:teuthology.orchestra.run.smithi055.stdout: python3-protobuf noarch 3.14.0-13.el9 CentOS-AppStream 238 k 2024-04-15T17:33:13.039 INFO:teuthology.orchestra.run.smithi055.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-04-15T17:33:13.039 INFO:teuthology.orchestra.run.smithi055.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-04-15T17:33:13.039 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:13.039 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction Summary 2024-04-15T17:33:13.039 INFO:teuthology.orchestra.run.smithi055.stdout:====================================================================================== 2024-04-15T17:33:13.039 INFO:teuthology.orchestra.run.smithi055.stdout:Install 12 Packages 2024-04-15T17:33:13.039 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:13.040 INFO:teuthology.orchestra.run.smithi055.stdout:Total download size: 8.6 M 2024-04-15T17:33:13.040 INFO:teuthology.orchestra.run.smithi055.stdout:Installed size: 104 M 2024-04-15T17:33:13.040 INFO:teuthology.orchestra.run.smithi055.stdout:Downloading Packages: 2024-04-15T17:33:13.124 INFO:teuthology.orchestra.run.smithi092.stdout:(31/36): python3-portend-3.1.0-2.el9.noarch.rpm 43 kB/s | 16 kB 00:00 2024-04-15T17:33:13.149 INFO:teuthology.orchestra.run.smithi092.stdout:(32/36): python3-pyOpenSSL-21.0.0-1.el9.noarch. 234 kB/s | 90 kB 00:00 2024-04-15T17:33:13.174 INFO:teuthology.orchestra.run.smithi092.stdout:(33/36): python3-tempora-5.0.0-2.el9.noarch.rpm 95 kB/s | 36 kB 00:00 2024-04-15T17:33:13.200 INFO:teuthology.orchestra.run.smithi092.stdout:(34/36): python3-webob-1.8.7-6.el9.noarch.rpm 3.0 MB/s | 230 kB 00:00 2024-04-15T17:33:13.225 INFO:teuthology.orchestra.run.smithi092.stdout:(35/36): python3-werkzeug-2.0.3-3.el9.1.noarch. 5.5 MB/s | 427 kB 00:00 2024-04-15T17:33:13.250 INFO:teuthology.orchestra.run.smithi092.stdout:(36/36): python3-zc-lockfile-2.0-10.el9.noarch. 267 kB/s | 20 kB 00:00 2024-04-15T17:33:13.255 INFO:teuthology.orchestra.run.smithi092.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:33:13.256 INFO:teuthology.orchestra.run.smithi092.stdout:Total 2.9 MB/s | 30 MB 00:10 2024-04-15T17:33:13.283 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction check 2024-04-15T17:33:13.324 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction check succeeded. 2024-04-15T17:33:13.324 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction test 2024-04-15T17:33:13.359 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : jq-1.6-16.el9.x86_64 6/6 2024-04-15T17:33:13.359 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:13.359 INFO:teuthology.orchestra.run.smithi118.stdout:Installed: 2024-04-15T17:33:13.360 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-test-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:13.360 INFO:teuthology.orchestra.run.smithi118.stdout: jq-1.6-16.el9.x86_64 2024-04-15T17:33:13.360 INFO:teuthology.orchestra.run.smithi118.stdout: libcephsqlite-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:13.360 INFO:teuthology.orchestra.run.smithi118.stdout: oniguruma-6.9.6-1.el9.5.x86_64 2024-04-15T17:33:13.360 INFO:teuthology.orchestra.run.smithi118.stdout: socat-1.7.4.1-5.el9.x86_64 2024-04-15T17:33:13.360 INFO:teuthology.orchestra.run.smithi118.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-04-15T17:33:13.360 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:13.360 INFO:teuthology.orchestra.run.smithi118.stdout:Complete! 2024-04-15T17:33:13.582 INFO:teuthology.orchestra.run.smithi055.stdout:(1/12): ceph-prometheus-alerts-19.0.0-3080.gc2d 63 kB/s | 16 kB 00:00 2024-04-15T17:33:13.599 INFO:teuthology.orchestra.run.smithi055.stdout:(2/12): ceph-grafana-dashboards-19.0.0-3080.gc2 123 kB/s | 34 kB 00:00 2024-04-15T17:33:13.664 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum -y install ceph 2024-04-15T17:33:13.736 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction test succeeded. 2024-04-15T17:33:13.736 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction 2024-04-15T17:33:13.799 INFO:teuthology.orchestra.run.smithi055.stdout:(3/12): python3-protobuf-3.14.0-13.el9.noarch.r 1.2 MB/s | 238 kB 00:00 2024-04-15T17:33:13.891 INFO:teuthology.orchestra.run.smithi055.stdout:(4/12): protobuf-3.14.0-13.el9.x86_64.rpm 3.3 MB/s | 1.0 MB 00:00 2024-04-15T17:33:14.251 INFO:teuthology.orchestra.run.smithi118.stdout:Last metadata expiration check: 0:00:44 ago on Mon 15 Apr 2024 05:32:30 PM UTC. 2024-04-15T17:33:14.266 INFO:teuthology.orchestra.run.smithi055.stdout:(5/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 1.4 MB/s | 548 kB 00:00 2024-04-15T17:33:14.342 INFO:teuthology.orchestra.run.smithi055.stdout:(6/12): grpc-data-1.46.7-10.el9.noarch.rpm 259 kB/s | 19 kB 00:00 2024-04-15T17:33:14.407 INFO:teuthology.orchestra.run.smithi118.stdout:Dependencies resolved. 2024-04-15T17:33:14.410 INFO:teuthology.orchestra.run.smithi118.stdout:========================================================================================= 2024-04-15T17:33:14.410 INFO:teuthology.orchestra.run.smithi118.stdout: Package Arch Version Repository Size 2024-04-15T17:33:14.410 INFO:teuthology.orchestra.run.smithi118.stdout:========================================================================================= 2024-04-15T17:33:14.410 INFO:teuthology.orchestra.run.smithi118.stdout:Installing: 2024-04-15T17:33:14.410 INFO:teuthology.orchestra.run.smithi118.stdout: ceph x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 6.6 k 2024-04-15T17:33:14.410 INFO:teuthology.orchestra.run.smithi118.stdout:Installing dependencies: 2024-04-15T17:33:14.410 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-mds x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 2.4 M 2024-04-15T17:33:14.410 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-mgr x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 1.5 M 2024-04-15T17:33:14.410 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-mgr-modules-core noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 249 k 2024-04-15T17:33:14.410 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-mon x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 4.7 M 2024-04-15T17:33:14.410 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-osd x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 17 M 2024-04-15T17:33:14.411 INFO:teuthology.orchestra.run.smithi118.stdout: lua x86_64 5.4.4-4.el9 CentOS-AppStream 187 k 2024-04-15T17:33:14.411 INFO:teuthology.orchestra.run.smithi118.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-04-15T17:33:14.411 INFO:teuthology.orchestra.run.smithi118.stdout: luarocks noarch 3.9.2-1.el9 epel 151 k 2024-04-15T17:33:14.411 INFO:teuthology.orchestra.run.smithi118.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-04-15T17:33:14.411 INFO:teuthology.orchestra.run.smithi118.stdout: python3-cffi x86_64 1.14.5-5.el9 CentOS-BaseOS 241 k 2024-04-15T17:33:14.411 INFO:teuthology.orchestra.run.smithi118.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-04-15T17:33:14.411 INFO:teuthology.orchestra.run.smithi118.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-04-15T17:33:14.411 INFO:teuthology.orchestra.run.smithi118.stdout: python3-cryptography x86_64 36.0.1-4.el9 CentOS-BaseOS 1.1 M 2024-04-15T17:33:14.411 INFO:teuthology.orchestra.run.smithi118.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-04-15T17:33:14.411 INFO:teuthology.orchestra.run.smithi118.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-04-15T17:33:14.411 INFO:teuthology.orchestra.run.smithi118.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2024-04-15T17:33:14.411 INFO:teuthology.orchestra.run.smithi118.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-04-15T17:33:14.411 INFO:teuthology.orchestra.run.smithi118.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-04-15T17:33:14.412 INFO:teuthology.orchestra.run.smithi118.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-04-15T17:33:14.412 INFO:teuthology.orchestra.run.smithi118.stdout: python3-mako noarch 1.1.4-6.el9 CentOS-AppStream 144 k 2024-04-15T17:33:14.412 INFO:teuthology.orchestra.run.smithi118.stdout: python3-markupsafe x86_64 1.1.1-12.el9 CentOS-AppStream 32 k 2024-04-15T17:33:14.412 INFO:teuthology.orchestra.run.smithi118.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-04-15T17:33:14.412 INFO:teuthology.orchestra.run.smithi118.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-04-15T17:33:14.412 INFO:teuthology.orchestra.run.smithi118.stdout: python3-ply noarch 3.11-14.el9 CentOS-BaseOS 103 k 2024-04-15T17:33:14.412 INFO:teuthology.orchestra.run.smithi118.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-04-15T17:33:14.412 INFO:teuthology.orchestra.run.smithi118.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-04-15T17:33:14.412 INFO:teuthology.orchestra.run.smithi118.stdout: python3-pycparser noarch 2.20-6.el9 CentOS-BaseOS 124 k 2024-04-15T17:33:14.412 INFO:teuthology.orchestra.run.smithi118.stdout: python3-pytz noarch 2021.1-5.el9 CentOS-AppStream 47 k 2024-04-15T17:33:14.412 INFO:teuthology.orchestra.run.smithi118.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-04-15T17:33:14.412 INFO:teuthology.orchestra.run.smithi118.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-04-15T17:33:14.412 INFO:teuthology.orchestra.run.smithi118.stdout: python3-toml noarch 0.10.2-6.el9 CentOS-AppStream 39 k 2024-04-15T17:33:14.413 INFO:teuthology.orchestra.run.smithi118.stdout: python3-urllib3 noarch 1.26.5-5.el9 CentOS-BaseOS 187 k 2024-04-15T17:33:14.413 INFO:teuthology.orchestra.run.smithi118.stdout: python3-webob noarch 1.8.7-6.el9 epel 230 k 2024-04-15T17:33:14.413 INFO:teuthology.orchestra.run.smithi118.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-04-15T17:33:14.413 INFO:teuthology.orchestra.run.smithi118.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-04-15T17:33:14.413 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:14.413 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction Summary 2024-04-15T17:33:14.413 INFO:teuthology.orchestra.run.smithi118.stdout:========================================================================================= 2024-04-15T17:33:14.413 INFO:teuthology.orchestra.run.smithi118.stdout:Install 36 Packages 2024-04-15T17:33:14.413 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:14.414 INFO:teuthology.orchestra.run.smithi118.stdout:Total download size: 30 M 2024-04-15T17:33:14.414 INFO:teuthology.orchestra.run.smithi118.stdout:Installed size: 107 M 2024-04-15T17:33:14.414 INFO:teuthology.orchestra.run.smithi118.stdout:Downloading Packages: 2024-04-15T17:33:14.542 INFO:teuthology.orchestra.run.smithi055.stdout:(7/12): protobuf-compiler-3.14.0-13.el9.x86_64. 1.1 MB/s | 863 kB 00:00 2024-04-15T17:33:14.625 INFO:teuthology.orchestra.run.smithi055.stdout:(8/12): python3-grpcio-1.46.7-10.el9.x86_64.rpm 7.2 MB/s | 2.0 MB 00:00 2024-04-15T17:33:14.684 INFO:teuthology.orchestra.run.smithi055.stdout:(9/12): ceph-mgr-dashboard-19.0.0-3080.gc2d8c31 2.6 MB/s | 3.5 MB 00:01 2024-04-15T17:33:14.701 INFO:teuthology.orchestra.run.smithi055.stdout:(10/12): python3-repoze-lru-0.7-16.el9.noarch.r 408 kB/s | 31 kB 00:00 2024-04-15T17:33:14.851 INFO:teuthology.orchestra.run.smithi055.stdout:(11/12): python3-grpcio-tools-1.46.7-10.el9.x86 468 kB/s | 144 kB 00:00 2024-04-15T17:33:14.984 INFO:teuthology.orchestra.run.smithi055.stdout:(12/12): python3-routes-2.5.1-5.el9.noarch.rpm 628 kB/s | 188 kB 00:00 2024-04-15T17:33:14.988 INFO:teuthology.orchestra.run.smithi055.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:33:14.989 INFO:teuthology.orchestra.run.smithi055.stdout:Total 4.4 MB/s | 8.6 MB 00:01 2024-04-15T17:33:15.011 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction check 2024-04-15T17:33:15.029 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction check succeeded. 2024-04-15T17:33:15.029 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction test 2024-04-15T17:33:15.095 INFO:teuthology.orchestra.run.smithi092.stdout: Preparing : 1/1 2024-04-15T17:33:15.161 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/36 2024-04-15T17:33:15.202 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/36 2024-04-15T17:33:15.219 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction test succeeded. 2024-04-15T17:33:15.220 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction 2024-04-15T17:33:15.230 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/36 2024-04-15T17:33:15.301 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/36 2024-04-15T17:33:15.345 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : luarocks-3.9.2-1.el9.noarch 5/36 2024-04-15T17:33:15.378 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/36 2024-04-15T17:33:15.431 INFO:teuthology.orchestra.run.smithi118.stdout:(1/36): ceph-19.0.0-3080.gc2d8c315.el9.x86_64.r 22 kB/s | 6.6 kB 00:00 2024-04-15T17:33:15.470 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/36 2024-04-15T17:33:15.540 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/36 2024-04-15T17:33:15.581 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-webob-1.8.7-6.el9.noarch 9/36 2024-04-15T17:33:15.652 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/36 2024-04-15T17:33:15.706 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-urllib3-1.26.5-5.el9.noarch 11/36 2024-04-15T17:33:15.753 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 12/36 2024-04-15T17:33:15.800 INFO:teuthology.orchestra.run.smithi055.stdout: Preparing : 1/1 2024-04-15T17:33:15.801 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-ply-3.11-14.el9.noarch 13/36 2024-04-15T17:33:15.858 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 14/36 2024-04-15T17:33:15.869 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-04-15T17:33:15.914 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-04-15T17:33:15.961 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-04-15T17:33:15.997 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-04-15T17:33:16.045 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 15/36 2024-04-15T17:33:16.099 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 16/36 2024-04-15T17:33:16.112 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-04-15T17:33:16.146 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 17/36 2024-04-15T17:33:16.189 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 18/36 2024-04-15T17:33:16.218 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 19/36 2024-04-15T17:33:16.248 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-04-15T17:33:16.295 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 20/36 2024-04-15T17:33:16.329 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-15T17:33:16.331 INFO:teuthology.orchestra.run.smithi118.stdout:(2/36): ceph-mgr-19.0.0-3080.gc2d8c315.el9.x86_ 1.3 MB/s | 1.5 MB 00:01 2024-04-15T17:33:16.349 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-04-15T17:33:16.362 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 22/36 2024-04-15T17:33:16.395 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-04-15T17:33:16.403 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 23/36 2024-04-15T17:33:16.431 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-04-15T17:33:16.437 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 24/36 2024-04-15T17:33:16.464 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : ceph-prometheus-alerts-2:19.0.0-3080.gc2d8c315.el9 10/12 2024-04-15T17:33:16.472 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 25/36 2024-04-15T17:33:16.561 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 26/36 2024-04-15T17:33:16.603 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 27/36 2024-04-15T17:33:16.684 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 28/36 2024-04-15T17:33:16.841 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 29/36 2024-04-15T17:33:16.963 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-15T17:33:16.965 INFO:teuthology.orchestra.run.smithi118.stdout:(3/36): ceph-mon-19.0.0-3080.gc2d8c315.el9.x86_ 3.1 MB/s | 4.7 MB 00:01 2024-04-15T17:33:17.090 INFO:teuthology.orchestra.run.smithi118.stdout:(4/36): ceph-mds-19.0.0-3080.gc2d8c315.el9.x86_ 1.2 MB/s | 2.4 MB 00:01 2024-04-15T17:33:17.129 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : ceph-mgr-modules-core-2:19.0.0-3080.gc2d8c315.el9. 31/36 2024-04-15T17:33:17.158 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : ceph-mgr-2:19.0.0-3080.gc2d8c315.el9.x86_64 32/36 2024-04-15T17:33:17.184 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: ceph-mgr-2:19.0.0-3080.gc2d8c315.el9.x86_64 32/36 2024-04-15T17:33:17.184 INFO:teuthology.orchestra.run.smithi092.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T17:33:17.184 INFO:teuthology.orchestra.run.smithi092.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-04-15T17:33:17.184 INFO:teuthology.orchestra.run.smithi092.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-15T17:33:17.184 INFO:teuthology.orchestra.run.smithi092.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-15T17:33:17.184 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:17.224 INFO:teuthology.orchestra.run.smithi118.stdout:(5/36): lua-5.4.4-4.el9.x86_64.rpm 1.4 MB/s | 187 kB 00:00 2024-04-15T17:33:17.266 INFO:teuthology.orchestra.run.smithi118.stdout:(6/36): python3-mako-1.1.4-6.el9.noarch.rpm 3.4 MB/s | 144 kB 00:00 2024-04-15T17:33:17.299 INFO:teuthology.orchestra.run.smithi118.stdout:(7/36): python3-markupsafe-1.1.1-12.el9.x86_64. 944 kB/s | 32 kB 00:00 2024-04-15T17:33:17.341 INFO:teuthology.orchestra.run.smithi118.stdout:(8/36): ceph-mgr-modules-core-19.0.0-3080.gc2d8 661 kB/s | 249 kB 00:00 2024-04-15T17:33:17.367 INFO:teuthology.orchestra.run.smithi118.stdout:(9/36): python3-pytz-2021.1-5.el9.noarch.rpm 705 kB/s | 47 kB 00:00 2024-04-15T17:33:17.392 INFO:teuthology.orchestra.run.smithi118.stdout:(10/36): python3-toml-0.10.2-6.el9.noarch.rpm 770 kB/s | 39 kB 00:00 2024-04-15T17:33:17.434 INFO:teuthology.orchestra.run.smithi118.stdout:(11/36): python3-cffi-1.14.5-5.el9.x86_64.rpm 3.5 MB/s | 241 kB 00:00 2024-04-15T17:33:17.501 INFO:teuthology.orchestra.run.smithi118.stdout:(12/36): python3-cryptography-36.0.1-4.el9.x86_ 11 MB/s | 1.1 MB 00:00 2024-04-15T17:33:17.526 INFO:teuthology.orchestra.run.smithi118.stdout:(13/36): python3-ply-3.11-14.el9.noarch.rpm 1.1 MB/s | 103 kB 00:00 2024-04-15T17:33:17.551 INFO:teuthology.orchestra.run.smithi118.stdout:(14/36): python3-pycparser-2.20-6.el9.noarch.rp 2.4 MB/s | 124 kB 00:00 2024-04-15T17:33:17.577 INFO:teuthology.orchestra.run.smithi118.stdout:(15/36): python3-urllib3-1.26.5-5.el9.noarch.rp 3.7 MB/s | 187 kB 00:00 2024-04-15T17:33:17.586 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : ceph-grafana-dashboards-2:19.0.0-3080.gc2d8c315.el 11/12 2024-04-15T17:33:17.621 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : ceph-mgr-dashboard-2:19.0.0-3080.gc2d8c315.el9.noa 12/12 2024-04-15T17:33:17.669 INFO:teuthology.orchestra.run.smithi118.stdout:(16/36): lua-devel-5.4.4-4.el9.x86_64.rpm 244 kB/s | 22 kB 00:00 2024-04-15T17:33:18.169 INFO:teuthology.orchestra.run.smithi118.stdout:(17/36): ceph-osd-19.0.0-3080.gc2d8c315.el9.x86 9.2 MB/s | 17 MB 00:01 2024-04-15T17:33:18.194 INFO:teuthology.orchestra.run.smithi118.stdout:(18/36): luarocks-3.9.2-1.el9.noarch.rpm 288 kB/s | 151 kB 00:00 2024-04-15T17:33:18.511 INFO:teuthology.orchestra.run.smithi118.stdout:(19/36): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 127 kB/s | 43 kB 00:00 2024-04-15T17:33:18.562 INFO:teuthology.orchestra.run.smithi118.stdout:(20/36): python3-requests-2.25.1-8.el9.noarch.r 124 kB/s | 125 kB 00:01 2024-04-15T17:33:18.642 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : ceph-osd-2:19.0.0-3080.gc2d8c315.el9.x86_64 33/36 2024-04-15T17:33:18.669 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: ceph-osd-2:19.0.0-3080.gc2d8c315.el9.x86_64 33/36 2024-04-15T17:33:18.669 INFO:teuthology.orchestra.run.smithi092.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T17:33:18.669 INFO:teuthology.orchestra.run.smithi092.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-04-15T17:33:18.669 INFO:teuthology.orchestra.run.smithi092.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-15T17:33:18.669 INFO:teuthology.orchestra.run.smithi092.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-15T17:33:18.669 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:18.712 INFO:teuthology.orchestra.run.smithi118.stdout:(21/36): python3-cheroot-8.6.0-4.el9.noarch.rpm 332 kB/s | 172 kB 00:00 2024-04-15T17:33:18.737 INFO:teuthology.orchestra.run.smithi118.stdout:(22/36): python3-jaraco-8.2.1-3.el9.noarch.rpm 61 kB/s | 11 kB 00:00 2024-04-15T17:33:18.974 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.0.0-3080.gc2d8c315.el9.noa 12/12 2024-04-15T17:33:18.975 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : ceph-grafana-dashboards-2:19.0.0-3080.gc2d8c315.el 1/12 2024-04-15T17:33:18.975 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : ceph-mgr-dashboard-2:19.0.0-3080.gc2d8c315.el9.noa 2/12 2024-04-15T17:33:18.975 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : ceph-prometheus-alerts-2:19.0.0-3080.gc2d8c315.el9 3/12 2024-04-15T17:33:18.975 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-04-15T17:33:18.975 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-04-15T17:33:18.975 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-04-15T17:33:18.976 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-04-15T17:33:18.976 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-04-15T17:33:18.976 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-04-15T17:33:18.976 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-04-15T17:33:18.976 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-04-15T17:33:18.987 INFO:teuthology.orchestra.run.smithi118.stdout:(23/36): python3-jaraco-classes-3.2.1-5.el9.noa 64 kB/s | 18 kB 00:00 2024-04-15T17:33:19.004 INFO:teuthology.orchestra.run.smithi118.stdout:(24/36): python3-jaraco-collections-3.0.0-8.el9 87 kB/s | 23 kB 00:00 2024-04-15T17:33:19.030 INFO:teuthology.orchestra.run.smithi118.stdout:(25/36): python3-cherrypy-18.6.1-2.el9.noarch.r 692 kB/s | 358 kB 00:00 2024-04-15T17:33:19.126 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : ceph-mon-2:19.0.0-3080.gc2d8c315.el9.x86_64 34/36 2024-04-15T17:33:19.150 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: ceph-mon-2:19.0.0-3080.gc2d8c315.el9.x86_64 34/36 2024-04-15T17:33:19.150 INFO:teuthology.orchestra.run.smithi092.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T17:33:19.150 INFO:teuthology.orchestra.run.smithi092.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-04-15T17:33:19.151 INFO:teuthology.orchestra.run.smithi092.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-15T17:33:19.151 INFO:teuthology.orchestra.run.smithi092.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-15T17:33:19.151 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:19.263 INFO:teuthology.orchestra.run.smithi118.stdout:(26/36): python3-jaraco-functools-3.5.0-2.el9.n 70 kB/s | 19 kB 00:00 2024-04-15T17:33:19.280 INFO:teuthology.orchestra.run.smithi118.stdout:(27/36): python3-jaraco-text-3.2.0-6.el9.noarch 71 kB/s | 20 kB 00:00 2024-04-15T17:33:19.352 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-04-15T17:33:19.352 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:19.352 INFO:teuthology.orchestra.run.smithi055.stdout:Installed: 2024-04-15T17:33:19.353 INFO:teuthology.orchestra.run.smithi055.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-04-15T17:33:19.353 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-grafana-dashboards-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:33:19.353 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-mgr-dashboard-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:33:19.353 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-prometheus-alerts-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:33:19.353 INFO:teuthology.orchestra.run.smithi055.stdout: grpc-data-1.46.7-10.el9.noarch 2024-04-15T17:33:19.353 INFO:teuthology.orchestra.run.smithi055.stdout: protobuf-3.14.0-13.el9.x86_64 2024-04-15T17:33:19.353 INFO:teuthology.orchestra.run.smithi055.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-04-15T17:33:19.353 INFO:teuthology.orchestra.run.smithi055.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-04-15T17:33:19.353 INFO:teuthology.orchestra.run.smithi055.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-04-15T17:33:19.353 INFO:teuthology.orchestra.run.smithi055.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-04-15T17:33:19.353 INFO:teuthology.orchestra.run.smithi055.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-04-15T17:33:19.353 INFO:teuthology.orchestra.run.smithi055.stdout: python3-routes-2.5.1-5.el9.noarch 2024-04-15T17:33:19.353 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:19.353 INFO:teuthology.orchestra.run.smithi055.stdout:Complete! 2024-04-15T17:33:19.372 INFO:teuthology.orchestra.run.smithi118.stdout:(28/36): python3-logutils-0.3.5-21.el9.noarch.r 135 kB/s | 46 kB 00:00 2024-04-15T17:33:19.376 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : ceph-mds-2:19.0.0-3080.gc2d8c315.el9.x86_64 35/36 2024-04-15T17:33:19.400 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: ceph-mds-2:19.0.0-3080.gc2d8c315.el9.x86_64 35/36 2024-04-15T17:33:19.400 INFO:teuthology.orchestra.run.smithi092.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T17:33:19.400 INFO:teuthology.orchestra.run.smithi092.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-04-15T17:33:19.400 INFO:teuthology.orchestra.run.smithi092.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-15T17:33:19.400 INFO:teuthology.orchestra.run.smithi092.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-15T17:33:19.401 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:19.466 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : ceph-2:19.0.0-3080.gc2d8c315.el9.x86_64 36/36 2024-04-15T17:33:19.582 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum -y install ceph-mgr-diskprediction-local 2024-04-15T17:33:19.614 INFO:teuthology.orchestra.run.smithi118.stdout:(29/36): python3-more-itertools-8.12.0-2.el9.no 225 kB/s | 79 kB 00:00 2024-04-15T17:33:19.631 INFO:teuthology.orchestra.run.smithi118.stdout:(30/36): python3-portend-3.1.0-2.el9.noarch.rpm 63 kB/s | 16 kB 00:00 2024-04-15T17:33:19.815 INFO:teuthology.orchestra.run.smithi118.stdout:(31/36): python3-pecan-1.4.2-3.el9.noarch.rpm 510 kB/s | 272 kB 00:00 2024-04-15T17:33:19.898 INFO:teuthology.orchestra.run.smithi118.stdout:(32/36): python3-tempora-5.0.0-2.el9.noarch.rpm 134 kB/s | 36 kB 00:00 2024-04-15T17:33:19.957 INFO:teuthology.orchestra.run.smithi118.stdout:(33/36): python3-pyOpenSSL-21.0.0-1.el9.noarch. 263 kB/s | 90 kB 00:00 2024-04-15T17:33:20.180 INFO:teuthology.orchestra.run.smithi055.stdout:Last metadata expiration check: 0:01:11 ago on Mon 15 Apr 2024 05:32:09 PM UTC. 2024-04-15T17:33:20.257 INFO:teuthology.orchestra.run.smithi118.stdout:(34/36): python3-zc-lockfile-2.0-10.el9.noarch. 67 kB/s | 20 kB 00:00 2024-04-15T17:33:20.316 INFO:teuthology.orchestra.run.smithi118.stdout:(35/36): python3-webob-1.8.7-6.el9.noarch.rpm 459 kB/s | 230 kB 00:00 2024-04-15T17:33:20.346 INFO:teuthology.orchestra.run.smithi055.stdout:Dependencies resolved. 2024-04-15T17:33:20.346 INFO:teuthology.orchestra.run.smithi055.stdout:============================================================================================ 2024-04-15T17:33:20.347 INFO:teuthology.orchestra.run.smithi055.stdout: Package Arch Version Repository Size 2024-04-15T17:33:20.347 INFO:teuthology.orchestra.run.smithi055.stdout:============================================================================================ 2024-04-15T17:33:20.347 INFO:teuthology.orchestra.run.smithi055.stdout:Installing: 2024-04-15T17:33:20.347 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-mgr-diskprediction-local noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 7.4 M 2024-04-15T17:33:20.347 INFO:teuthology.orchestra.run.smithi055.stdout:Installing dependencies: 2024-04-15T17:33:20.347 INFO:teuthology.orchestra.run.smithi055.stdout: flexiblas x86_64 3.0.4-8.el9 CentOS-AppStream 32 k 2024-04-15T17:33:20.347 INFO:teuthology.orchestra.run.smithi055.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 CentOS-AppStream 3.0 M 2024-04-15T17:33:20.347 INFO:teuthology.orchestra.run.smithi055.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 CentOS-AppStream 17 k 2024-04-15T17:33:20.347 INFO:teuthology.orchestra.run.smithi055.stdout: libgfortran x86_64 11.4.1-3.el9 baseos 803 k 2024-04-15T17:33:20.347 INFO:teuthology.orchestra.run.smithi055.stdout: libquadmath x86_64 11.4.1-3.el9 baseos 195 k 2024-04-15T17:33:20.347 INFO:teuthology.orchestra.run.smithi055.stdout: openblas x86_64 0.3.21-2.el9 CentOS-AppStream 34 k 2024-04-15T17:33:20.347 INFO:teuthology.orchestra.run.smithi055.stdout: openblas-openmp x86_64 0.3.21-2.el9 CentOS-AppStream 4.7 M 2024-04-15T17:33:20.348 INFO:teuthology.orchestra.run.smithi055.stdout: python3-devel x86_64 3.9.17-2.el9 appstream 245 k 2024-04-15T17:33:20.348 INFO:teuthology.orchestra.run.smithi055.stdout: python3-numpy x86_64 1:1.20.1-5.el9 CentOS-AppStream 4.8 M 2024-04-15T17:33:20.348 INFO:teuthology.orchestra.run.smithi055.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 CentOS-AppStream 217 k 2024-04-15T17:33:20.348 INFO:teuthology.orchestra.run.smithi055.stdout: python3-scipy x86_64 1.6.2-8.el9 CentOS-AppStream 16 M 2024-04-15T17:33:20.348 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:20.348 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction Summary 2024-04-15T17:33:20.348 INFO:teuthology.orchestra.run.smithi055.stdout:============================================================================================ 2024-04-15T17:33:20.348 INFO:teuthology.orchestra.run.smithi055.stdout:Install 12 Packages 2024-04-15T17:33:20.348 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:20.349 INFO:teuthology.orchestra.run.smithi055.stdout:Total download size: 37 M 2024-04-15T17:33:20.349 INFO:teuthology.orchestra.run.smithi055.stdout:Installed size: 209 M 2024-04-15T17:33:20.349 INFO:teuthology.orchestra.run.smithi055.stdout:Downloading Packages: 2024-04-15T17:33:20.491 INFO:teuthology.orchestra.run.smithi118.stdout:(36/36): python3-werkzeug-2.0.3-3.el9.1.noarch. 721 kB/s | 427 kB 00:00 2024-04-15T17:33:20.495 INFO:teuthology.orchestra.run.smithi118.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:33:20.496 INFO:teuthology.orchestra.run.smithi118.stdout:Total 4.9 MB/s | 30 MB 00:06 2024-04-15T17:33:20.520 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction check 2024-04-15T17:33:20.562 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction check succeeded. 2024-04-15T17:33:20.562 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction test 2024-04-15T17:33:20.986 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction test succeeded. 2024-04-15T17:33:20.986 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction 2024-04-15T17:33:20.993 INFO:teuthology.orchestra.run.smithi055.stdout:(1/12): flexiblas-3.0.4-8.el9.x86_64.rpm 222 kB/s | 32 kB 00:00 2024-04-15T17:33:21.035 INFO:teuthology.orchestra.run.smithi055.stdout:(2/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 425 kB/s | 17 kB 00:00 2024-04-15T17:33:21.094 INFO:teuthology.orchestra.run.smithi055.stdout:(3/12): openblas-0.3.21-2.el9.x86_64.rpm 599 kB/s | 34 kB 00:00 2024-04-15T17:33:21.144 INFO:teuthology.orchestra.run.smithi055.stdout:(4/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 10 MB/s | 3.0 MB 00:00 2024-04-15T17:33:21.269 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: ceph-2:19.0.0-3080.gc2d8c315.el9.x86_64 36/36 2024-04-15T17:33:21.269 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : ceph-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/36 2024-04-15T17:33:21.269 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : ceph-mds-2:19.0.0-3080.gc2d8c315.el9.x86_64 2/36 2024-04-15T17:33:21.269 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : ceph-mgr-2:19.0.0-3080.gc2d8c315.el9.x86_64 3/36 2024-04-15T17:33:21.269 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : ceph-mon-2:19.0.0-3080.gc2d8c315.el9.x86_64 4/36 2024-04-15T17:33:21.269 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : ceph-osd-2:19.0.0-3080.gc2d8c315.el9.x86_64 5/36 2024-04-15T17:33:21.269 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : ceph-mgr-modules-core-2:19.0.0-3080.gc2d8c315.el9. 6/36 2024-04-15T17:33:21.269 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : lua-5.4.4-4.el9.x86_64 7/36 2024-04-15T17:33:21.269 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 8/36 2024-04-15T17:33:21.269 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 9/36 2024-04-15T17:33:21.269 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 10/36 2024-04-15T17:33:21.270 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 11/36 2024-04-15T17:33:21.270 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 12/36 2024-04-15T17:33:21.270 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 13/36 2024-04-15T17:33:21.270 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-ply-3.11-14.el9.noarch 14/36 2024-04-15T17:33:21.270 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 15/36 2024-04-15T17:33:21.270 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-urllib3-1.26.5-5.el9.noarch 16/36 2024-04-15T17:33:21.270 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 17/36 2024-04-15T17:33:21.270 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 18/36 2024-04-15T17:33:21.270 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : luarocks-3.9.2-1.el9.noarch 19/36 2024-04-15T17:33:21.270 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 20/36 2024-04-15T17:33:21.271 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-15T17:33:21.271 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 22/36 2024-04-15T17:33:21.271 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 23/36 2024-04-15T17:33:21.271 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 24/36 2024-04-15T17:33:21.271 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 25/36 2024-04-15T17:33:21.271 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 26/36 2024-04-15T17:33:21.271 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 27/36 2024-04-15T17:33:21.271 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 28/36 2024-04-15T17:33:21.272 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 29/36 2024-04-15T17:33:21.272 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-15T17:33:21.272 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 31/36 2024-04-15T17:33:21.272 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 32/36 2024-04-15T17:33:21.272 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 33/36 2024-04-15T17:33:21.272 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-webob-1.8.7-6.el9.noarch 34/36 2024-04-15T17:33:21.273 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 35/36 2024-04-15T17:33:21.444 INFO:teuthology.orchestra.run.smithi055.stdout:(5/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 16 MB/s | 4.8 MB 00:00 2024-04-15T17:33:21.520 INFO:teuthology.orchestra.run.smithi055.stdout:(6/12): openblas-openmp-0.3.21-2.el9.x86_64.rpm 11 MB/s | 4.7 MB 00:00 2024-04-15T17:33:21.545 INFO:teuthology.orchestra.run.smithi055.stdout:(7/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 2.1 MB/s | 217 kB 00:00 2024-04-15T17:33:22.029 INFO:teuthology.orchestra.run.smithi055.stdout:(8/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 31 MB/s | 16 MB 00:00 2024-04-15T17:33:22.087 INFO:teuthology.orchestra.run.smithi055.stdout:(9/12): libgfortran-11.4.1-3.el9.x86_64.rpm 1.4 MB/s | 803 kB 00:00 2024-04-15T17:33:22.246 INFO:teuthology.orchestra.run.smithi055.stdout:(10/12): libquadmath-11.4.1-3.el9.x86_64.rpm 901 kB/s | 195 kB 00:00 2024-04-15T17:33:22.318 INFO:teuthology.orchestra.run.smithi118.stdout: Preparing : 1/1 2024-04-15T17:33:22.327 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 36/36 2024-04-15T17:33:22.327 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:22.327 INFO:teuthology.orchestra.run.smithi092.stdout:Installed: 2024-04-15T17:33:22.328 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:22.328 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-mds-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:22.328 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-mgr-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:22.328 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-mgr-modules-core-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:33:22.328 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-mon-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:22.328 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-osd-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:22.328 INFO:teuthology.orchestra.run.smithi092.stdout: lua-5.4.4-4.el9.x86_64 2024-04-15T17:33:22.328 INFO:teuthology.orchestra.run.smithi092.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-04-15T17:33:22.328 INFO:teuthology.orchestra.run.smithi092.stdout: luarocks-3.9.2-1.el9.noarch 2024-04-15T17:33:22.328 INFO:teuthology.orchestra.run.smithi092.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-04-15T17:33:22.328 INFO:teuthology.orchestra.run.smithi092.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-04-15T17:33:22.328 INFO:teuthology.orchestra.run.smithi092.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-04-15T17:33:22.329 INFO:teuthology.orchestra.run.smithi092.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-04-15T17:33:22.329 INFO:teuthology.orchestra.run.smithi092.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-04-15T17:33:22.329 INFO:teuthology.orchestra.run.smithi092.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-04-15T17:33:22.329 INFO:teuthology.orchestra.run.smithi092.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-04-15T17:33:22.329 INFO:teuthology.orchestra.run.smithi092.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-04-15T17:33:22.329 INFO:teuthology.orchestra.run.smithi092.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-04-15T17:33:22.329 INFO:teuthology.orchestra.run.smithi092.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-04-15T17:33:22.329 INFO:teuthology.orchestra.run.smithi092.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-04-15T17:33:22.329 INFO:teuthology.orchestra.run.smithi092.stdout: python3-mako-1.1.4-6.el9.noarch 2024-04-15T17:33:22.329 INFO:teuthology.orchestra.run.smithi092.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-04-15T17:33:22.329 INFO:teuthology.orchestra.run.smithi092.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-04-15T17:33:22.329 INFO:teuthology.orchestra.run.smithi092.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-04-15T17:33:22.329 INFO:teuthology.orchestra.run.smithi092.stdout: python3-ply-3.11-14.el9.noarch 2024-04-15T17:33:22.329 INFO:teuthology.orchestra.run.smithi092.stdout: python3-portend-3.1.0-2.el9.noarch 2024-04-15T17:33:22.330 INFO:teuthology.orchestra.run.smithi092.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-04-15T17:33:22.330 INFO:teuthology.orchestra.run.smithi092.stdout: python3-pycparser-2.20-6.el9.noarch 2024-04-15T17:33:22.330 INFO:teuthology.orchestra.run.smithi092.stdout: python3-pytz-2021.1-5.el9.noarch 2024-04-15T17:33:22.330 INFO:teuthology.orchestra.run.smithi092.stdout: python3-requests-2.25.1-8.el9.noarch 2024-04-15T17:33:22.330 INFO:teuthology.orchestra.run.smithi092.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-04-15T17:33:22.330 INFO:teuthology.orchestra.run.smithi092.stdout: python3-toml-0.10.2-6.el9.noarch 2024-04-15T17:33:22.330 INFO:teuthology.orchestra.run.smithi092.stdout: python3-urllib3-1.26.5-5.el9.noarch 2024-04-15T17:33:22.330 INFO:teuthology.orchestra.run.smithi092.stdout: python3-webob-1.8.7-6.el9.noarch 2024-04-15T17:33:22.330 INFO:teuthology.orchestra.run.smithi092.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-04-15T17:33:22.330 INFO:teuthology.orchestra.run.smithi092.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-04-15T17:33:22.330 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:22.330 INFO:teuthology.orchestra.run.smithi092.stdout:Complete! 2024-04-15T17:33:22.379 INFO:teuthology.orchestra.run.smithi055.stdout:(11/12): ceph-mgr-diskprediction-local-19.0.0-3 4.8 MB/s | 7.4 MB 00:01 2024-04-15T17:33:22.385 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/36 2024-04-15T17:33:22.425 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/36 2024-04-15T17:33:22.463 INFO:teuthology.orchestra.run.smithi055.stdout:(12/12): python3-devel-3.9.17-2.el9.x86_64.rpm 701 kB/s | 245 kB 00:00 2024-04-15T17:33:22.463 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/36 2024-04-15T17:33:22.467 INFO:teuthology.orchestra.run.smithi055.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:33:22.467 INFO:teuthology.orchestra.run.smithi055.stdout:Total 18 MB/s | 37 MB 00:02 2024-04-15T17:33:22.508 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction check 2024-04-15T17:33:22.526 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/36 2024-04-15T17:33:22.532 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction check succeeded. 2024-04-15T17:33:22.532 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction test 2024-04-15T17:33:22.587 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : luarocks-3.9.2-1.el9.noarch 5/36 2024-04-15T17:33:22.619 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/36 2024-04-15T17:33:22.689 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum -y install ceph-base 2024-04-15T17:33:22.711 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/36 2024-04-15T17:33:22.799 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/36 2024-04-15T17:33:22.848 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-webob-1.8.7-6.el9.noarch 9/36 2024-04-15T17:33:22.898 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction test succeeded. 2024-04-15T17:33:22.898 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction 2024-04-15T17:33:22.920 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/36 2024-04-15T17:33:22.974 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-urllib3-1.26.5-5.el9.noarch 11/36 2024-04-15T17:33:23.012 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 12/36 2024-04-15T17:33:23.061 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-ply-3.11-14.el9.noarch 13/36 2024-04-15T17:33:23.117 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 14/36 2024-04-15T17:33:23.272 INFO:teuthology.orchestra.run.smithi092.stdout:Last metadata expiration check: 0:01:02 ago on Mon 15 Apr 2024 05:32:21 PM UTC. 2024-04-15T17:33:23.306 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 15/36 2024-04-15T17:33:23.371 INFO:teuthology.orchestra.run.smithi092.stdout:Package ceph-base-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:33:23.383 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 16/36 2024-04-15T17:33:23.413 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 17/36 2024-04-15T17:33:23.424 INFO:teuthology.orchestra.run.smithi092.stdout:Dependencies resolved. 2024-04-15T17:33:23.425 INFO:teuthology.orchestra.run.smithi092.stdout:Nothing to do. 2024-04-15T17:33:23.425 INFO:teuthology.orchestra.run.smithi092.stdout:Complete! 2024-04-15T17:33:23.456 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 18/36 2024-04-15T17:33:23.486 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 19/36 2024-04-15T17:33:23.493 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum -y install cephadm 2024-04-15T17:33:23.592 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 20/36 2024-04-15T17:33:23.630 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-15T17:33:23.646 INFO:teuthology.orchestra.run.smithi055.stdout: Preparing : 1/1 2024-04-15T17:33:23.663 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 22/36 2024-04-15T17:33:23.704 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 23/36 2024-04-15T17:33:23.720 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : libquadmath-11.4.1-3.el9.x86_64 1/12 2024-04-15T17:33:23.739 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 24/36 2024-04-15T17:33:23.759 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : libgfortran-11.4.1-3.el9.x86_64 2/12 2024-04-15T17:33:23.774 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 25/36 2024-04-15T17:33:23.858 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 3/12 2024-04-15T17:33:23.863 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 26/36 2024-04-15T17:33:23.896 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-devel-3.9.17-2.el9.x86_64 4/12 2024-04-15T17:33:23.897 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 27/36 2024-04-15T17:33:23.968 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 28/36 2024-04-15T17:33:24.059 INFO:teuthology.orchestra.run.smithi092.stdout:Last metadata expiration check: 0:01:03 ago on Mon 15 Apr 2024 05:32:21 PM UTC. 2024-04-15T17:33:24.072 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-15T17:33:24.103 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-15T17:33:24.105 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 29/36 2024-04-15T17:33:24.185 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-04-15T17:33:24.210 INFO:teuthology.orchestra.run.smithi092.stdout:Dependencies resolved. 2024-04-15T17:33:24.210 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:33:24.210 INFO:teuthology.orchestra.run.smithi092.stdout: Package Arch Version Repository Size 2024-04-15T17:33:24.211 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:33:24.211 INFO:teuthology.orchestra.run.smithi092.stdout:Installing: 2024-04-15T17:33:24.211 INFO:teuthology.orchestra.run.smithi092.stdout: cephadm noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 762 k 2024-04-15T17:33:24.211 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:24.211 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction Summary 2024-04-15T17:33:24.211 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:33:24.211 INFO:teuthology.orchestra.run.smithi092.stdout:Install 1 Package 2024-04-15T17:33:24.211 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:24.211 INFO:teuthology.orchestra.run.smithi092.stdout:Total download size: 762 k 2024-04-15T17:33:24.211 INFO:teuthology.orchestra.run.smithi092.stdout:Installed size: 769 k 2024-04-15T17:33:24.211 INFO:teuthology.orchestra.run.smithi092.stdout:Downloading Packages: 2024-04-15T17:33:24.225 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-15T17:33:24.423 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : ceph-mgr-modules-core-2:19.0.0-3080.gc2d8c315.el9. 31/36 2024-04-15T17:33:24.460 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : ceph-mgr-2:19.0.0-3080.gc2d8c315.el9.x86_64 32/36 2024-04-15T17:33:24.485 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: ceph-mgr-2:19.0.0-3080.gc2d8c315.el9.x86_64 32/36 2024-04-15T17:33:24.485 INFO:teuthology.orchestra.run.smithi118.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T17:33:24.486 INFO:teuthology.orchestra.run.smithi118.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-04-15T17:33:24.486 INFO:teuthology.orchestra.run.smithi118.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-15T17:33:24.486 INFO:teuthology.orchestra.run.smithi118.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-15T17:33:24.486 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:24.824 INFO:teuthology.orchestra.run.smithi092.stdout:cephadm-19.0.0-3080.gc2d8c315.el9.noarch.rpm 1.2 MB/s | 762 kB 00:00 2024-04-15T17:33:24.825 INFO:teuthology.orchestra.run.smithi092.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:33:24.825 INFO:teuthology.orchestra.run.smithi092.stdout:Total 1.2 MB/s | 762 kB 00:00 2024-04-15T17:33:24.825 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction check 2024-04-15T17:33:24.831 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction check succeeded. 2024-04-15T17:33:24.831 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction test 2024-04-15T17:33:24.836 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction test succeeded. 2024-04-15T17:33:24.837 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction 2024-04-15T17:33:24.874 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-04-15T17:33:24.914 INFO:teuthology.orchestra.run.smithi092.stdout: Preparing : 1/1 2024-04-15T17:33:24.987 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-04-15T17:33:25.449 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 1/1 2024-04-15T17:33:25.537 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 1/1 2024-04-15T17:33:25.944 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : ceph-osd-2:19.0.0-3080.gc2d8c315.el9.x86_64 33/36 2024-04-15T17:33:25.956 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 1/1 2024-04-15T17:33:25.971 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: ceph-osd-2:19.0.0-3080.gc2d8c315.el9.x86_64 33/36 2024-04-15T17:33:25.972 INFO:teuthology.orchestra.run.smithi118.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T17:33:25.972 INFO:teuthology.orchestra.run.smithi118.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-04-15T17:33:25.972 INFO:teuthology.orchestra.run.smithi118.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-15T17:33:25.972 INFO:teuthology.orchestra.run.smithi118.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-15T17:33:25.972 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:26.235 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 1/1 2024-04-15T17:33:26.235 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:26.235 INFO:teuthology.orchestra.run.smithi092.stdout:Installed: 2024-04-15T17:33:26.235 INFO:teuthology.orchestra.run.smithi092.stdout: cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:33:26.235 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:26.235 INFO:teuthology.orchestra.run.smithi092.stdout:Complete! 2024-04-15T17:33:26.315 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-04-15T17:33:26.445 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : ceph-mon-2:19.0.0-3080.gc2d8c315.el9.x86_64 34/36 2024-04-15T17:33:26.469 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum -y install ceph-immutable-object-cache 2024-04-15T17:33:26.470 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: ceph-mon-2:19.0.0-3080.gc2d8c315.el9.x86_64 34/36 2024-04-15T17:33:26.470 INFO:teuthology.orchestra.run.smithi118.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T17:33:26.470 INFO:teuthology.orchestra.run.smithi118.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-04-15T17:33:26.471 INFO:teuthology.orchestra.run.smithi118.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-15T17:33:26.471 INFO:teuthology.orchestra.run.smithi118.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-15T17:33:26.471 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:26.713 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : ceph-mds-2:19.0.0-3080.gc2d8c315.el9.x86_64 35/36 2024-04-15T17:33:26.736 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: ceph-mds-2:19.0.0-3080.gc2d8c315.el9.x86_64 35/36 2024-04-15T17:33:26.736 INFO:teuthology.orchestra.run.smithi118.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T17:33:26.737 INFO:teuthology.orchestra.run.smithi118.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-04-15T17:33:26.737 INFO:teuthology.orchestra.run.smithi118.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-15T17:33:26.737 INFO:teuthology.orchestra.run.smithi118.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-15T17:33:26.737 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:26.810 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : ceph-2:19.0.0-3080.gc2d8c315.el9.x86_64 36/36 2024-04-15T17:33:27.056 INFO:teuthology.orchestra.run.smithi092.stdout:Last metadata expiration check: 0:01:06 ago on Mon 15 Apr 2024 05:32:21 PM UTC. 2024-04-15T17:33:27.214 INFO:teuthology.orchestra.run.smithi092.stdout:Dependencies resolved. 2024-04-15T17:33:27.215 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:33:27.215 INFO:teuthology.orchestra.run.smithi092.stdout: Package Arch Version Repo Size 2024-04-15T17:33:27.215 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:33:27.215 INFO:teuthology.orchestra.run.smithi092.stdout:Installing: 2024-04-15T17:33:27.215 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-immutable-object-cache x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 145 k 2024-04-15T17:33:27.215 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:27.215 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction Summary 2024-04-15T17:33:27.215 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:33:27.215 INFO:teuthology.orchestra.run.smithi092.stdout:Install 1 Package 2024-04-15T17:33:27.215 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:27.215 INFO:teuthology.orchestra.run.smithi092.stdout:Total download size: 145 k 2024-04-15T17:33:27.215 INFO:teuthology.orchestra.run.smithi092.stdout:Installed size: 435 k 2024-04-15T17:33:27.215 INFO:teuthology.orchestra.run.smithi092.stdout:Downloading Packages: 2024-04-15T17:33:27.387 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-04-15T17:33:27.419 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : ceph-mgr-diskprediction-local-2:19.0.0-3080.gc2d8c 12/12 2024-04-15T17:33:27.438 INFO:teuthology.orchestra.run.smithi092.stdout:ceph-immutable-object-cache-19.0.0-3080.gc2d8c3 652 kB/s | 145 kB 00:00 2024-04-15T17:33:27.439 INFO:teuthology.orchestra.run.smithi092.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:33:27.439 INFO:teuthology.orchestra.run.smithi092.stdout:Total 647 kB/s | 145 kB 00:00 2024-04-15T17:33:27.439 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction check 2024-04-15T17:33:27.447 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction check succeeded. 2024-04-15T17:33:27.447 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction test 2024-04-15T17:33:27.498 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction test succeeded. 2024-04-15T17:33:27.499 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction 2024-04-15T17:33:27.643 INFO:teuthology.orchestra.run.smithi092.stdout: Preparing : 1/1 2024-04-15T17:33:27.714 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : ceph-immutable-object-cache-2:19.0.0-3080.gc2d8c315. 1/1 2024-04-15T17:33:27.740 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.0.0-3080.gc2d8c315. 1/1 2024-04-15T17:33:27.740 INFO:teuthology.orchestra.run.smithi092.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T17:33:27.740 INFO:teuthology.orchestra.run.smithi092.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-04-15T17:33:27.740 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:28.612 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: ceph-2:19.0.0-3080.gc2d8c315.el9.x86_64 36/36 2024-04-15T17:33:28.612 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : ceph-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/36 2024-04-15T17:33:28.612 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : ceph-mds-2:19.0.0-3080.gc2d8c315.el9.x86_64 2/36 2024-04-15T17:33:28.612 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : ceph-mgr-2:19.0.0-3080.gc2d8c315.el9.x86_64 3/36 2024-04-15T17:33:28.612 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : ceph-mon-2:19.0.0-3080.gc2d8c315.el9.x86_64 4/36 2024-04-15T17:33:28.612 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : ceph-osd-2:19.0.0-3080.gc2d8c315.el9.x86_64 5/36 2024-04-15T17:33:28.613 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : ceph-mgr-modules-core-2:19.0.0-3080.gc2d8c315.el9. 6/36 2024-04-15T17:33:28.613 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : lua-5.4.4-4.el9.x86_64 7/36 2024-04-15T17:33:28.613 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 8/36 2024-04-15T17:33:28.613 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 9/36 2024-04-15T17:33:28.613 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 10/36 2024-04-15T17:33:28.613 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 11/36 2024-04-15T17:33:28.613 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 12/36 2024-04-15T17:33:28.613 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 13/36 2024-04-15T17:33:28.613 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-ply-3.11-14.el9.noarch 14/36 2024-04-15T17:33:28.613 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 15/36 2024-04-15T17:33:28.613 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-urllib3-1.26.5-5.el9.noarch 16/36 2024-04-15T17:33:28.614 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 17/36 2024-04-15T17:33:28.614 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 18/36 2024-04-15T17:33:28.614 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : luarocks-3.9.2-1.el9.noarch 19/36 2024-04-15T17:33:28.614 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 20/36 2024-04-15T17:33:28.614 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-15T17:33:28.614 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 22/36 2024-04-15T17:33:28.614 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 23/36 2024-04-15T17:33:28.614 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 24/36 2024-04-15T17:33:28.614 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 25/36 2024-04-15T17:33:28.614 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 26/36 2024-04-15T17:33:28.614 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 27/36 2024-04-15T17:33:28.614 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 28/36 2024-04-15T17:33:28.614 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 29/36 2024-04-15T17:33:28.614 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-15T17:33:28.615 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 31/36 2024-04-15T17:33:28.615 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 32/36 2024-04-15T17:33:28.615 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 33/36 2024-04-15T17:33:28.615 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-webob-1.8.7-6.el9.noarch 34/36 2024-04-15T17:33:28.615 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 35/36 2024-04-15T17:33:28.774 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : ceph-immutable-object-cache-2:19.0.0-3080.gc2d8c315. 1/1 2024-04-15T17:33:28.774 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:28.774 INFO:teuthology.orchestra.run.smithi092.stdout:Installed: 2024-04-15T17:33:28.774 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-immutable-object-cache-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:28.774 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:28.774 INFO:teuthology.orchestra.run.smithi092.stdout:Complete! 2024-04-15T17:33:29.064 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum -y install ceph-mgr 2024-04-15T17:33:29.556 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 36/36 2024-04-15T17:33:29.556 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:29.556 INFO:teuthology.orchestra.run.smithi118.stdout:Installed: 2024-04-15T17:33:29.557 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:29.557 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-mds-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:29.557 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-mgr-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:29.557 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-mgr-modules-core-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:33:29.557 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-mon-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:29.557 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-osd-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:29.557 INFO:teuthology.orchestra.run.smithi118.stdout: lua-5.4.4-4.el9.x86_64 2024-04-15T17:33:29.557 INFO:teuthology.orchestra.run.smithi118.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-04-15T17:33:29.557 INFO:teuthology.orchestra.run.smithi118.stdout: luarocks-3.9.2-1.el9.noarch 2024-04-15T17:33:29.557 INFO:teuthology.orchestra.run.smithi118.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-04-15T17:33:29.557 INFO:teuthology.orchestra.run.smithi118.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-04-15T17:33:29.557 INFO:teuthology.orchestra.run.smithi118.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-04-15T17:33:29.557 INFO:teuthology.orchestra.run.smithi118.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-04-15T17:33:29.557 INFO:teuthology.orchestra.run.smithi118.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-04-15T17:33:29.558 INFO:teuthology.orchestra.run.smithi118.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-04-15T17:33:29.558 INFO:teuthology.orchestra.run.smithi118.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-04-15T17:33:29.558 INFO:teuthology.orchestra.run.smithi118.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-04-15T17:33:29.558 INFO:teuthology.orchestra.run.smithi118.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-04-15T17:33:29.558 INFO:teuthology.orchestra.run.smithi118.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-04-15T17:33:29.558 INFO:teuthology.orchestra.run.smithi118.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-04-15T17:33:29.558 INFO:teuthology.orchestra.run.smithi118.stdout: python3-mako-1.1.4-6.el9.noarch 2024-04-15T17:33:29.558 INFO:teuthology.orchestra.run.smithi118.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-04-15T17:33:29.558 INFO:teuthology.orchestra.run.smithi118.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-04-15T17:33:29.561 INFO:teuthology.orchestra.run.smithi118.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-04-15T17:33:29.561 INFO:teuthology.orchestra.run.smithi118.stdout: python3-ply-3.11-14.el9.noarch 2024-04-15T17:33:29.561 INFO:teuthology.orchestra.run.smithi118.stdout: python3-portend-3.1.0-2.el9.noarch 2024-04-15T17:33:29.562 INFO:teuthology.orchestra.run.smithi118.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-04-15T17:33:29.562 INFO:teuthology.orchestra.run.smithi118.stdout: python3-pycparser-2.20-6.el9.noarch 2024-04-15T17:33:29.562 INFO:teuthology.orchestra.run.smithi118.stdout: python3-pytz-2021.1-5.el9.noarch 2024-04-15T17:33:29.562 INFO:teuthology.orchestra.run.smithi118.stdout: python3-requests-2.25.1-8.el9.noarch 2024-04-15T17:33:29.562 INFO:teuthology.orchestra.run.smithi118.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-04-15T17:33:29.562 INFO:teuthology.orchestra.run.smithi118.stdout: python3-toml-0.10.2-6.el9.noarch 2024-04-15T17:33:29.562 INFO:teuthology.orchestra.run.smithi118.stdout: python3-urllib3-1.26.5-5.el9.noarch 2024-04-15T17:33:29.562 INFO:teuthology.orchestra.run.smithi118.stdout: python3-webob-1.8.7-6.el9.noarch 2024-04-15T17:33:29.562 INFO:teuthology.orchestra.run.smithi118.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-04-15T17:33:29.562 INFO:teuthology.orchestra.run.smithi118.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-04-15T17:33:29.562 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:29.562 INFO:teuthology.orchestra.run.smithi118.stdout:Complete! 2024-04-15T17:33:29.650 INFO:teuthology.orchestra.run.smithi092.stdout:Last metadata expiration check: 0:01:08 ago on Mon 15 Apr 2024 05:32:21 PM UTC. 2024-04-15T17:33:29.751 INFO:teuthology.orchestra.run.smithi092.stdout:Package ceph-mgr-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:33:29.805 INFO:teuthology.orchestra.run.smithi092.stdout:Dependencies resolved. 2024-04-15T17:33:29.806 INFO:teuthology.orchestra.run.smithi092.stdout:Nothing to do. 2024-04-15T17:33:29.806 INFO:teuthology.orchestra.run.smithi092.stdout:Complete! 2024-04-15T17:33:29.815 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.0.0-3080.gc2d8c 12/12 2024-04-15T17:33:29.816 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.0.0-3080.gc2d8c 1/12 2024-04-15T17:33:29.816 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 2/12 2024-04-15T17:33:29.816 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 3/12 2024-04-15T17:33:29.816 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 4/12 2024-04-15T17:33:29.816 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-15T17:33:29.816 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-15T17:33:29.816 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 7/12 2024-04-15T17:33:29.816 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 8/12 2024-04-15T17:33:29.816 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 9/12 2024-04-15T17:33:29.816 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : libgfortran-11.4.1-3.el9.x86_64 10/12 2024-04-15T17:33:29.816 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : libquadmath-11.4.1-3.el9.x86_64 11/12 2024-04-15T17:33:29.880 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum -y install ceph-mgr-dashboard 2024-04-15T17:33:29.884 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum -y install ceph-base 2024-04-15T17:33:30.279 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-devel-3.9.17-2.el9.x86_64 12/12 2024-04-15T17:33:30.279 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:30.279 INFO:teuthology.orchestra.run.smithi055.stdout:Installed: 2024-04-15T17:33:30.279 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-mgr-diskprediction-local-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:33:30.279 INFO:teuthology.orchestra.run.smithi055.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-04-15T17:33:30.279 INFO:teuthology.orchestra.run.smithi055.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-04-15T17:33:30.280 INFO:teuthology.orchestra.run.smithi055.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-04-15T17:33:30.280 INFO:teuthology.orchestra.run.smithi055.stdout: libgfortran-11.4.1-3.el9.x86_64 2024-04-15T17:33:30.280 INFO:teuthology.orchestra.run.smithi055.stdout: libquadmath-11.4.1-3.el9.x86_64 2024-04-15T17:33:30.280 INFO:teuthology.orchestra.run.smithi055.stdout: openblas-0.3.21-2.el9.x86_64 2024-04-15T17:33:30.280 INFO:teuthology.orchestra.run.smithi055.stdout: openblas-openmp-0.3.21-2.el9.x86_64 2024-04-15T17:33:30.280 INFO:teuthology.orchestra.run.smithi055.stdout: python3-devel-3.9.17-2.el9.x86_64 2024-04-15T17:33:30.280 INFO:teuthology.orchestra.run.smithi055.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-04-15T17:33:30.280 INFO:teuthology.orchestra.run.smithi055.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-04-15T17:33:30.281 INFO:teuthology.orchestra.run.smithi055.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-04-15T17:33:30.281 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:30.281 INFO:teuthology.orchestra.run.smithi055.stdout:Complete! 2024-04-15T17:33:30.450 INFO:teuthology.orchestra.run.smithi092.stdout:Last metadata expiration check: 0:01:09 ago on Mon 15 Apr 2024 05:32:21 PM UTC. 2024-04-15T17:33:30.482 INFO:teuthology.orchestra.run.smithi118.stdout:Last metadata expiration check: 0:01:00 ago on Mon 15 Apr 2024 05:32:30 PM UTC. 2024-04-15T17:33:30.588 INFO:teuthology.orchestra.run.smithi118.stdout:Package ceph-base-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:33:30.601 INFO:teuthology.orchestra.run.smithi092.stdout:Dependencies resolved. 2024-04-15T17:33:30.602 INFO:teuthology.orchestra.run.smithi092.stdout:====================================================================================== 2024-04-15T17:33:30.602 INFO:teuthology.orchestra.run.smithi092.stdout: Package Arch Version Repository Size 2024-04-15T17:33:30.602 INFO:teuthology.orchestra.run.smithi092.stdout:====================================================================================== 2024-04-15T17:33:30.603 INFO:teuthology.orchestra.run.smithi092.stdout:Installing: 2024-04-15T17:33:30.603 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-mgr-dashboard noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 3.5 M 2024-04-15T17:33:30.603 INFO:teuthology.orchestra.run.smithi092.stdout:Installing dependencies: 2024-04-15T17:33:30.603 INFO:teuthology.orchestra.run.smithi092.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-04-15T17:33:30.603 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-grafana-dashboards noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 34 k 2024-04-15T17:33:30.603 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-prometheus-alerts noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 16 k 2024-04-15T17:33:30.603 INFO:teuthology.orchestra.run.smithi092.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-04-15T17:33:30.603 INFO:teuthology.orchestra.run.smithi092.stdout: protobuf x86_64 3.14.0-13.el9 CentOS-AppStream 1.0 M 2024-04-15T17:33:30.603 INFO:teuthology.orchestra.run.smithi092.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-04-15T17:33:30.603 INFO:teuthology.orchestra.run.smithi092.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-04-15T17:33:30.603 INFO:teuthology.orchestra.run.smithi092.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-04-15T17:33:30.603 INFO:teuthology.orchestra.run.smithi092.stdout: python3-protobuf noarch 3.14.0-13.el9 CentOS-AppStream 238 k 2024-04-15T17:33:30.603 INFO:teuthology.orchestra.run.smithi092.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-04-15T17:33:30.603 INFO:teuthology.orchestra.run.smithi092.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-04-15T17:33:30.604 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:30.604 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction Summary 2024-04-15T17:33:30.604 INFO:teuthology.orchestra.run.smithi092.stdout:====================================================================================== 2024-04-15T17:33:30.604 INFO:teuthology.orchestra.run.smithi092.stdout:Install 12 Packages 2024-04-15T17:33:30.604 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:30.604 INFO:teuthology.orchestra.run.smithi092.stdout:Total download size: 8.6 M 2024-04-15T17:33:30.604 INFO:teuthology.orchestra.run.smithi092.stdout:Installed size: 104 M 2024-04-15T17:33:30.605 INFO:teuthology.orchestra.run.smithi092.stdout:Downloading Packages: 2024-04-15T17:33:30.644 INFO:teuthology.orchestra.run.smithi118.stdout:Dependencies resolved. 2024-04-15T17:33:30.645 INFO:teuthology.orchestra.run.smithi118.stdout:Nothing to do. 2024-04-15T17:33:30.645 INFO:teuthology.orchestra.run.smithi118.stdout:Complete! 2024-04-15T17:33:30.675 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum -y install ceph-mgr-rook 2024-04-15T17:33:30.715 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum -y install cephadm 2024-04-15T17:33:31.151 INFO:teuthology.orchestra.run.smithi092.stdout:(1/12): ceph-prometheus-alerts-19.0.0-3080.gc2d 90 kB/s | 16 kB 00:00 2024-04-15T17:33:31.209 INFO:teuthology.orchestra.run.smithi092.stdout:(2/12): ceph-grafana-dashboards-19.0.0-3080.gc2 142 kB/s | 34 kB 00:00 2024-04-15T17:33:31.274 INFO:teuthology.orchestra.run.smithi055.stdout:Last metadata expiration check: 0:01:22 ago on Mon 15 Apr 2024 05:32:09 PM UTC. 2024-04-15T17:33:31.293 INFO:teuthology.orchestra.run.smithi092.stdout:(3/12): python3-protobuf-3.14.0-13.el9.noarch.r 2.8 MB/s | 238 kB 00:00 2024-04-15T17:33:31.298 INFO:teuthology.orchestra.run.smithi118.stdout:Last metadata expiration check: 0:01:01 ago on Mon 15 Apr 2024 05:32:30 PM UTC. 2024-04-15T17:33:31.335 INFO:teuthology.orchestra.run.smithi092.stdout:(4/12): protobuf-3.14.0-13.el9.x86_64.rpm 5.5 MB/s | 1.0 MB 00:00 2024-04-15T17:33:31.438 INFO:teuthology.orchestra.run.smithi055.stdout:Dependencies resolved. 2024-04-15T17:33:31.439 INFO:teuthology.orchestra.run.smithi055.stdout:======================================================================================== 2024-04-15T17:33:31.439 INFO:teuthology.orchestra.run.smithi055.stdout: Package Arch Version Repository Size 2024-04-15T17:33:31.439 INFO:teuthology.orchestra.run.smithi055.stdout:======================================================================================== 2024-04-15T17:33:31.439 INFO:teuthology.orchestra.run.smithi055.stdout:Installing: 2024-04-15T17:33:31.439 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-mgr-rook noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 49 k 2024-04-15T17:33:31.440 INFO:teuthology.orchestra.run.smithi055.stdout:Installing dependencies: 2024-04-15T17:33:31.440 INFO:teuthology.orchestra.run.smithi055.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-04-15T17:33:31.440 INFO:teuthology.orchestra.run.smithi055.stdout: python3-certifi noarch 2021.10.8-2.el9 epel 15 k 2024-04-15T17:33:31.440 INFO:teuthology.orchestra.run.smithi055.stdout: python3-google-auth noarch 1:2.28.2-1.el9 epel 203 k 2024-04-15T17:33:31.440 INFO:teuthology.orchestra.run.smithi055.stdout: python3-jsonpatch noarch 1.21-16.el9 CentOS-AppStream 24 k 2024-04-15T17:33:31.440 INFO:teuthology.orchestra.run.smithi055.stdout: python3-jsonpointer noarch 2.0-4.el9 CentOS-AppStream 18 k 2024-04-15T17:33:31.440 INFO:teuthology.orchestra.run.smithi055.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-04-15T17:33:31.440 INFO:teuthology.orchestra.run.smithi055.stdout: python3-oauthlib noarch 3.1.1-5.el9 CentOS-AppStream 174 k 2024-04-15T17:33:31.440 INFO:teuthology.orchestra.run.smithi055.stdout: python3-pyasn1 noarch 0.4.8-6.el9 CentOS-AppStream 132 k 2024-04-15T17:33:31.440 INFO:teuthology.orchestra.run.smithi055.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 CentOS-AppStream 211 k 2024-04-15T17:33:31.440 INFO:teuthology.orchestra.run.smithi055.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 CentOS-AppStream 43 k 2024-04-15T17:33:31.441 INFO:teuthology.orchestra.run.smithi055.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-04-15T17:33:31.441 INFO:teuthology.orchestra.run.smithi055.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-04-15T17:33:31.441 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:31.441 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction Summary 2024-04-15T17:33:31.441 INFO:teuthology.orchestra.run.smithi055.stdout:======================================================================================== 2024-04-15T17:33:31.441 INFO:teuthology.orchestra.run.smithi055.stdout:Install 13 Packages 2024-04-15T17:33:31.441 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:31.442 INFO:teuthology.orchestra.run.smithi055.stdout:Total download size: 2.0 M 2024-04-15T17:33:31.442 INFO:teuthology.orchestra.run.smithi055.stdout:Installed size: 26 M 2024-04-15T17:33:31.442 INFO:teuthology.orchestra.run.smithi055.stdout:Downloading Packages: 2024-04-15T17:33:31.449 INFO:teuthology.orchestra.run.smithi118.stdout:Dependencies resolved. 2024-04-15T17:33:31.450 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:33:31.450 INFO:teuthology.orchestra.run.smithi118.stdout: Package Arch Version Repository Size 2024-04-15T17:33:31.450 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:33:31.450 INFO:teuthology.orchestra.run.smithi118.stdout:Installing: 2024-04-15T17:33:31.450 INFO:teuthology.orchestra.run.smithi118.stdout: cephadm noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 762 k 2024-04-15T17:33:31.451 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:31.451 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction Summary 2024-04-15T17:33:31.451 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:33:31.451 INFO:teuthology.orchestra.run.smithi118.stdout:Install 1 Package 2024-04-15T17:33:31.451 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:31.451 INFO:teuthology.orchestra.run.smithi118.stdout:Total download size: 762 k 2024-04-15T17:33:31.451 INFO:teuthology.orchestra.run.smithi118.stdout:Installed size: 769 k 2024-04-15T17:33:31.451 INFO:teuthology.orchestra.run.smithi118.stdout:Downloading Packages: 2024-04-15T17:33:31.685 INFO:teuthology.orchestra.run.smithi092.stdout:(5/12): ceph-mgr-dashboard-19.0.0-3080.gc2d8c31 4.9 MB/s | 3.5 MB 00:00 2024-04-15T17:33:31.710 INFO:teuthology.orchestra.run.smithi092.stdout:(6/12): protobuf-compiler-3.14.0-13.el9.x86_64. 2.0 MB/s | 863 kB 00:00 2024-04-15T17:33:31.752 INFO:teuthology.orchestra.run.smithi055.stdout:(1/13): python3-jsonpatch-1.21-16.el9.noarch.rp 206 kB/s | 24 kB 00:00 2024-04-15T17:33:31.760 INFO:teuthology.orchestra.run.smithi118.stdout:cephadm-19.0.0-3080.gc2d8c315.el9.noarch.rpm 2.4 MB/s | 762 kB 00:00 2024-04-15T17:33:31.761 INFO:teuthology.orchestra.run.smithi118.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:33:31.761 INFO:teuthology.orchestra.run.smithi118.stdout:Total 2.4 MB/s | 762 kB 00:00 2024-04-15T17:33:31.761 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction check 2024-04-15T17:33:31.766 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction check succeeded. 2024-04-15T17:33:31.766 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction test 2024-04-15T17:33:31.769 INFO:teuthology.orchestra.run.smithi092.stdout:(7/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 1.2 MB/s | 548 kB 00:00 2024-04-15T17:33:31.772 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction test succeeded. 2024-04-15T17:33:31.772 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction 2024-04-15T17:33:31.777 INFO:teuthology.orchestra.run.smithi055.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 126 kB/s | 18 kB 00:00 2024-04-15T17:33:31.828 INFO:teuthology.orchestra.run.smithi055.stdout:(3/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 2.3 MB/s | 174 kB 00:00 2024-04-15T17:33:31.845 INFO:teuthology.orchestra.run.smithi118.stdout: Preparing : 1/1 2024-04-15T17:33:31.852 INFO:teuthology.orchestra.run.smithi092.stdout:(8/12): grpc-data-1.46.7-10.el9.noarch.rpm 116 kB/s | 19 kB 00:00 2024-04-15T17:33:31.853 INFO:teuthology.orchestra.run.smithi055.stdout:(4/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.7 MB/s | 132 kB 00:00 2024-04-15T17:33:31.878 INFO:teuthology.orchestra.run.smithi055.stdout:(5/13): python3-pyasn1-modules-0.4.8-6.el9.noar 4.1 MB/s | 211 kB 00:00 2024-04-15T17:33:31.886 INFO:teuthology.orchestra.run.smithi092.stdout:(9/12): python3-grpcio-tools-1.46.7-10.el9.x86_ 1.5 MB/s | 144 kB 00:00 2024-04-15T17:33:31.903 INFO:teuthology.orchestra.run.smithi092.stdout:(10/12): python3-repoze-lru-0.7-16.el9.noarch.r 614 kB/s | 31 kB 00:00 2024-04-15T17:33:31.903 INFO:teuthology.orchestra.run.smithi055.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 856 kB/s | 43 kB 00:00 2024-04-15T17:33:31.962 INFO:teuthology.orchestra.run.smithi055.stdout:(7/13): ceph-mgr-rook-19.0.0-3080.gc2d8c315.el9 150 kB/s | 49 kB 00:00 2024-04-15T17:33:31.995 INFO:teuthology.orchestra.run.smithi092.stdout:(11/12): python3-routes-2.5.1-5.el9.noarch.rpm 1.7 MB/s | 188 kB 00:00 2024-04-15T17:33:32.146 INFO:teuthology.orchestra.run.smithi055.stdout:(8/13): python3-certifi-2021.10.8-2.el9.noarch. 62 kB/s | 15 kB 00:00 2024-04-15T17:33:32.179 INFO:teuthology.orchestra.run.smithi055.stdout:(9/13): python3-cachetools-4.2.4-1.el9.noarch.r 107 kB/s | 32 kB 00:00 2024-04-15T17:33:32.278 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 1/1 2024-04-15T17:33:32.357 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 1/1 2024-04-15T17:33:32.430 INFO:teuthology.orchestra.run.smithi055.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 236 kB/s | 59 kB 00:00 2024-04-15T17:33:32.480 INFO:teuthology.orchestra.run.smithi055.stdout:(11/13): python3-google-auth-2.28.2-1.el9.noarc 392 kB/s | 203 kB 00:00 2024-04-15T17:33:32.605 INFO:teuthology.orchestra.run.smithi055.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 512 kB/s | 90 kB 00:00 2024-04-15T17:33:32.689 INFO:teuthology.orchestra.run.smithi055.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 1.9 MB/s | 1.0 MB 00:00 2024-04-15T17:33:32.691 INFO:teuthology.orchestra.run.smithi055.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:33:32.691 INFO:teuthology.orchestra.run.smithi055.stdout:Total 1.6 MB/s | 2.0 MB 00:01 2024-04-15T17:33:32.692 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction check 2024-04-15T17:33:32.708 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction check succeeded. 2024-04-15T17:33:32.708 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction test 2024-04-15T17:33:32.755 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 1/1 2024-04-15T17:33:32.770 INFO:teuthology.orchestra.run.smithi092.stdout:(12/12): python3-grpcio-1.46.7-10.el9.x86_64.rp 2.0 MB/s | 2.0 MB 00:01 2024-04-15T17:33:32.775 INFO:teuthology.orchestra.run.smithi092.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:33:32.775 INFO:teuthology.orchestra.run.smithi092.stdout:Total 4.0 MB/s | 8.6 MB 00:02 2024-04-15T17:33:32.794 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction check 2024-04-15T17:33:32.812 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction check succeeded. 2024-04-15T17:33:32.812 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction test 2024-04-15T17:33:32.812 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction test succeeded. 2024-04-15T17:33:32.812 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction 2024-04-15T17:33:32.988 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction test succeeded. 2024-04-15T17:33:32.988 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction 2024-04-15T17:33:33.045 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 1/1 2024-04-15T17:33:33.045 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:33.045 INFO:teuthology.orchestra.run.smithi118.stdout:Installed: 2024-04-15T17:33:33.046 INFO:teuthology.orchestra.run.smithi118.stdout: cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:33:33.046 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:33.046 INFO:teuthology.orchestra.run.smithi118.stdout:Complete! 2024-04-15T17:33:33.268 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum -y install ceph-immutable-object-cache 2024-04-15T17:33:33.339 INFO:teuthology.orchestra.run.smithi055.stdout: Preparing : 1/1 2024-04-15T17:33:33.501 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-04-15T17:33:33.514 INFO:teuthology.orchestra.run.smithi092.stdout: Preparing : 1/1 2024-04-15T17:33:33.558 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-04-15T17:33:33.587 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-04-15T17:33:33.613 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-04-15T17:33:33.630 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-04-15T17:33:33.677 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-04-15T17:33:33.692 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-04-15T17:33:33.716 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-04-15T17:33:33.733 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-certifi-2021.10.8-2.el9.noarch 5/13 2024-04-15T17:33:33.829 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-04-15T17:33:33.832 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-04-15T17:33:33.855 INFO:teuthology.orchestra.run.smithi118.stdout:Last metadata expiration check: 0:01:03 ago on Mon 15 Apr 2024 05:32:30 PM UTC. 2024-04-15T17:33:33.946 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-google-auth-1:2.28.2-1.el9.noarch 7/13 2024-04-15T17:33:33.965 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-04-15T17:33:34.001 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-04-15T17:33:34.005 INFO:teuthology.orchestra.run.smithi118.stdout:Dependencies resolved. 2024-04-15T17:33:34.006 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:33:34.006 INFO:teuthology.orchestra.run.smithi118.stdout: Package Arch Version Repo Size 2024-04-15T17:33:34.006 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:33:34.006 INFO:teuthology.orchestra.run.smithi118.stdout:Installing: 2024-04-15T17:33:34.006 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-immutable-object-cache x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 145 k 2024-04-15T17:33:34.006 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:34.006 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction Summary 2024-04-15T17:33:34.007 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:33:34.007 INFO:teuthology.orchestra.run.smithi118.stdout:Install 1 Package 2024-04-15T17:33:34.007 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:34.007 INFO:teuthology.orchestra.run.smithi118.stdout:Total download size: 145 k 2024-04-15T17:33:34.007 INFO:teuthology.orchestra.run.smithi118.stdout:Installed size: 435 k 2024-04-15T17:33:34.007 INFO:teuthology.orchestra.run.smithi118.stdout:Downloading Packages: 2024-04-15T17:33:34.051 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-04-15T17:33:34.104 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-04-15T17:33:34.141 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-04-15T17:33:34.173 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : ceph-prometheus-alerts-2:19.0.0-3080.gc2d8c315.el9 10/12 2024-04-15T17:33:34.234 INFO:teuthology.orchestra.run.smithi118.stdout:ceph-immutable-object-cache-19.0.0-3080.gc2d8c3 638 kB/s | 145 kB 00:00 2024-04-15T17:33:34.235 INFO:teuthology.orchestra.run.smithi118.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:33:34.235 INFO:teuthology.orchestra.run.smithi118.stdout:Total 634 kB/s | 145 kB 00:00 2024-04-15T17:33:34.235 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction check 2024-04-15T17:33:34.243 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction check succeeded. 2024-04-15T17:33:34.243 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction test 2024-04-15T17:33:34.295 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction test succeeded. 2024-04-15T17:33:34.295 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction 2024-04-15T17:33:34.466 INFO:teuthology.orchestra.run.smithi118.stdout: Preparing : 1/1 2024-04-15T17:33:34.530 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : ceph-immutable-object-cache-2:19.0.0-3080.gc2d8c315. 1/1 2024-04-15T17:33:34.553 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.0.0-3080.gc2d8c315. 1/1 2024-04-15T17:33:34.553 INFO:teuthology.orchestra.run.smithi118.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T17:33:34.553 INFO:teuthology.orchestra.run.smithi118.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-04-15T17:33:34.553 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:34.761 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-04-15T17:33:34.806 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-04-15T17:33:34.856 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-04-15T17:33:34.905 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-04-15T17:33:34.934 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : ceph-mgr-rook-2:19.0.0-3080.gc2d8c315.el9.noarch 13/13 2024-04-15T17:33:35.213 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : ceph-grafana-dashboards-2:19.0.0-3080.gc2d8c315.el 11/12 2024-04-15T17:33:35.256 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : ceph-mgr-dashboard-2:19.0.0-3080.gc2d8c315.el9.noa 12/12 2024-04-15T17:33:35.469 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : ceph-immutable-object-cache-2:19.0.0-3080.gc2d8c315. 1/1 2024-04-15T17:33:35.469 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:35.470 INFO:teuthology.orchestra.run.smithi118.stdout:Installed: 2024-04-15T17:33:35.470 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-immutable-object-cache-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:35.470 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:35.470 INFO:teuthology.orchestra.run.smithi118.stdout:Complete! 2024-04-15T17:33:35.654 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: ceph-mgr-rook-2:19.0.0-3080.gc2d8c315.el9.noarch 13/13 2024-04-15T17:33:35.654 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : ceph-mgr-rook-2:19.0.0-3080.gc2d8c315.el9.noarch 1/13 2024-04-15T17:33:35.654 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-04-15T17:33:35.655 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-04-15T17:33:35.655 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-04-15T17:33:35.655 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-04-15T17:33:35.655 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-04-15T17:33:35.655 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-04-15T17:33:35.655 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-04-15T17:33:35.655 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-certifi-2021.10.8-2.el9.noarch 9/13 2024-04-15T17:33:35.655 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-google-auth-1:2.28.2-1.el9.noarch 10/13 2024-04-15T17:33:35.655 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-04-15T17:33:35.655 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-04-15T17:33:35.722 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum -y install ceph-mgr 2024-04-15T17:33:36.021 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-04-15T17:33:36.021 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:36.021 INFO:teuthology.orchestra.run.smithi055.stdout:Installed: 2024-04-15T17:33:36.021 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-mgr-rook-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:33:36.022 INFO:teuthology.orchestra.run.smithi055.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-04-15T17:33:36.022 INFO:teuthology.orchestra.run.smithi055.stdout: python3-certifi-2021.10.8-2.el9.noarch 2024-04-15T17:33:36.022 INFO:teuthology.orchestra.run.smithi055.stdout: python3-google-auth-1:2.28.2-1.el9.noarch 2024-04-15T17:33:36.022 INFO:teuthology.orchestra.run.smithi055.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-04-15T17:33:36.022 INFO:teuthology.orchestra.run.smithi055.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-04-15T17:33:36.022 INFO:teuthology.orchestra.run.smithi055.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-04-15T17:33:36.022 INFO:teuthology.orchestra.run.smithi055.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-04-15T17:33:36.022 INFO:teuthology.orchestra.run.smithi055.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-04-15T17:33:36.022 INFO:teuthology.orchestra.run.smithi055.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-04-15T17:33:36.022 INFO:teuthology.orchestra.run.smithi055.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-04-15T17:33:36.022 INFO:teuthology.orchestra.run.smithi055.stdout: python3-rsa-4.9-2.el9.noarch 2024-04-15T17:33:36.022 INFO:teuthology.orchestra.run.smithi055.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-04-15T17:33:36.022 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:36.023 INFO:teuthology.orchestra.run.smithi055.stdout:Complete! 2024-04-15T17:33:36.275 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum -y install ceph-mgr-cephadm 2024-04-15T17:33:36.306 INFO:teuthology.orchestra.run.smithi118.stdout:Last metadata expiration check: 0:01:06 ago on Mon 15 Apr 2024 05:32:30 PM UTC. 2024-04-15T17:33:36.406 INFO:teuthology.orchestra.run.smithi118.stdout:Package ceph-mgr-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:33:36.459 INFO:teuthology.orchestra.run.smithi118.stdout:Dependencies resolved. 2024-04-15T17:33:36.460 INFO:teuthology.orchestra.run.smithi118.stdout:Nothing to do. 2024-04-15T17:33:36.460 INFO:teuthology.orchestra.run.smithi118.stdout:Complete! 2024-04-15T17:33:36.557 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum -y install ceph-mgr-dashboard 2024-04-15T17:33:36.711 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.0.0-3080.gc2d8c315.el9.noa 12/12 2024-04-15T17:33:36.712 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : ceph-grafana-dashboards-2:19.0.0-3080.gc2d8c315.el 1/12 2024-04-15T17:33:36.712 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : ceph-mgr-dashboard-2:19.0.0-3080.gc2d8c315.el9.noa 2/12 2024-04-15T17:33:36.712 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : ceph-prometheus-alerts-2:19.0.0-3080.gc2d8c315.el9 3/12 2024-04-15T17:33:36.712 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-04-15T17:33:36.712 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-04-15T17:33:36.712 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-04-15T17:33:36.712 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-04-15T17:33:36.712 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-04-15T17:33:36.712 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-04-15T17:33:36.712 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-04-15T17:33:36.713 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-04-15T17:33:36.865 INFO:teuthology.orchestra.run.smithi055.stdout:Last metadata expiration check: 0:01:27 ago on Mon 15 Apr 2024 05:32:09 PM UTC. 2024-04-15T17:33:37.025 INFO:teuthology.orchestra.run.smithi055.stdout:Dependencies resolved. 2024-04-15T17:33:37.025 INFO:teuthology.orchestra.run.smithi055.stdout:======================================================================================== 2024-04-15T17:33:37.025 INFO:teuthology.orchestra.run.smithi055.stdout: Package Arch Version Repository Size 2024-04-15T17:33:37.025 INFO:teuthology.orchestra.run.smithi055.stdout:======================================================================================== 2024-04-15T17:33:37.026 INFO:teuthology.orchestra.run.smithi055.stdout:Installing: 2024-04-15T17:33:37.026 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-mgr-cephadm noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 142 k 2024-04-15T17:33:37.026 INFO:teuthology.orchestra.run.smithi055.stdout:Installing dependencies: 2024-04-15T17:33:37.026 INFO:teuthology.orchestra.run.smithi055.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-04-15T17:33:37.026 INFO:teuthology.orchestra.run.smithi055.stdout: python3-babel noarch 2.9.1-2.el9 CentOS-AppStream 5.8 M 2024-04-15T17:33:37.026 INFO:teuthology.orchestra.run.smithi055.stdout: python3-jinja2 noarch 2.11.3-5.el9 appstream 248 k 2024-04-15T17:33:37.026 INFO:teuthology.orchestra.run.smithi055.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-04-15T17:33:37.026 INFO:teuthology.orchestra.run.smithi055.stdout: python3-typing-extensions noarch 4.4.0-2.el9 epel 51 k 2024-04-15T17:33:37.026 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:37.026 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction Summary 2024-04-15T17:33:37.026 INFO:teuthology.orchestra.run.smithi055.stdout:======================================================================================== 2024-04-15T17:33:37.026 INFO:teuthology.orchestra.run.smithi055.stdout:Install 6 Packages 2024-04-15T17:33:37.026 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:37.027 INFO:teuthology.orchestra.run.smithi055.stdout:Total download size: 6.8 M 2024-04-15T17:33:37.027 INFO:teuthology.orchestra.run.smithi055.stdout:Installed size: 33 M 2024-04-15T17:33:37.027 INFO:teuthology.orchestra.run.smithi055.stdout:Downloading Packages: 2024-04-15T17:33:37.056 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-04-15T17:33:37.056 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:37.056 INFO:teuthology.orchestra.run.smithi092.stdout:Installed: 2024-04-15T17:33:37.056 INFO:teuthology.orchestra.run.smithi092.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-04-15T17:33:37.056 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-grafana-dashboards-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:33:37.056 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-mgr-dashboard-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:33:37.056 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-prometheus-alerts-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:33:37.056 INFO:teuthology.orchestra.run.smithi092.stdout: grpc-data-1.46.7-10.el9.noarch 2024-04-15T17:33:37.056 INFO:teuthology.orchestra.run.smithi092.stdout: protobuf-3.14.0-13.el9.x86_64 2024-04-15T17:33:37.056 INFO:teuthology.orchestra.run.smithi092.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-04-15T17:33:37.056 INFO:teuthology.orchestra.run.smithi092.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-04-15T17:33:37.056 INFO:teuthology.orchestra.run.smithi092.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-04-15T17:33:37.057 INFO:teuthology.orchestra.run.smithi092.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-04-15T17:33:37.057 INFO:teuthology.orchestra.run.smithi092.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-04-15T17:33:37.057 INFO:teuthology.orchestra.run.smithi092.stdout: python3-routes-2.5.1-5.el9.noarch 2024-04-15T17:33:37.057 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:37.057 INFO:teuthology.orchestra.run.smithi092.stdout:Complete! 2024-04-15T17:33:37.131 INFO:teuthology.orchestra.run.smithi118.stdout:Last metadata expiration check: 0:01:07 ago on Mon 15 Apr 2024 05:32:30 PM UTC. 2024-04-15T17:33:37.283 INFO:teuthology.orchestra.run.smithi118.stdout:Dependencies resolved. 2024-04-15T17:33:37.284 INFO:teuthology.orchestra.run.smithi118.stdout:====================================================================================== 2024-04-15T17:33:37.284 INFO:teuthology.orchestra.run.smithi118.stdout: Package Arch Version Repository Size 2024-04-15T17:33:37.285 INFO:teuthology.orchestra.run.smithi118.stdout:====================================================================================== 2024-04-15T17:33:37.285 INFO:teuthology.orchestra.run.smithi118.stdout:Installing: 2024-04-15T17:33:37.285 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-mgr-dashboard noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 3.5 M 2024-04-15T17:33:37.285 INFO:teuthology.orchestra.run.smithi118.stdout:Installing dependencies: 2024-04-15T17:33:37.285 INFO:teuthology.orchestra.run.smithi118.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-04-15T17:33:37.285 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-grafana-dashboards noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 34 k 2024-04-15T17:33:37.285 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-prometheus-alerts noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 16 k 2024-04-15T17:33:37.285 INFO:teuthology.orchestra.run.smithi118.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-04-15T17:33:37.285 INFO:teuthology.orchestra.run.smithi118.stdout: protobuf x86_64 3.14.0-13.el9 CentOS-AppStream 1.0 M 2024-04-15T17:33:37.285 INFO:teuthology.orchestra.run.smithi118.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-04-15T17:33:37.285 INFO:teuthology.orchestra.run.smithi118.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-04-15T17:33:37.285 INFO:teuthology.orchestra.run.smithi118.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-04-15T17:33:37.285 INFO:teuthology.orchestra.run.smithi118.stdout: python3-protobuf noarch 3.14.0-13.el9 CentOS-AppStream 238 k 2024-04-15T17:33:37.285 INFO:teuthology.orchestra.run.smithi118.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-04-15T17:33:37.286 INFO:teuthology.orchestra.run.smithi118.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-04-15T17:33:37.286 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:37.286 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction Summary 2024-04-15T17:33:37.286 INFO:teuthology.orchestra.run.smithi118.stdout:====================================================================================== 2024-04-15T17:33:37.286 INFO:teuthology.orchestra.run.smithi118.stdout:Install 12 Packages 2024-04-15T17:33:37.286 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:37.286 INFO:teuthology.orchestra.run.smithi118.stdout:Total download size: 8.6 M 2024-04-15T17:33:37.287 INFO:teuthology.orchestra.run.smithi118.stdout:Installed size: 104 M 2024-04-15T17:33:37.287 INFO:teuthology.orchestra.run.smithi118.stdout:Downloading Packages: 2024-04-15T17:33:37.335 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum -y install ceph-mgr-diskprediction-local 2024-04-15T17:33:37.450 INFO:teuthology.orchestra.run.smithi055.stdout:(1/6): python3-jinja2-2.11.3-5.el9.noarch.rpm 1.7 MB/s | 248 kB 00:00 2024-04-15T17:33:37.801 INFO:teuthology.orchestra.run.smithi055.stdout:(2/6): ceph-mgr-cephadm-19.0.0-3080.gc2d8c315.e 287 kB/s | 142 kB 00:00 2024-04-15T17:33:37.876 INFO:teuthology.orchestra.run.smithi055.stdout:(3/6): python3-babel-2.9.1-2.el9.noarch.rpm 10 MB/s | 5.8 MB 00:00 2024-04-15T17:33:37.908 INFO:teuthology.orchestra.run.smithi092.stdout:Last metadata expiration check: 0:01:16 ago on Mon 15 Apr 2024 05:32:21 PM UTC. 2024-04-15T17:33:37.984 INFO:teuthology.orchestra.run.smithi055.stdout:(4/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 1.0 MB/s | 548 kB 00:00 2024-04-15T17:33:38.009 INFO:teuthology.orchestra.run.smithi055.stdout:(5/6): python3-natsort-7.1.1-5.el9.noarch.rpm 278 kB/s | 58 kB 00:00 2024-04-15T17:33:38.013 INFO:teuthology.orchestra.run.smithi118.stdout:(1/12): ceph-grafana-dashboards-19.0.0-3080.gc2 161 kB/s | 34 kB 00:00 2024-04-15T17:33:38.035 INFO:teuthology.orchestra.run.smithi055.stdout:(6/6): python3-typing-extensions-4.4.0-2.el9.no 321 kB/s | 51 kB 00:00 2024-04-15T17:33:38.036 INFO:teuthology.orchestra.run.smithi055.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:33:38.037 INFO:teuthology.orchestra.run.smithi055.stdout:Total 6.7 MB/s | 6.8 MB 00:01 2024-04-15T17:33:38.050 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction check 2024-04-15T17:33:38.060 INFO:teuthology.orchestra.run.smithi092.stdout:Dependencies resolved. 2024-04-15T17:33:38.061 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction check succeeded. 2024-04-15T17:33:38.061 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction test 2024-04-15T17:33:38.062 INFO:teuthology.orchestra.run.smithi092.stdout:============================================================================================ 2024-04-15T17:33:38.062 INFO:teuthology.orchestra.run.smithi092.stdout: Package Arch Version Repository Size 2024-04-15T17:33:38.062 INFO:teuthology.orchestra.run.smithi092.stdout:============================================================================================ 2024-04-15T17:33:38.062 INFO:teuthology.orchestra.run.smithi092.stdout:Installing: 2024-04-15T17:33:38.062 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-mgr-diskprediction-local noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 7.4 M 2024-04-15T17:33:38.062 INFO:teuthology.orchestra.run.smithi092.stdout:Installing dependencies: 2024-04-15T17:33:38.062 INFO:teuthology.orchestra.run.smithi092.stdout: flexiblas x86_64 3.0.4-8.el9 CentOS-AppStream 32 k 2024-04-15T17:33:38.062 INFO:teuthology.orchestra.run.smithi092.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 CentOS-AppStream 3.0 M 2024-04-15T17:33:38.062 INFO:teuthology.orchestra.run.smithi092.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 CentOS-AppStream 17 k 2024-04-15T17:33:38.062 INFO:teuthology.orchestra.run.smithi092.stdout: libgfortran x86_64 11.4.1-3.el9 baseos 803 k 2024-04-15T17:33:38.062 INFO:teuthology.orchestra.run.smithi092.stdout: libquadmath x86_64 11.4.1-3.el9 baseos 195 k 2024-04-15T17:33:38.062 INFO:teuthology.orchestra.run.smithi092.stdout: openblas x86_64 0.3.21-2.el9 CentOS-AppStream 34 k 2024-04-15T17:33:38.063 INFO:teuthology.orchestra.run.smithi092.stdout: openblas-openmp x86_64 0.3.21-2.el9 CentOS-AppStream 4.7 M 2024-04-15T17:33:38.063 INFO:teuthology.orchestra.run.smithi092.stdout: python3-devel x86_64 3.9.17-2.el9 appstream 245 k 2024-04-15T17:33:38.063 INFO:teuthology.orchestra.run.smithi092.stdout: python3-numpy x86_64 1:1.20.1-5.el9 CentOS-AppStream 4.8 M 2024-04-15T17:33:38.063 INFO:teuthology.orchestra.run.smithi092.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 CentOS-AppStream 217 k 2024-04-15T17:33:38.063 INFO:teuthology.orchestra.run.smithi092.stdout: python3-scipy x86_64 1.6.2-8.el9 CentOS-AppStream 16 M 2024-04-15T17:33:38.063 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:38.063 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction Summary 2024-04-15T17:33:38.063 INFO:teuthology.orchestra.run.smithi092.stdout:============================================================================================ 2024-04-15T17:33:38.063 INFO:teuthology.orchestra.run.smithi092.stdout:Install 12 Packages 2024-04-15T17:33:38.063 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:38.064 INFO:teuthology.orchestra.run.smithi092.stdout:Total download size: 37 M 2024-04-15T17:33:38.064 INFO:teuthology.orchestra.run.smithi092.stdout:Installed size: 209 M 2024-04-15T17:33:38.064 INFO:teuthology.orchestra.run.smithi092.stdout:Downloading Packages: 2024-04-15T17:33:38.114 INFO:teuthology.orchestra.run.smithi118.stdout:(2/12): ceph-prometheus-alerts-19.0.0-3080.gc2d 53 kB/s | 16 kB 00:00 2024-04-15T17:33:38.154 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction test succeeded. 2024-04-15T17:33:38.154 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction 2024-04-15T17:33:38.230 INFO:teuthology.orchestra.run.smithi118.stdout:(3/12): protobuf-3.14.0-13.el9.x86_64.rpm 4.6 MB/s | 1.0 MB 00:00 2024-04-15T17:33:38.256 INFO:teuthology.orchestra.run.smithi118.stdout:(4/12): python3-protobuf-3.14.0-13.el9.noarch.r 1.6 MB/s | 238 kB 00:00 2024-04-15T17:33:38.467 INFO:teuthology.orchestra.run.smithi055.stdout: Preparing : 1/1 2024-04-15T17:33:38.648 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-typing-extensions-4.4.0-2.el9.noarch 1/6 2024-04-15T17:33:38.695 INFO:teuthology.orchestra.run.smithi092.stdout:(1/12): flexiblas-3.0.4-8.el9.x86_64.rpm 207 kB/s | 32 kB 00:00 2024-04-15T17:33:38.695 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-04-15T17:33:38.753 INFO:teuthology.orchestra.run.smithi092.stdout:(2/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 296 kB/s | 17 kB 00:00 2024-04-15T17:33:38.765 INFO:teuthology.orchestra.run.smithi118.stdout:(5/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 1.1 MB/s | 548 kB 00:00 2024-04-15T17:33:38.820 INFO:teuthology.orchestra.run.smithi092.stdout:(3/12): openblas-0.3.21-2.el9.x86_64.rpm 515 kB/s | 34 kB 00:00 2024-04-15T17:33:38.857 INFO:teuthology.orchestra.run.smithi118.stdout:(6/12): grpc-data-1.46.7-10.el9.noarch.rpm 212 kB/s | 19 kB 00:00 2024-04-15T17:33:38.982 INFO:teuthology.orchestra.run.smithi118.stdout:(7/12): ceph-mgr-dashboard-19.0.0-3080.gc2d8c31 3.0 MB/s | 3.5 MB 00:01 2024-04-15T17:33:39.120 INFO:teuthology.orchestra.run.smithi092.stdout:(4/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 5.2 MB/s | 3.0 MB 00:00 2024-04-15T17:33:39.157 INFO:teuthology.orchestra.run.smithi118.stdout:(8/12): protobuf-compiler-3.14.0-13.el9.x86_64. 932 kB/s | 863 kB 00:00 2024-04-15T17:33:39.221 INFO:teuthology.orchestra.run.smithi092.stdout:(5/12): openblas-openmp-0.3.21-2.el9.x86_64.rpm 12 MB/s | 4.7 MB 00:00 2024-04-15T17:33:39.244 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-04-15T17:33:39.304 INFO:teuthology.orchestra.run.smithi092.stdout:(6/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 26 MB/s | 4.8 MB 00:00 2024-04-15T17:33:39.315 INFO:teuthology.orchestra.run.smithi118.stdout:(9/12): python3-grpcio-tools-1.46.7-10.el9.x86_ 433 kB/s | 144 kB 00:00 2024-04-15T17:33:39.324 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-04-15T17:33:39.329 INFO:teuthology.orchestra.run.smithi092.stdout:(7/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 2.0 MB/s | 217 kB 00:00 2024-04-15T17:33:39.374 INFO:teuthology.orchestra.run.smithi118.stdout:(10/12): python3-repoze-lru-0.7-16.el9.noarch.r 142 kB/s | 31 kB 00:00 2024-04-15T17:33:39.386 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-jinja2-2.11.3-5.el9.noarch 5/6 2024-04-15T17:33:39.416 INFO:teuthology.orchestra.run.smithi118.stdout:(11/12): python3-grpcio-1.46.7-10.el9.x86_64.rp 3.6 MB/s | 2.0 MB 00:00 2024-04-15T17:33:39.423 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : ceph-mgr-cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 6/6 2024-04-15T17:33:39.446 INFO:teuthology.orchestra.run.smithi092.stdout:(8/12): ceph-mgr-diskprediction-local-19.0.0-30 8.2 MB/s | 7.4 MB 00:00 2024-04-15T17:33:39.475 INFO:teuthology.orchestra.run.smithi118.stdout:(12/12): python3-routes-2.5.1-5.el9.noarch.rpm 1.2 MB/s | 188 kB 00:00 2024-04-15T17:33:39.480 INFO:teuthology.orchestra.run.smithi118.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:33:39.480 INFO:teuthology.orchestra.run.smithi118.stdout:Total 3.9 MB/s | 8.6 MB 00:02 2024-04-15T17:33:39.498 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction check 2024-04-15T17:33:39.514 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction check succeeded. 2024-04-15T17:33:39.514 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction test 2024-04-15T17:33:39.697 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction test succeeded. 2024-04-15T17:33:39.697 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction 2024-04-15T17:33:39.755 INFO:teuthology.orchestra.run.smithi092.stdout:(9/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 35 MB/s | 16 MB 00:00 2024-04-15T17:33:39.780 INFO:teuthology.orchestra.run.smithi092.stdout:(10/12): libquadmath-11.4.1-3.el9.x86_64.rpm 589 kB/s | 195 kB 00:00 2024-04-15T17:33:39.864 INFO:teuthology.orchestra.run.smithi092.stdout:(11/12): python3-devel-3.9.17-2.el9.x86_64.rpm 2.2 MB/s | 245 kB 00:00 2024-04-15T17:33:39.922 INFO:teuthology.orchestra.run.smithi092.stdout:(12/12): libgfortran-11.4.1-3.el9.x86_64.rpm 1.3 MB/s | 803 kB 00:00 2024-04-15T17:33:39.924 INFO:teuthology.orchestra.run.smithi092.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:33:39.924 INFO:teuthology.orchestra.run.smithi092.stdout:Total 20 MB/s | 37 MB 00:01 2024-04-15T17:33:39.967 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction check 2024-04-15T17:33:39.991 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction check succeeded. 2024-04-15T17:33:39.991 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction test 2024-04-15T17:33:40.188 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 6/6 2024-04-15T17:33:40.188 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : ceph-mgr-cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 1/6 2024-04-15T17:33:40.189 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-04-15T17:33:40.189 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-jinja2-2.11.3-5.el9.noarch 3/6 2024-04-15T17:33:40.189 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-04-15T17:33:40.189 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-04-15T17:33:40.262 INFO:teuthology.orchestra.run.smithi118.stdout: Preparing : 1/1 2024-04-15T17:33:40.350 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction test succeeded. 2024-04-15T17:33:40.350 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction 2024-04-15T17:33:40.375 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-04-15T17:33:40.419 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-04-15T17:33:40.465 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-04-15T17:33:40.497 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-04-15T17:33:40.501 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-typing-extensions-4.4.0-2.el9.noarch 6/6 2024-04-15T17:33:40.501 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:40.502 INFO:teuthology.orchestra.run.smithi055.stdout:Installed: 2024-04-15T17:33:40.502 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-mgr-cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:33:40.502 INFO:teuthology.orchestra.run.smithi055.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-04-15T17:33:40.502 INFO:teuthology.orchestra.run.smithi055.stdout: python3-babel-2.9.1-2.el9.noarch 2024-04-15T17:33:40.502 INFO:teuthology.orchestra.run.smithi055.stdout: python3-jinja2-2.11.3-5.el9.noarch 2024-04-15T17:33:40.502 INFO:teuthology.orchestra.run.smithi055.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-04-15T17:33:40.502 INFO:teuthology.orchestra.run.smithi055.stdout: python3-typing-extensions-4.4.0-2.el9.noarch 2024-04-15T17:33:40.502 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:40.502 INFO:teuthology.orchestra.run.smithi055.stdout:Complete! 2024-04-15T17:33:40.585 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-04-15T17:33:40.730 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-04-15T17:33:40.749 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum -y install ceph-fuse 2024-04-15T17:33:40.832 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-04-15T17:33:40.876 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-04-15T17:33:40.904 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-04-15T17:33:40.937 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : ceph-prometheus-alerts-2:19.0.0-3080.gc2d8c315.el9 10/12 2024-04-15T17:33:41.053 INFO:teuthology.orchestra.run.smithi092.stdout: Preparing : 1/1 2024-04-15T17:33:41.128 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : libquadmath-11.4.1-3.el9.x86_64 1/12 2024-04-15T17:33:41.168 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : libgfortran-11.4.1-3.el9.x86_64 2/12 2024-04-15T17:33:41.264 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 3/12 2024-04-15T17:33:41.321 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-devel-3.9.17-2.el9.x86_64 4/12 2024-04-15T17:33:41.337 INFO:teuthology.orchestra.run.smithi055.stdout:Last metadata expiration check: 0:01:32 ago on Mon 15 Apr 2024 05:32:09 PM UTC. 2024-04-15T17:33:41.498 INFO:teuthology.orchestra.run.smithi055.stdout:Dependencies resolved. 2024-04-15T17:33:41.499 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-15T17:33:41.499 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:33:41.500 INFO:teuthology.orchestra.run.smithi055.stdout: Package Arch Version Repository Size 2024-04-15T17:33:41.500 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:33:41.500 INFO:teuthology.orchestra.run.smithi055.stdout:Installing: 2024-04-15T17:33:41.500 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-fuse x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 890 k 2024-04-15T17:33:41.500 INFO:teuthology.orchestra.run.smithi055.stdout:Installing dependencies: 2024-04-15T17:33:41.500 INFO:teuthology.orchestra.run.smithi055.stdout: fuse x86_64 2.9.9-15.el9 CentOS-BaseOS 79 k 2024-04-15T17:33:41.500 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:41.500 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction Summary 2024-04-15T17:33:41.500 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:33:41.500 INFO:teuthology.orchestra.run.smithi055.stdout:Install 2 Packages 2024-04-15T17:33:41.500 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:41.500 INFO:teuthology.orchestra.run.smithi055.stdout:Total download size: 968 k 2024-04-15T17:33:41.500 INFO:teuthology.orchestra.run.smithi055.stdout:Installed size: 2.8 M 2024-04-15T17:33:41.501 INFO:teuthology.orchestra.run.smithi055.stdout:Downloading Packages: 2024-04-15T17:33:41.537 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-15T17:33:41.627 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-04-15T17:33:41.628 INFO:teuthology.orchestra.run.smithi055.stdout:(1/2): fuse-2.9.9-15.el9.x86_64.rpm 618 kB/s | 79 kB 00:00 2024-04-15T17:33:41.945 INFO:teuthology.orchestra.run.smithi055.stdout:(2/2): ceph-fuse-19.0.0-3080.gc2d8c315.el9.x86_ 2.0 MB/s | 890 kB 00:00 2024-04-15T17:33:41.946 INFO:teuthology.orchestra.run.smithi055.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:33:41.946 INFO:teuthology.orchestra.run.smithi055.stdout:Total 2.1 MB/s | 968 kB 00:00 2024-04-15T17:33:41.946 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction check 2024-04-15T17:33:41.968 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction check succeeded. 2024-04-15T17:33:41.968 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction test 2024-04-15T17:33:41.988 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : ceph-grafana-dashboards-2:19.0.0-3080.gc2d8c315.el 11/12 2024-04-15T17:33:42.021 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : ceph-mgr-dashboard-2:19.0.0-3080.gc2d8c315.el9.noa 12/12 2024-04-15T17:33:42.043 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction test succeeded. 2024-04-15T17:33:42.044 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction 2024-04-15T17:33:42.230 INFO:teuthology.orchestra.run.smithi055.stdout: Preparing : 1/1 2024-04-15T17:33:42.292 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-04-15T17:33:42.358 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : fuse-2.9.9-15.el9.x86_64 1/2 2024-04-15T17:33:42.399 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-04-15T17:33:42.430 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : ceph-fuse-2:19.0.0-3080.gc2d8c315.el9.x86_64 2/2 2024-04-15T17:33:43.158 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: ceph-fuse-2:19.0.0-3080.gc2d8c315.el9.x86_64 2/2 2024-04-15T17:33:43.159 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : ceph-fuse-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/2 2024-04-15T17:33:43.476 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : fuse-2.9.9-15.el9.x86_64 2/2 2024-04-15T17:33:43.476 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:43.476 INFO:teuthology.orchestra.run.smithi055.stdout:Installed: 2024-04-15T17:33:43.476 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-fuse-2:19.0.0-3080.gc2d8c315.el9.x86_64 fuse-2.9.9-15.el9.x86_64 2024-04-15T17:33:43.476 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:43.476 INFO:teuthology.orchestra.run.smithi055.stdout:Complete! 2024-04-15T17:33:43.548 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.0.0-3080.gc2d8c315.el9.noa 12/12 2024-04-15T17:33:43.549 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : ceph-grafana-dashboards-2:19.0.0-3080.gc2d8c315.el 1/12 2024-04-15T17:33:43.549 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : ceph-mgr-dashboard-2:19.0.0-3080.gc2d8c315.el9.noa 2/12 2024-04-15T17:33:43.549 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : ceph-prometheus-alerts-2:19.0.0-3080.gc2d8c315.el9 3/12 2024-04-15T17:33:43.549 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-04-15T17:33:43.549 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-04-15T17:33:43.549 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-04-15T17:33:43.549 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-04-15T17:33:43.549 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-04-15T17:33:43.549 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-04-15T17:33:43.549 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-04-15T17:33:43.549 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-04-15T17:33:43.634 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-04-15T17:33:43.758 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum -y install ceph-volume 2024-04-15T17:33:43.913 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-04-15T17:33:43.913 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:43.913 INFO:teuthology.orchestra.run.smithi118.stdout:Installed: 2024-04-15T17:33:43.913 INFO:teuthology.orchestra.run.smithi118.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-04-15T17:33:43.913 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-grafana-dashboards-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:33:43.913 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-mgr-dashboard-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:33:43.913 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-prometheus-alerts-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:33:43.913 INFO:teuthology.orchestra.run.smithi118.stdout: grpc-data-1.46.7-10.el9.noarch 2024-04-15T17:33:43.913 INFO:teuthology.orchestra.run.smithi118.stdout: protobuf-3.14.0-13.el9.x86_64 2024-04-15T17:33:43.913 INFO:teuthology.orchestra.run.smithi118.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-04-15T17:33:43.914 INFO:teuthology.orchestra.run.smithi118.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-04-15T17:33:43.914 INFO:teuthology.orchestra.run.smithi118.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-04-15T17:33:43.914 INFO:teuthology.orchestra.run.smithi118.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-04-15T17:33:43.914 INFO:teuthology.orchestra.run.smithi118.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-04-15T17:33:43.914 INFO:teuthology.orchestra.run.smithi118.stdout: python3-routes-2.5.1-5.el9.noarch 2024-04-15T17:33:43.914 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:43.914 INFO:teuthology.orchestra.run.smithi118.stdout:Complete! 2024-04-15T17:33:44.172 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum -y install ceph-mgr-diskprediction-local 2024-04-15T17:33:44.350 INFO:teuthology.orchestra.run.smithi055.stdout:Last metadata expiration check: 0:01:35 ago on Mon 15 Apr 2024 05:32:09 PM UTC. 2024-04-15T17:33:44.509 INFO:teuthology.orchestra.run.smithi055.stdout:Dependencies resolved. 2024-04-15T17:33:44.510 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:33:44.510 INFO:teuthology.orchestra.run.smithi055.stdout: Package Arch Version Repository Size 2024-04-15T17:33:44.510 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:33:44.510 INFO:teuthology.orchestra.run.smithi055.stdout:Installing: 2024-04-15T17:33:44.510 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-volume noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 264 k 2024-04-15T17:33:44.510 INFO:teuthology.orchestra.run.smithi055.stdout:Installing dependencies: 2024-04-15T17:33:44.510 INFO:teuthology.orchestra.run.smithi055.stdout: python3-packaging noarch 20.9-5.el9 CentOS-AppStream 69 k 2024-04-15T17:33:44.510 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:44.510 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction Summary 2024-04-15T17:33:44.511 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:33:44.511 INFO:teuthology.orchestra.run.smithi055.stdout:Install 2 Packages 2024-04-15T17:33:44.511 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:44.511 INFO:teuthology.orchestra.run.smithi055.stdout:Total download size: 332 k 2024-04-15T17:33:44.511 INFO:teuthology.orchestra.run.smithi055.stdout:Installed size: 1.5 M 2024-04-15T17:33:44.511 INFO:teuthology.orchestra.run.smithi055.stdout:Downloading Packages: 2024-04-15T17:33:44.650 INFO:teuthology.orchestra.run.smithi055.stdout:(1/2): python3-packaging-20.9-5.el9.noarch.rpm 499 kB/s | 69 kB 00:00 2024-04-15T17:33:44.658 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-04-15T17:33:44.686 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : ceph-mgr-diskprediction-local-2:19.0.0-3080.gc2d8c 12/12 2024-04-15T17:33:44.753 INFO:teuthology.orchestra.run.smithi118.stdout:Last metadata expiration check: 0:01:14 ago on Mon 15 Apr 2024 05:32:30 PM UTC. 2024-04-15T17:33:44.858 INFO:teuthology.orchestra.run.smithi055.stdout:(2/2): ceph-volume-19.0.0-3080.gc2d8c315.el9.no 761 kB/s | 264 kB 00:00 2024-04-15T17:33:44.859 INFO:teuthology.orchestra.run.smithi055.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:33:44.860 INFO:teuthology.orchestra.run.smithi055.stdout:Total 953 kB/s | 332 kB 00:00 2024-04-15T17:33:44.860 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction check 2024-04-15T17:33:44.869 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction check succeeded. 2024-04-15T17:33:44.869 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction test 2024-04-15T17:33:44.907 INFO:teuthology.orchestra.run.smithi118.stdout:Dependencies resolved. 2024-04-15T17:33:44.907 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction test succeeded. 2024-04-15T17:33:44.908 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction 2024-04-15T17:33:44.908 INFO:teuthology.orchestra.run.smithi118.stdout:============================================================================================ 2024-04-15T17:33:44.908 INFO:teuthology.orchestra.run.smithi118.stdout: Package Arch Version Repository Size 2024-04-15T17:33:44.908 INFO:teuthology.orchestra.run.smithi118.stdout:============================================================================================ 2024-04-15T17:33:44.908 INFO:teuthology.orchestra.run.smithi118.stdout:Installing: 2024-04-15T17:33:44.908 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-mgr-diskprediction-local noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 7.4 M 2024-04-15T17:33:44.909 INFO:teuthology.orchestra.run.smithi118.stdout:Installing dependencies: 2024-04-15T17:33:44.909 INFO:teuthology.orchestra.run.smithi118.stdout: flexiblas x86_64 3.0.4-8.el9 CentOS-AppStream 32 k 2024-04-15T17:33:44.909 INFO:teuthology.orchestra.run.smithi118.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 CentOS-AppStream 3.0 M 2024-04-15T17:33:44.909 INFO:teuthology.orchestra.run.smithi118.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 CentOS-AppStream 17 k 2024-04-15T17:33:44.909 INFO:teuthology.orchestra.run.smithi118.stdout: libgfortran x86_64 11.4.1-3.el9 baseos 803 k 2024-04-15T17:33:44.909 INFO:teuthology.orchestra.run.smithi118.stdout: libquadmath x86_64 11.4.1-3.el9 baseos 195 k 2024-04-15T17:33:44.909 INFO:teuthology.orchestra.run.smithi118.stdout: openblas x86_64 0.3.21-2.el9 CentOS-AppStream 34 k 2024-04-15T17:33:44.909 INFO:teuthology.orchestra.run.smithi118.stdout: openblas-openmp x86_64 0.3.21-2.el9 CentOS-AppStream 4.7 M 2024-04-15T17:33:44.909 INFO:teuthology.orchestra.run.smithi118.stdout: python3-devel x86_64 3.9.17-2.el9 appstream 245 k 2024-04-15T17:33:44.909 INFO:teuthology.orchestra.run.smithi118.stdout: python3-numpy x86_64 1:1.20.1-5.el9 CentOS-AppStream 4.8 M 2024-04-15T17:33:44.909 INFO:teuthology.orchestra.run.smithi118.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 CentOS-AppStream 217 k 2024-04-15T17:33:44.909 INFO:teuthology.orchestra.run.smithi118.stdout: python3-scipy x86_64 1.6.2-8.el9 CentOS-AppStream 16 M 2024-04-15T17:33:44.909 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:44.910 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction Summary 2024-04-15T17:33:44.910 INFO:teuthology.orchestra.run.smithi118.stdout:============================================================================================ 2024-04-15T17:33:44.910 INFO:teuthology.orchestra.run.smithi118.stdout:Install 12 Packages 2024-04-15T17:33:44.910 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:44.910 INFO:teuthology.orchestra.run.smithi118.stdout:Total download size: 37 M 2024-04-15T17:33:44.910 INFO:teuthology.orchestra.run.smithi118.stdout:Installed size: 209 M 2024-04-15T17:33:44.911 INFO:teuthology.orchestra.run.smithi118.stdout:Downloading Packages: 2024-04-15T17:33:45.057 INFO:teuthology.orchestra.run.smithi055.stdout: Preparing : 1/1 2024-04-15T17:33:45.249 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-04-15T17:33:45.277 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : ceph-volume-2:19.0.0-3080.gc2d8c315.el9.noarch 2/2 2024-04-15T17:33:45.293 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: ceph-volume-2:19.0.0-3080.gc2d8c315.el9.noarch 2/2 2024-04-15T17:33:45.294 INFO:teuthology.orchestra.run.smithi055.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T17:33:45.294 INFO:teuthology.orchestra.run.smithi055.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-04-15T17:33:45.294 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:45.426 INFO:teuthology.orchestra.run.smithi118.stdout:(1/12): flexiblas-3.0.4-8.el9.x86_64.rpm 180 kB/s | 32 kB 00:00 2024-04-15T17:33:45.451 INFO:teuthology.orchestra.run.smithi118.stdout:(2/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 724 kB/s | 17 kB 00:00 2024-04-15T17:33:45.476 INFO:teuthology.orchestra.run.smithi118.stdout:(3/12): openblas-0.3.21-2.el9.x86_64.rpm 1.3 MB/s | 34 kB 00:00 2024-04-15T17:33:45.652 INFO:teuthology.orchestra.run.smithi118.stdout:(4/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 7.4 MB/s | 3.0 MB 00:00 2024-04-15T17:33:45.710 INFO:teuthology.orchestra.run.smithi118.stdout:(5/12): openblas-openmp-0.3.21-2.el9.x86_64.rpm 20 MB/s | 4.7 MB 00:00 2024-04-15T17:33:45.836 INFO:teuthology.orchestra.run.smithi118.stdout:(6/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 26 MB/s | 4.8 MB 00:00 2024-04-15T17:33:45.861 INFO:teuthology.orchestra.run.smithi118.stdout:(7/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 1.4 MB/s | 217 kB 00:00 2024-04-15T17:33:46.017 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : ceph-volume-2:19.0.0-3080.gc2d8c315.el9.noarch 1/2 2024-04-15T17:33:46.103 INFO:teuthology.orchestra.run.smithi118.stdout:(8/12): ceph-mgr-diskprediction-local-19.0.0-30 8.7 MB/s | 7.4 MB 00:00 2024-04-15T17:33:46.384 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-04-15T17:33:46.384 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:46.384 INFO:teuthology.orchestra.run.smithi055.stdout:Installed: 2024-04-15T17:33:46.384 INFO:teuthology.orchestra.run.smithi055.stdout: ceph-volume-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:33:46.384 INFO:teuthology.orchestra.run.smithi055.stdout: python3-packaging-20.9-5.el9.noarch 2024-04-15T17:33:46.384 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:46.384 INFO:teuthology.orchestra.run.smithi055.stdout:Complete! 2024-04-15T17:33:46.470 INFO:teuthology.orchestra.run.smithi118.stdout:(9/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 25 MB/s | 16 MB 00:00 2024-04-15T17:33:46.620 INFO:teuthology.orchestra.run.smithi118.stdout:(10/12): python3-devel-3.9.17-2.el9.x86_64.rpm 1.6 MB/s | 245 kB 00:00 2024-04-15T17:33:46.645 INFO:teuthology.orchestra.run.smithi118.stdout:(11/12): libquadmath-11.4.1-3.el9.x86_64.rpm 379 kB/s | 195 kB 00:00 2024-04-15T17:33:46.687 INFO:teuthology.orchestra.run.smithi118.stdout:(12/12): libgfortran-11.4.1-3.el9.x86_64.rpm 973 kB/s | 803 kB 00:00 2024-04-15T17:33:46.691 INFO:teuthology.orchestra.run.smithi118.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:33:46.691 INFO:teuthology.orchestra.run.smithi118.stdout:Total 21 MB/s | 37 MB 00:01 2024-04-15T17:33:46.733 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction check 2024-04-15T17:33:46.734 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum -y install librados-devel 2024-04-15T17:33:46.757 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction check succeeded. 2024-04-15T17:33:46.757 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction test 2024-04-15T17:33:47.128 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction test succeeded. 2024-04-15T17:33:47.129 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction 2024-04-15T17:33:47.187 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.0.0-3080.gc2d8c 12/12 2024-04-15T17:33:47.187 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.0.0-3080.gc2d8c 1/12 2024-04-15T17:33:47.187 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 2/12 2024-04-15T17:33:47.187 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 3/12 2024-04-15T17:33:47.187 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 4/12 2024-04-15T17:33:47.187 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-15T17:33:47.188 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-15T17:33:47.188 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 7/12 2024-04-15T17:33:47.188 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 8/12 2024-04-15T17:33:47.188 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 9/12 2024-04-15T17:33:47.188 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : libgfortran-11.4.1-3.el9.x86_64 10/12 2024-04-15T17:33:47.188 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : libquadmath-11.4.1-3.el9.x86_64 11/12 2024-04-15T17:33:47.333 INFO:teuthology.orchestra.run.smithi055.stdout:Last metadata expiration check: 0:01:38 ago on Mon 15 Apr 2024 05:32:09 PM UTC. 2024-04-15T17:33:47.493 INFO:teuthology.orchestra.run.smithi055.stdout:Dependencies resolved. 2024-04-15T17:33:47.493 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:33:47.493 INFO:teuthology.orchestra.run.smithi055.stdout: Package Arch Version Repo Size 2024-04-15T17:33:47.493 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:33:47.493 INFO:teuthology.orchestra.run.smithi055.stdout:Installing: 2024-04-15T17:33:47.493 INFO:teuthology.orchestra.run.smithi055.stdout: librados-devel x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 127 k 2024-04-15T17:33:47.494 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:47.494 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction Summary 2024-04-15T17:33:47.494 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:33:47.494 INFO:teuthology.orchestra.run.smithi055.stdout:Install 1 Package 2024-04-15T17:33:47.494 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:47.494 INFO:teuthology.orchestra.run.smithi055.stdout:Total download size: 127 k 2024-04-15T17:33:47.495 INFO:teuthology.orchestra.run.smithi055.stdout:Installed size: 456 k 2024-04-15T17:33:47.495 INFO:teuthology.orchestra.run.smithi055.stdout:Downloading Packages: 2024-04-15T17:33:47.673 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-devel-3.9.17-2.el9.x86_64 12/12 2024-04-15T17:33:47.673 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:47.673 INFO:teuthology.orchestra.run.smithi092.stdout:Installed: 2024-04-15T17:33:47.673 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-mgr-diskprediction-local-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:33:47.674 INFO:teuthology.orchestra.run.smithi092.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-04-15T17:33:47.674 INFO:teuthology.orchestra.run.smithi092.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-04-15T17:33:47.674 INFO:teuthology.orchestra.run.smithi092.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-04-15T17:33:47.674 INFO:teuthology.orchestra.run.smithi092.stdout: libgfortran-11.4.1-3.el9.x86_64 2024-04-15T17:33:47.674 INFO:teuthology.orchestra.run.smithi092.stdout: libquadmath-11.4.1-3.el9.x86_64 2024-04-15T17:33:47.674 INFO:teuthology.orchestra.run.smithi092.stdout: openblas-0.3.21-2.el9.x86_64 2024-04-15T17:33:47.674 INFO:teuthology.orchestra.run.smithi092.stdout: openblas-openmp-0.3.21-2.el9.x86_64 2024-04-15T17:33:47.674 INFO:teuthology.orchestra.run.smithi092.stdout: python3-devel-3.9.17-2.el9.x86_64 2024-04-15T17:33:47.674 INFO:teuthology.orchestra.run.smithi092.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-04-15T17:33:47.674 INFO:teuthology.orchestra.run.smithi092.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-04-15T17:33:47.674 INFO:teuthology.orchestra.run.smithi092.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-04-15T17:33:47.674 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:47.675 INFO:teuthology.orchestra.run.smithi092.stdout:Complete! 2024-04-15T17:33:47.854 INFO:teuthology.orchestra.run.smithi118.stdout: Preparing : 1/1 2024-04-15T17:33:47.935 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : libquadmath-11.4.1-3.el9.x86_64 1/12 2024-04-15T17:33:47.966 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : libgfortran-11.4.1-3.el9.x86_64 2/12 2024-04-15T17:33:47.997 INFO:teuthology.orchestra.run.smithi055.stdout:librados-devel-19.0.0-3080.gc2d8c315.el9.x86_64 252 kB/s | 127 kB 00:00 2024-04-15T17:33:47.998 INFO:teuthology.orchestra.run.smithi055.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:33:47.998 INFO:teuthology.orchestra.run.smithi055.stdout:Total 251 kB/s | 127 kB 00:00 2024-04-15T17:33:47.998 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction check 2024-04-15T17:33:48.004 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction check succeeded. 2024-04-15T17:33:48.004 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction test 2024-04-15T17:33:48.061 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 3/12 2024-04-15T17:33:48.066 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction test succeeded. 2024-04-15T17:33:48.066 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction 2024-04-15T17:33:48.088 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum -y install ceph-mgr-rook 2024-04-15T17:33:48.115 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-devel-3.9.17-2.el9.x86_64 4/12 2024-04-15T17:33:48.213 INFO:teuthology.orchestra.run.smithi055.stdout: Preparing : 1/1 2024-04-15T17:33:48.280 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-15T17:33:48.315 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : librados-devel-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:33:48.327 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-15T17:33:48.413 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-04-15T17:33:48.676 INFO:teuthology.orchestra.run.smithi092.stdout:Last metadata expiration check: 0:01:27 ago on Mon 15 Apr 2024 05:32:21 PM UTC. 2024-04-15T17:33:48.766 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: librados-devel-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:33:48.831 INFO:teuthology.orchestra.run.smithi092.stdout:Dependencies resolved. 2024-04-15T17:33:48.832 INFO:teuthology.orchestra.run.smithi092.stdout:======================================================================================== 2024-04-15T17:33:48.833 INFO:teuthology.orchestra.run.smithi092.stdout: Package Arch Version Repository Size 2024-04-15T17:33:48.833 INFO:teuthology.orchestra.run.smithi092.stdout:======================================================================================== 2024-04-15T17:33:48.833 INFO:teuthology.orchestra.run.smithi092.stdout:Installing: 2024-04-15T17:33:48.833 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-mgr-rook noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 49 k 2024-04-15T17:33:48.833 INFO:teuthology.orchestra.run.smithi092.stdout:Installing dependencies: 2024-04-15T17:33:48.833 INFO:teuthology.orchestra.run.smithi092.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-04-15T17:33:48.833 INFO:teuthology.orchestra.run.smithi092.stdout: python3-certifi noarch 2021.10.8-2.el9 epel 15 k 2024-04-15T17:33:48.833 INFO:teuthology.orchestra.run.smithi092.stdout: python3-google-auth noarch 1:2.28.2-1.el9 epel 203 k 2024-04-15T17:33:48.833 INFO:teuthology.orchestra.run.smithi092.stdout: python3-jsonpatch noarch 1.21-16.el9 CentOS-AppStream 24 k 2024-04-15T17:33:48.833 INFO:teuthology.orchestra.run.smithi092.stdout: python3-jsonpointer noarch 2.0-4.el9 CentOS-AppStream 18 k 2024-04-15T17:33:48.833 INFO:teuthology.orchestra.run.smithi092.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-04-15T17:33:48.833 INFO:teuthology.orchestra.run.smithi092.stdout: python3-oauthlib noarch 3.1.1-5.el9 CentOS-AppStream 174 k 2024-04-15T17:33:48.834 INFO:teuthology.orchestra.run.smithi092.stdout: python3-pyasn1 noarch 0.4.8-6.el9 CentOS-AppStream 132 k 2024-04-15T17:33:48.834 INFO:teuthology.orchestra.run.smithi092.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 CentOS-AppStream 211 k 2024-04-15T17:33:48.834 INFO:teuthology.orchestra.run.smithi092.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 CentOS-AppStream 43 k 2024-04-15T17:33:48.834 INFO:teuthology.orchestra.run.smithi092.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-04-15T17:33:48.834 INFO:teuthology.orchestra.run.smithi092.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-04-15T17:33:48.834 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:48.834 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction Summary 2024-04-15T17:33:48.834 INFO:teuthology.orchestra.run.smithi092.stdout:======================================================================================== 2024-04-15T17:33:48.834 INFO:teuthology.orchestra.run.smithi092.stdout:Install 13 Packages 2024-04-15T17:33:48.834 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:48.835 INFO:teuthology.orchestra.run.smithi092.stdout:Total download size: 2.0 M 2024-04-15T17:33:48.835 INFO:teuthology.orchestra.run.smithi092.stdout:Installed size: 26 M 2024-04-15T17:33:48.835 INFO:teuthology.orchestra.run.smithi092.stdout:Downloading Packages: 2024-04-15T17:33:49.058 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : librados-devel-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:33:49.058 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:49.058 INFO:teuthology.orchestra.run.smithi055.stdout:Installed: 2024-04-15T17:33:49.058 INFO:teuthology.orchestra.run.smithi055.stdout: librados-devel-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:49.058 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:49.058 INFO:teuthology.orchestra.run.smithi055.stdout:Complete! 2024-04-15T17:33:49.060 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-04-15T17:33:49.191 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-04-15T17:33:49.284 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum -y install libcephfs2 2024-04-15T17:33:49.501 INFO:teuthology.orchestra.run.smithi092.stdout:(1/13): python3-jsonpatch-1.21-16.el9.noarch.rp 125 kB/s | 24 kB 00:00 2024-04-15T17:33:49.526 INFO:teuthology.orchestra.run.smithi092.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 82 kB/s | 18 kB 00:00 2024-04-15T17:33:49.585 INFO:teuthology.orchestra.run.smithi092.stdout:(3/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 2.0 MB/s | 174 kB 00:00 2024-04-15T17:33:49.611 INFO:teuthology.orchestra.run.smithi092.stdout:(4/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.5 MB/s | 132 kB 00:00 2024-04-15T17:33:49.635 INFO:teuthology.orchestra.run.smithi092.stdout:(5/13): python3-pyasn1-modules-0.4.8-6.el9.noar 4.1 MB/s | 211 kB 00:00 2024-04-15T17:33:49.661 INFO:teuthology.orchestra.run.smithi092.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 855 kB/s | 43 kB 00:00 2024-04-15T17:33:49.853 INFO:teuthology.orchestra.run.smithi092.stdout:(7/13): python3-certifi-2021.10.8-2.el9.noarch. 78 kB/s | 15 kB 00:00 2024-04-15T17:33:49.878 INFO:teuthology.orchestra.run.smithi092.stdout:(8/13): python3-cachetools-4.2.4-1.el9.noarch.r 133 kB/s | 32 kB 00:00 2024-04-15T17:33:49.888 INFO:teuthology.orchestra.run.smithi055.stdout:Last metadata expiration check: 0:01:40 ago on Mon 15 Apr 2024 05:32:09 PM UTC. 2024-04-15T17:33:49.945 INFO:teuthology.orchestra.run.smithi092.stdout:(9/13): ceph-mgr-rook-19.0.0-3080.gc2d8c315.el9 77 kB/s | 49 kB 00:00 2024-04-15T17:33:49.991 INFO:teuthology.orchestra.run.smithi055.stdout:Package libcephfs2-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:33:50.048 INFO:teuthology.orchestra.run.smithi055.stdout:Dependencies resolved. 2024-04-15T17:33:50.049 INFO:teuthology.orchestra.run.smithi055.stdout:Nothing to do. 2024-04-15T17:33:50.049 INFO:teuthology.orchestra.run.smithi055.stdout:Complete! 2024-04-15T17:33:50.121 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum -y install libcephfs-devel 2024-04-15T17:33:50.137 INFO:teuthology.orchestra.run.smithi092.stdout:(10/13): python3-google-auth-2.28.2-1.el9.noarc 714 kB/s | 203 kB 00:00 2024-04-15T17:33:50.195 INFO:teuthology.orchestra.run.smithi092.stdout:(11/13): python3-rsa-4.9-2.el9.noarch.rpm 236 kB/s | 59 kB 00:00 2024-04-15T17:33:50.287 INFO:teuthology.orchestra.run.smithi092.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 597 kB/s | 90 kB 00:00 2024-04-15T17:33:50.362 INFO:teuthology.orchestra.run.smithi092.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 2.1 MB/s | 1.0 MB 00:00 2024-04-15T17:33:50.364 INFO:teuthology.orchestra.run.smithi092.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:33:50.364 INFO:teuthology.orchestra.run.smithi092.stdout:Total 1.3 MB/s | 2.0 MB 00:01 2024-04-15T17:33:50.365 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction check 2024-04-15T17:33:50.378 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction check succeeded. 2024-04-15T17:33:50.379 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction test 2024-04-15T17:33:50.435 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-04-15T17:33:50.470 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction test succeeded. 2024-04-15T17:33:50.470 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction 2024-04-15T17:33:50.737 INFO:teuthology.orchestra.run.smithi055.stdout:Last metadata expiration check: 0:01:41 ago on Mon 15 Apr 2024 05:32:09 PM UTC. 2024-04-15T17:33:50.896 INFO:teuthology.orchestra.run.smithi055.stdout:Dependencies resolved. 2024-04-15T17:33:50.897 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:33:50.897 INFO:teuthology.orchestra.run.smithi055.stdout: Package Arch Version Repo Size 2024-04-15T17:33:50.897 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:33:50.898 INFO:teuthology.orchestra.run.smithi055.stdout:Installing: 2024-04-15T17:33:50.898 INFO:teuthology.orchestra.run.smithi055.stdout: libcephfs-devel x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 32 k 2024-04-15T17:33:50.898 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:50.898 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction Summary 2024-04-15T17:33:50.898 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:33:50.898 INFO:teuthology.orchestra.run.smithi055.stdout:Install 1 Package 2024-04-15T17:33:50.898 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:50.898 INFO:teuthology.orchestra.run.smithi055.stdout:Total download size: 32 k 2024-04-15T17:33:50.898 INFO:teuthology.orchestra.run.smithi055.stdout:Installed size: 142 k 2024-04-15T17:33:50.898 INFO:teuthology.orchestra.run.smithi055.stdout:Downloading Packages: 2024-04-15T17:33:50.979 INFO:teuthology.orchestra.run.smithi092.stdout: Preparing : 1/1 2024-04-15T17:33:51.143 INFO:teuthology.orchestra.run.smithi055.stdout:libcephfs-devel-19.0.0-3080.gc2d8c315.el9.x86_6 130 kB/s | 32 kB 00:00 2024-04-15T17:33:51.143 INFO:teuthology.orchestra.run.smithi055.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:33:51.144 INFO:teuthology.orchestra.run.smithi055.stdout:Total 129 kB/s | 32 kB 00:00 2024-04-15T17:33:51.144 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction check 2024-04-15T17:33:51.147 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction check succeeded. 2024-04-15T17:33:51.148 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction test 2024-04-15T17:33:51.161 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-04-15T17:33:51.172 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction test succeeded. 2024-04-15T17:33:51.172 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction 2024-04-15T17:33:51.230 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-04-15T17:33:51.285 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-04-15T17:33:51.296 INFO:teuthology.orchestra.run.smithi055.stdout: Preparing : 1/1 2024-04-15T17:33:51.323 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-04-15T17:33:51.364 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-certifi-2021.10.8-2.el9.noarch 5/13 2024-04-15T17:33:51.402 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : libcephfs-devel-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:33:51.464 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-04-15T17:33:51.466 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-04-15T17:33:51.512 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : ceph-mgr-diskprediction-local-2:19.0.0-3080.gc2d8c 12/12 2024-04-15T17:33:51.579 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-google-auth-1:2.28.2-1.el9.noarch 7/13 2024-04-15T17:33:51.641 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-04-15T17:33:51.794 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: libcephfs-devel-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:33:52.066 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : libcephfs-devel-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:33:52.066 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:52.066 INFO:teuthology.orchestra.run.smithi055.stdout:Installed: 2024-04-15T17:33:52.066 INFO:teuthology.orchestra.run.smithi055.stdout: libcephfs-devel-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:33:52.067 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:52.067 INFO:teuthology.orchestra.run.smithi055.stdout:Complete! 2024-04-15T17:33:52.223 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum -y install librados2 2024-04-15T17:33:52.375 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-04-15T17:33:52.429 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-04-15T17:33:52.463 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-04-15T17:33:52.510 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-04-15T17:33:52.533 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : ceph-mgr-rook-2:19.0.0-3080.gc2d8c315.el9.noarch 13/13 2024-04-15T17:33:52.814 INFO:teuthology.orchestra.run.smithi055.stdout:Last metadata expiration check: 0:01:43 ago on Mon 15 Apr 2024 05:32:09 PM UTC. 2024-04-15T17:33:52.916 INFO:teuthology.orchestra.run.smithi055.stdout:Package librados2-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:33:52.972 INFO:teuthology.orchestra.run.smithi055.stdout:Dependencies resolved. 2024-04-15T17:33:52.973 INFO:teuthology.orchestra.run.smithi055.stdout:Nothing to do. 2024-04-15T17:33:52.973 INFO:teuthology.orchestra.run.smithi055.stdout:Complete! 2024-04-15T17:33:53.021 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum -y install librbd1 2024-04-15T17:33:53.349 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: ceph-mgr-rook-2:19.0.0-3080.gc2d8c315.el9.noarch 13/13 2024-04-15T17:33:53.350 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : ceph-mgr-rook-2:19.0.0-3080.gc2d8c315.el9.noarch 1/13 2024-04-15T17:33:53.350 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-04-15T17:33:53.350 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-04-15T17:33:53.350 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-04-15T17:33:53.350 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-04-15T17:33:53.350 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-04-15T17:33:53.350 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-04-15T17:33:53.350 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-04-15T17:33:53.351 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-certifi-2021.10.8-2.el9.noarch 9/13 2024-04-15T17:33:53.351 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-google-auth-1:2.28.2-1.el9.noarch 10/13 2024-04-15T17:33:53.351 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-04-15T17:33:53.351 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-04-15T17:33:53.610 INFO:teuthology.orchestra.run.smithi055.stdout:Last metadata expiration check: 0:01:44 ago on Mon 15 Apr 2024 05:32:09 PM UTC. 2024-04-15T17:33:53.714 INFO:teuthology.orchestra.run.smithi055.stdout:Package librbd1-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:33:53.714 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-04-15T17:33:53.714 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:53.715 INFO:teuthology.orchestra.run.smithi092.stdout:Installed: 2024-04-15T17:33:53.715 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-mgr-rook-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:33:53.715 INFO:teuthology.orchestra.run.smithi092.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-04-15T17:33:53.715 INFO:teuthology.orchestra.run.smithi092.stdout: python3-certifi-2021.10.8-2.el9.noarch 2024-04-15T17:33:53.715 INFO:teuthology.orchestra.run.smithi092.stdout: python3-google-auth-1:2.28.2-1.el9.noarch 2024-04-15T17:33:53.715 INFO:teuthology.orchestra.run.smithi092.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-04-15T17:33:53.715 INFO:teuthology.orchestra.run.smithi092.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-04-15T17:33:53.715 INFO:teuthology.orchestra.run.smithi092.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-04-15T17:33:53.715 INFO:teuthology.orchestra.run.smithi092.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-04-15T17:33:53.715 INFO:teuthology.orchestra.run.smithi092.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-04-15T17:33:53.715 INFO:teuthology.orchestra.run.smithi092.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-04-15T17:33:53.716 INFO:teuthology.orchestra.run.smithi092.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-04-15T17:33:53.716 INFO:teuthology.orchestra.run.smithi092.stdout: python3-rsa-4.9-2.el9.noarch 2024-04-15T17:33:53.716 INFO:teuthology.orchestra.run.smithi092.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-04-15T17:33:53.716 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:53.716 INFO:teuthology.orchestra.run.smithi092.stdout:Complete! 2024-04-15T17:33:53.769 INFO:teuthology.orchestra.run.smithi055.stdout:Dependencies resolved. 2024-04-15T17:33:53.770 INFO:teuthology.orchestra.run.smithi055.stdout:Nothing to do. 2024-04-15T17:33:53.770 INFO:teuthology.orchestra.run.smithi055.stdout:Complete! 2024-04-15T17:33:53.828 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum -y install python3-rados 2024-04-15T17:33:54.012 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum -y install ceph-mgr-cephadm 2024-04-15T17:33:54.234 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.0.0-3080.gc2d8c 12/12 2024-04-15T17:33:54.235 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.0.0-3080.gc2d8c 1/12 2024-04-15T17:33:54.235 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 2/12 2024-04-15T17:33:54.235 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 3/12 2024-04-15T17:33:54.235 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 4/12 2024-04-15T17:33:54.235 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-15T17:33:54.235 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-15T17:33:54.235 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 7/12 2024-04-15T17:33:54.235 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 8/12 2024-04-15T17:33:54.235 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 9/12 2024-04-15T17:33:54.235 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : libgfortran-11.4.1-3.el9.x86_64 10/12 2024-04-15T17:33:54.235 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : libquadmath-11.4.1-3.el9.x86_64 11/12 2024-04-15T17:33:54.418 INFO:teuthology.orchestra.run.smithi055.stdout:Last metadata expiration check: 0:01:45 ago on Mon 15 Apr 2024 05:32:09 PM UTC. 2024-04-15T17:33:54.521 INFO:teuthology.orchestra.run.smithi055.stdout:Package python3-rados-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:33:54.573 INFO:teuthology.orchestra.run.smithi055.stdout:Dependencies resolved. 2024-04-15T17:33:54.574 INFO:teuthology.orchestra.run.smithi055.stdout:Nothing to do. 2024-04-15T17:33:54.574 INFO:teuthology.orchestra.run.smithi055.stdout:Complete! 2024-04-15T17:33:54.590 INFO:teuthology.orchestra.run.smithi092.stdout:Last metadata expiration check: 0:01:33 ago on Mon 15 Apr 2024 05:32:21 PM UTC. 2024-04-15T17:33:54.625 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum -y install python3-rgw 2024-04-15T17:33:54.628 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-devel-3.9.17-2.el9.x86_64 12/12 2024-04-15T17:33:54.629 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:54.629 INFO:teuthology.orchestra.run.smithi118.stdout:Installed: 2024-04-15T17:33:54.629 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-mgr-diskprediction-local-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:33:54.629 INFO:teuthology.orchestra.run.smithi118.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-04-15T17:33:54.629 INFO:teuthology.orchestra.run.smithi118.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-04-15T17:33:54.629 INFO:teuthology.orchestra.run.smithi118.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-04-15T17:33:54.629 INFO:teuthology.orchestra.run.smithi118.stdout: libgfortran-11.4.1-3.el9.x86_64 2024-04-15T17:33:54.629 INFO:teuthology.orchestra.run.smithi118.stdout: libquadmath-11.4.1-3.el9.x86_64 2024-04-15T17:33:54.629 INFO:teuthology.orchestra.run.smithi118.stdout: openblas-0.3.21-2.el9.x86_64 2024-04-15T17:33:54.629 INFO:teuthology.orchestra.run.smithi118.stdout: openblas-openmp-0.3.21-2.el9.x86_64 2024-04-15T17:33:54.629 INFO:teuthology.orchestra.run.smithi118.stdout: python3-devel-3.9.17-2.el9.x86_64 2024-04-15T17:33:54.629 INFO:teuthology.orchestra.run.smithi118.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-04-15T17:33:54.629 INFO:teuthology.orchestra.run.smithi118.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-04-15T17:33:54.629 INFO:teuthology.orchestra.run.smithi118.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-04-15T17:33:54.630 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:54.630 INFO:teuthology.orchestra.run.smithi118.stdout:Complete! 2024-04-15T17:33:54.743 INFO:teuthology.orchestra.run.smithi092.stdout:Dependencies resolved. 2024-04-15T17:33:54.744 INFO:teuthology.orchestra.run.smithi092.stdout:======================================================================================== 2024-04-15T17:33:54.744 INFO:teuthology.orchestra.run.smithi092.stdout: Package Arch Version Repository Size 2024-04-15T17:33:54.744 INFO:teuthology.orchestra.run.smithi092.stdout:======================================================================================== 2024-04-15T17:33:54.744 INFO:teuthology.orchestra.run.smithi092.stdout:Installing: 2024-04-15T17:33:54.744 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-mgr-cephadm noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 142 k 2024-04-15T17:33:54.744 INFO:teuthology.orchestra.run.smithi092.stdout:Installing dependencies: 2024-04-15T17:33:54.744 INFO:teuthology.orchestra.run.smithi092.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-04-15T17:33:54.744 INFO:teuthology.orchestra.run.smithi092.stdout: python3-babel noarch 2.9.1-2.el9 CentOS-AppStream 5.8 M 2024-04-15T17:33:54.745 INFO:teuthology.orchestra.run.smithi092.stdout: python3-jinja2 noarch 2.11.3-5.el9 appstream 248 k 2024-04-15T17:33:54.745 INFO:teuthology.orchestra.run.smithi092.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-04-15T17:33:54.745 INFO:teuthology.orchestra.run.smithi092.stdout: python3-typing-extensions noarch 4.4.0-2.el9 epel 51 k 2024-04-15T17:33:54.745 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:54.745 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction Summary 2024-04-15T17:33:54.745 INFO:teuthology.orchestra.run.smithi092.stdout:======================================================================================== 2024-04-15T17:33:54.745 INFO:teuthology.orchestra.run.smithi092.stdout:Install 6 Packages 2024-04-15T17:33:54.745 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:54.746 INFO:teuthology.orchestra.run.smithi092.stdout:Total download size: 6.8 M 2024-04-15T17:33:54.746 INFO:teuthology.orchestra.run.smithi092.stdout:Installed size: 33 M 2024-04-15T17:33:54.746 INFO:teuthology.orchestra.run.smithi092.stdout:Downloading Packages: 2024-04-15T17:33:55.035 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum -y install ceph-mgr-rook 2024-04-15T17:33:55.216 INFO:teuthology.orchestra.run.smithi055.stdout:Last metadata expiration check: 0:01:46 ago on Mon 15 Apr 2024 05:32:09 PM UTC. 2024-04-15T17:33:55.289 INFO:teuthology.orchestra.run.smithi092.stdout:(1/6): python3-babel-2.9.1-2.el9.noarch.rpm 18 MB/s | 5.8 MB 00:00 2024-04-15T17:33:55.314 INFO:teuthology.orchestra.run.smithi092.stdout:(2/6): python3-jinja2-2.11.3-5.el9.noarch.rpm 717 kB/s | 248 kB 00:00 2024-04-15T17:33:55.317 INFO:teuthology.orchestra.run.smithi055.stdout:Package python3-rgw-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:33:55.371 INFO:teuthology.orchestra.run.smithi055.stdout:Dependencies resolved. 2024-04-15T17:33:55.372 INFO:teuthology.orchestra.run.smithi055.stdout:Nothing to do. 2024-04-15T17:33:55.372 INFO:teuthology.orchestra.run.smithi055.stdout:Complete! 2024-04-15T17:33:55.419 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum -y install python3-cephfs 2024-04-15T17:33:55.464 INFO:teuthology.orchestra.run.smithi092.stdout:(3/6): python3-natsort-7.1.1-5.el9.noarch.rpm 385 kB/s | 58 kB 00:00 2024-04-15T17:33:55.531 INFO:teuthology.orchestra.run.smithi092.stdout:(4/6): python3-typing-extensions-4.4.0-2.el9.no 765 kB/s | 51 kB 00:00 2024-04-15T17:33:55.573 INFO:teuthology.orchestra.run.smithi092.stdout:(5/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 1.9 MB/s | 548 kB 00:00 2024-04-15T17:33:55.619 INFO:teuthology.orchestra.run.smithi118.stdout:Last metadata expiration check: 0:01:25 ago on Mon 15 Apr 2024 05:32:30 PM UTC. 2024-04-15T17:33:55.775 INFO:teuthology.orchestra.run.smithi118.stdout:Dependencies resolved. 2024-04-15T17:33:55.776 INFO:teuthology.orchestra.run.smithi118.stdout:======================================================================================== 2024-04-15T17:33:55.776 INFO:teuthology.orchestra.run.smithi118.stdout: Package Arch Version Repository Size 2024-04-15T17:33:55.776 INFO:teuthology.orchestra.run.smithi118.stdout:======================================================================================== 2024-04-15T17:33:55.776 INFO:teuthology.orchestra.run.smithi118.stdout:Installing: 2024-04-15T17:33:55.776 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-mgr-rook noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 49 k 2024-04-15T17:33:55.777 INFO:teuthology.orchestra.run.smithi118.stdout:Installing dependencies: 2024-04-15T17:33:55.777 INFO:teuthology.orchestra.run.smithi118.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-04-15T17:33:55.777 INFO:teuthology.orchestra.run.smithi118.stdout: python3-certifi noarch 2021.10.8-2.el9 epel 15 k 2024-04-15T17:33:55.777 INFO:teuthology.orchestra.run.smithi118.stdout: python3-google-auth noarch 1:2.28.2-1.el9 epel 203 k 2024-04-15T17:33:55.777 INFO:teuthology.orchestra.run.smithi118.stdout: python3-jsonpatch noarch 1.21-16.el9 CentOS-AppStream 24 k 2024-04-15T17:33:55.777 INFO:teuthology.orchestra.run.smithi118.stdout: python3-jsonpointer noarch 2.0-4.el9 CentOS-AppStream 18 k 2024-04-15T17:33:55.777 INFO:teuthology.orchestra.run.smithi118.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-04-15T17:33:55.777 INFO:teuthology.orchestra.run.smithi118.stdout: python3-oauthlib noarch 3.1.1-5.el9 CentOS-AppStream 174 k 2024-04-15T17:33:55.777 INFO:teuthology.orchestra.run.smithi118.stdout: python3-pyasn1 noarch 0.4.8-6.el9 CentOS-AppStream 132 k 2024-04-15T17:33:55.777 INFO:teuthology.orchestra.run.smithi118.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 CentOS-AppStream 211 k 2024-04-15T17:33:55.777 INFO:teuthology.orchestra.run.smithi118.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 CentOS-AppStream 43 k 2024-04-15T17:33:55.777 INFO:teuthology.orchestra.run.smithi118.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-04-15T17:33:55.777 INFO:teuthology.orchestra.run.smithi118.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-04-15T17:33:55.778 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:55.778 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction Summary 2024-04-15T17:33:55.778 INFO:teuthology.orchestra.run.smithi118.stdout:======================================================================================== 2024-04-15T17:33:55.778 INFO:teuthology.orchestra.run.smithi118.stdout:Install 13 Packages 2024-04-15T17:33:55.778 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:33:55.778 INFO:teuthology.orchestra.run.smithi118.stdout:Total download size: 2.0 M 2024-04-15T17:33:55.778 INFO:teuthology.orchestra.run.smithi118.stdout:Installed size: 26 M 2024-04-15T17:33:55.779 INFO:teuthology.orchestra.run.smithi118.stdout:Downloading Packages: 2024-04-15T17:33:55.781 INFO:teuthology.orchestra.run.smithi092.stdout:(6/6): ceph-mgr-cephadm-19.0.0-3080.gc2d8c315.e 175 kB/s | 142 kB 00:00 2024-04-15T17:33:55.783 INFO:teuthology.orchestra.run.smithi092.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:33:55.783 INFO:teuthology.orchestra.run.smithi092.stdout:Total 6.6 MB/s | 6.8 MB 00:01 2024-04-15T17:33:55.797 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction check 2024-04-15T17:33:55.808 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction check succeeded. 2024-04-15T17:33:55.808 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction test 2024-04-15T17:33:55.898 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction test succeeded. 2024-04-15T17:33:55.899 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction 2024-04-15T17:33:56.010 INFO:teuthology.orchestra.run.smithi055.stdout:Last metadata expiration check: 0:01:47 ago on Mon 15 Apr 2024 05:32:09 PM UTC. 2024-04-15T17:33:56.112 INFO:teuthology.orchestra.run.smithi118.stdout:(1/13): python3-jsonpatch-1.21-16.el9.noarch.rp 147 kB/s | 24 kB 00:00 2024-04-15T17:33:56.113 INFO:teuthology.orchestra.run.smithi055.stdout:Package python3-cephfs-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:33:56.137 INFO:teuthology.orchestra.run.smithi118.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 94 kB/s | 18 kB 00:00 2024-04-15T17:33:56.168 INFO:teuthology.orchestra.run.smithi055.stdout:Dependencies resolved. 2024-04-15T17:33:56.169 INFO:teuthology.orchestra.run.smithi055.stdout:Nothing to do. 2024-04-15T17:33:56.169 INFO:teuthology.orchestra.run.smithi055.stdout:Complete! 2024-04-15T17:33:56.217 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum -y install python3-rbd 2024-04-15T17:33:56.231 INFO:teuthology.orchestra.run.smithi092.stdout: Preparing : 1/1 2024-04-15T17:33:56.254 INFO:teuthology.orchestra.run.smithi118.stdout:(3/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 1.5 MB/s | 174 kB 00:00 2024-04-15T17:33:56.280 INFO:teuthology.orchestra.run.smithi118.stdout:(4/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 933 kB/s | 132 kB 00:00 2024-04-15T17:33:56.313 INFO:teuthology.orchestra.run.smithi118.stdout:(5/13): python3-pyasn1-modules-0.4.8-6.el9.noar 3.5 MB/s | 211 kB 00:00 2024-04-15T17:33:56.339 INFO:teuthology.orchestra.run.smithi118.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 729 kB/s | 43 kB 00:00 2024-04-15T17:33:56.390 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-typing-extensions-4.4.0-2.el9.noarch 1/6 2024-04-15T17:33:56.441 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-04-15T17:33:56.489 INFO:teuthology.orchestra.run.smithi118.stdout:(7/13): ceph-mgr-rook-19.0.0-3080.gc2d8c315.el9 91 kB/s | 49 kB 00:00 2024-04-15T17:33:56.697 INFO:teuthology.orchestra.run.smithi118.stdout:(8/13): python3-certifi-2021.10.8-2.el9.noarch. 42 kB/s | 15 kB 00:00 2024-04-15T17:33:56.723 INFO:teuthology.orchestra.run.smithi118.stdout:(9/13): python3-cachetools-4.2.4-1.el9.noarch.r 79 kB/s | 32 kB 00:00 2024-04-15T17:33:56.810 INFO:teuthology.orchestra.run.smithi055.stdout:Last metadata expiration check: 0:01:47 ago on Mon 15 Apr 2024 05:32:09 PM UTC. 2024-04-15T17:33:56.909 INFO:teuthology.orchestra.run.smithi055.stdout:Package python3-rbd-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:33:56.923 INFO:teuthology.orchestra.run.smithi118.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 295 kB/s | 59 kB 00:00 2024-04-15T17:33:56.963 INFO:teuthology.orchestra.run.smithi055.stdout:Dependencies resolved. 2024-04-15T17:33:56.963 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-04-15T17:33:56.964 INFO:teuthology.orchestra.run.smithi055.stdout:Nothing to do. 2024-04-15T17:33:56.964 INFO:teuthology.orchestra.run.smithi055.stdout:Complete! 2024-04-15T17:33:57.019 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum -y install rbd-fuse 2024-04-15T17:33:57.044 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-04-15T17:33:57.082 INFO:teuthology.orchestra.run.smithi118.stdout:(11/13): python3-websocket-client-1.2.3-2.el9.n 566 kB/s | 90 kB 00:00 2024-04-15T17:33:57.106 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-jinja2-2.11.3-5.el9.noarch 5/6 2024-04-15T17:33:57.107 INFO:teuthology.orchestra.run.smithi118.stdout:(12/13): python3-google-auth-2.28.2-1.el9.noarc 328 kB/s | 203 kB 00:00 2024-04-15T17:33:57.137 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : ceph-mgr-cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 6/6 2024-04-15T17:33:57.232 INFO:teuthology.orchestra.run.smithi118.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 1.9 MB/s | 1.0 MB 00:00 2024-04-15T17:33:57.237 INFO:teuthology.orchestra.run.smithi118.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:33:57.237 INFO:teuthology.orchestra.run.smithi118.stdout:Total 1.4 MB/s | 2.0 MB 00:01 2024-04-15T17:33:57.237 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction check 2024-04-15T17:33:57.250 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction check succeeded. 2024-04-15T17:33:57.250 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction test 2024-04-15T17:33:57.341 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction test succeeded. 2024-04-15T17:33:57.342 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction 2024-04-15T17:33:57.608 INFO:teuthology.orchestra.run.smithi055.stdout:Last metadata expiration check: 0:01:48 ago on Mon 15 Apr 2024 05:32:09 PM UTC. 2024-04-15T17:33:57.767 INFO:teuthology.orchestra.run.smithi055.stdout:Dependencies resolved. 2024-04-15T17:33:57.767 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:33:57.767 INFO:teuthology.orchestra.run.smithi055.stdout: Package Architecture Version Repository Size 2024-04-15T17:33:57.768 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:33:57.768 INFO:teuthology.orchestra.run.smithi055.stdout:Installing: 2024-04-15T17:33:57.768 INFO:teuthology.orchestra.run.smithi055.stdout: rbd-fuse x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 85 k 2024-04-15T17:33:57.768 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:57.768 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction Summary 2024-04-15T17:33:57.768 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:33:57.768 INFO:teuthology.orchestra.run.smithi055.stdout:Install 1 Package 2024-04-15T17:33:57.768 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:33:57.769 INFO:teuthology.orchestra.run.smithi055.stdout:Total download size: 85 k 2024-04-15T17:33:57.769 INFO:teuthology.orchestra.run.smithi055.stdout:Installed size: 231 k 2024-04-15T17:33:57.769 INFO:teuthology.orchestra.run.smithi055.stdout:Downloading Packages: 2024-04-15T17:33:57.879 INFO:teuthology.orchestra.run.smithi118.stdout: Preparing : 1/1 2024-04-15T17:33:57.893 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 6/6 2024-04-15T17:33:57.893 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : ceph-mgr-cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 1/6 2024-04-15T17:33:57.893 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-04-15T17:33:57.893 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-jinja2-2.11.3-5.el9.noarch 3/6 2024-04-15T17:33:57.893 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-04-15T17:33:57.893 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-04-15T17:33:58.044 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-04-15T17:33:58.107 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-04-15T17:33:58.163 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-04-15T17:33:58.184 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-typing-extensions-4.4.0-2.el9.noarch 6/6 2024-04-15T17:33:58.184 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:58.184 INFO:teuthology.orchestra.run.smithi092.stdout:Installed: 2024-04-15T17:33:58.184 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-mgr-cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:33:58.185 INFO:teuthology.orchestra.run.smithi092.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-04-15T17:33:58.185 INFO:teuthology.orchestra.run.smithi092.stdout: python3-babel-2.9.1-2.el9.noarch 2024-04-15T17:33:58.185 INFO:teuthology.orchestra.run.smithi092.stdout: python3-jinja2-2.11.3-5.el9.noarch 2024-04-15T17:33:58.185 INFO:teuthology.orchestra.run.smithi092.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-04-15T17:33:58.185 INFO:teuthology.orchestra.run.smithi092.stdout: python3-typing-extensions-4.4.0-2.el9.noarch 2024-04-15T17:33:58.185 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:58.185 INFO:teuthology.orchestra.run.smithi092.stdout:Complete! 2024-04-15T17:33:58.193 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-04-15T17:33:58.233 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-certifi-2021.10.8-2.el9.noarch 5/13 2024-04-15T17:33:58.319 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-04-15T17:33:58.435 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-google-auth-1:2.28.2-1.el9.noarch 7/13 2024-04-15T17:33:58.445 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum -y install ceph-fuse 2024-04-15T17:33:58.486 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-04-15T17:33:59.023 INFO:teuthology.orchestra.run.smithi092.stdout:Last metadata expiration check: 0:01:38 ago on Mon 15 Apr 2024 05:32:21 PM UTC. 2024-04-15T17:33:59.154 INFO:teuthology.orchestra.run.smithi055.stdout:rbd-fuse-19.0.0-3080.gc2d8c315.el9.x86_64.rpm 62 kB/s | 85 kB 00:01 2024-04-15T17:33:59.154 INFO:teuthology.orchestra.run.smithi055.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:33:59.155 INFO:teuthology.orchestra.run.smithi055.stdout:Total 61 kB/s | 85 kB 00:01 2024-04-15T17:33:59.155 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction check 2024-04-15T17:33:59.164 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction check succeeded. 2024-04-15T17:33:59.164 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction test 2024-04-15T17:33:59.177 INFO:teuthology.orchestra.run.smithi092.stdout:Dependencies resolved. 2024-04-15T17:33:59.177 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:33:59.177 INFO:teuthology.orchestra.run.smithi092.stdout: Package Arch Version Repository Size 2024-04-15T17:33:59.177 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:33:59.177 INFO:teuthology.orchestra.run.smithi092.stdout:Installing: 2024-04-15T17:33:59.178 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-fuse x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 890 k 2024-04-15T17:33:59.178 INFO:teuthology.orchestra.run.smithi092.stdout:Installing dependencies: 2024-04-15T17:33:59.178 INFO:teuthology.orchestra.run.smithi092.stdout: fuse x86_64 2.9.9-15.el9 CentOS-BaseOS 79 k 2024-04-15T17:33:59.178 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:59.178 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction Summary 2024-04-15T17:33:59.178 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:33:59.178 INFO:teuthology.orchestra.run.smithi092.stdout:Install 2 Packages 2024-04-15T17:33:59.178 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:33:59.179 INFO:teuthology.orchestra.run.smithi092.stdout:Total download size: 968 k 2024-04-15T17:33:59.179 INFO:teuthology.orchestra.run.smithi092.stdout:Installed size: 2.8 M 2024-04-15T17:33:59.179 INFO:teuthology.orchestra.run.smithi092.stdout:Downloading Packages: 2024-04-15T17:33:59.205 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-04-15T17:33:59.229 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction test succeeded. 2024-04-15T17:33:59.230 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction 2024-04-15T17:33:59.258 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-04-15T17:33:59.291 INFO:teuthology.orchestra.run.smithi092.stdout:(1/2): fuse-2.9.9-15.el9.x86_64.rpm 702 kB/s | 79 kB 00:00 2024-04-15T17:33:59.292 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-04-15T17:33:59.340 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-04-15T17:33:59.362 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : ceph-mgr-rook-2:19.0.0-3080.gc2d8c315.el9.noarch 13/13 2024-04-15T17:33:59.482 INFO:teuthology.orchestra.run.smithi055.stdout: Preparing : 1/1 2024-04-15T17:33:59.597 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : rbd-fuse-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:33:59.962 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: rbd-fuse-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:00.210 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: ceph-mgr-rook-2:19.0.0-3080.gc2d8c315.el9.noarch 13/13 2024-04-15T17:34:00.210 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : ceph-mgr-rook-2:19.0.0-3080.gc2d8c315.el9.noarch 1/13 2024-04-15T17:34:00.210 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-04-15T17:34:00.210 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-04-15T17:34:00.210 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-04-15T17:34:00.210 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-04-15T17:34:00.211 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-04-15T17:34:00.211 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-04-15T17:34:00.211 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-04-15T17:34:00.211 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-certifi-2021.10.8-2.el9.noarch 9/13 2024-04-15T17:34:00.211 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-google-auth-1:2.28.2-1.el9.noarch 10/13 2024-04-15T17:34:00.211 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-04-15T17:34:00.211 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-04-15T17:34:00.256 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : rbd-fuse-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:00.256 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:34:00.257 INFO:teuthology.orchestra.run.smithi055.stdout:Installed: 2024-04-15T17:34:00.257 INFO:teuthology.orchestra.run.smithi055.stdout: rbd-fuse-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:34:00.257 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:34:00.257 INFO:teuthology.orchestra.run.smithi055.stdout:Complete! 2024-04-15T17:34:00.513 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum -y install rbd-mirror 2024-04-15T17:34:00.594 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-04-15T17:34:00.594 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:00.594 INFO:teuthology.orchestra.run.smithi118.stdout:Installed: 2024-04-15T17:34:00.594 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-mgr-rook-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:34:00.594 INFO:teuthology.orchestra.run.smithi118.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-04-15T17:34:00.594 INFO:teuthology.orchestra.run.smithi118.stdout: python3-certifi-2021.10.8-2.el9.noarch 2024-04-15T17:34:00.594 INFO:teuthology.orchestra.run.smithi118.stdout: python3-google-auth-1:2.28.2-1.el9.noarch 2024-04-15T17:34:00.594 INFO:teuthology.orchestra.run.smithi118.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-04-15T17:34:00.594 INFO:teuthology.orchestra.run.smithi118.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-04-15T17:34:00.595 INFO:teuthology.orchestra.run.smithi118.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-04-15T17:34:00.595 INFO:teuthology.orchestra.run.smithi118.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-04-15T17:34:00.595 INFO:teuthology.orchestra.run.smithi118.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-04-15T17:34:00.595 INFO:teuthology.orchestra.run.smithi118.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-04-15T17:34:00.595 INFO:teuthology.orchestra.run.smithi118.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-04-15T17:34:00.595 INFO:teuthology.orchestra.run.smithi118.stdout: python3-rsa-4.9-2.el9.noarch 2024-04-15T17:34:00.595 INFO:teuthology.orchestra.run.smithi118.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-04-15T17:34:00.595 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:00.595 INFO:teuthology.orchestra.run.smithi118.stdout:Complete! 2024-04-15T17:34:00.859 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum -y install ceph-mgr-cephadm 2024-04-15T17:34:01.112 INFO:teuthology.orchestra.run.smithi055.stdout:Last metadata expiration check: 0:01:52 ago on Mon 15 Apr 2024 05:32:09 PM UTC. 2024-04-15T17:34:01.270 INFO:teuthology.orchestra.run.smithi055.stdout:Dependencies resolved. 2024-04-15T17:34:01.271 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:34:01.271 INFO:teuthology.orchestra.run.smithi055.stdout: Package Arch Version Repo Size 2024-04-15T17:34:01.271 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:34:01.271 INFO:teuthology.orchestra.run.smithi055.stdout:Installing: 2024-04-15T17:34:01.271 INFO:teuthology.orchestra.run.smithi055.stdout: rbd-mirror x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 3.1 M 2024-04-15T17:34:01.271 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:34:01.271 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction Summary 2024-04-15T17:34:01.271 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:34:01.271 INFO:teuthology.orchestra.run.smithi055.stdout:Install 1 Package 2024-04-15T17:34:01.271 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:34:01.271 INFO:teuthology.orchestra.run.smithi055.stdout:Total download size: 3.1 M 2024-04-15T17:34:01.271 INFO:teuthology.orchestra.run.smithi055.stdout:Installed size: 13 M 2024-04-15T17:34:01.271 INFO:teuthology.orchestra.run.smithi055.stdout:Downloading Packages: 2024-04-15T17:34:01.443 INFO:teuthology.orchestra.run.smithi118.stdout:Last metadata expiration check: 0:01:31 ago on Mon 15 Apr 2024 05:32:30 PM UTC. 2024-04-15T17:34:01.603 INFO:teuthology.orchestra.run.smithi118.stdout:Dependencies resolved. 2024-04-15T17:34:01.604 INFO:teuthology.orchestra.run.smithi118.stdout:======================================================================================== 2024-04-15T17:34:01.604 INFO:teuthology.orchestra.run.smithi118.stdout: Package Arch Version Repository Size 2024-04-15T17:34:01.604 INFO:teuthology.orchestra.run.smithi118.stdout:======================================================================================== 2024-04-15T17:34:01.604 INFO:teuthology.orchestra.run.smithi118.stdout:Installing: 2024-04-15T17:34:01.604 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-mgr-cephadm noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 142 k 2024-04-15T17:34:01.604 INFO:teuthology.orchestra.run.smithi118.stdout:Installing dependencies: 2024-04-15T17:34:01.604 INFO:teuthology.orchestra.run.smithi118.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-04-15T17:34:01.604 INFO:teuthology.orchestra.run.smithi118.stdout: python3-babel noarch 2.9.1-2.el9 CentOS-AppStream 5.8 M 2024-04-15T17:34:01.604 INFO:teuthology.orchestra.run.smithi118.stdout: python3-jinja2 noarch 2.11.3-5.el9 appstream 248 k 2024-04-15T17:34:01.605 INFO:teuthology.orchestra.run.smithi118.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-04-15T17:34:01.605 INFO:teuthology.orchestra.run.smithi118.stdout: python3-typing-extensions noarch 4.4.0-2.el9 epel 51 k 2024-04-15T17:34:01.605 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:01.605 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction Summary 2024-04-15T17:34:01.605 INFO:teuthology.orchestra.run.smithi118.stdout:======================================================================================== 2024-04-15T17:34:01.605 INFO:teuthology.orchestra.run.smithi118.stdout:Install 6 Packages 2024-04-15T17:34:01.605 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:01.606 INFO:teuthology.orchestra.run.smithi118.stdout:Total download size: 6.8 M 2024-04-15T17:34:01.606 INFO:teuthology.orchestra.run.smithi118.stdout:Installed size: 33 M 2024-04-15T17:34:01.606 INFO:teuthology.orchestra.run.smithi118.stdout:Downloading Packages: 2024-04-15T17:34:01.657 INFO:teuthology.orchestra.run.smithi055.stdout:rbd-mirror-19.0.0-3080.gc2d8c315.el9.x86_64.rpm 8.0 MB/s | 3.1 MB 00:00 2024-04-15T17:34:01.658 INFO:teuthology.orchestra.run.smithi055.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:34:01.658 INFO:teuthology.orchestra.run.smithi055.stdout:Total 8.0 MB/s | 3.1 MB 00:00 2024-04-15T17:34:01.658 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction check 2024-04-15T17:34:01.668 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction check succeeded. 2024-04-15T17:34:01.669 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction test 2024-04-15T17:34:01.746 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction test succeeded. 2024-04-15T17:34:01.747 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction 2024-04-15T17:34:02.194 INFO:teuthology.orchestra.run.smithi055.stdout: Preparing : 1/1 2024-04-15T17:34:02.258 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : rbd-mirror-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:02.284 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: rbd-mirror-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:02.284 INFO:teuthology.orchestra.run.smithi055.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T17:34:02.284 INFO:teuthology.orchestra.run.smithi055.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-04-15T17:34:02.284 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-15T17:34:02.284 INFO:teuthology.orchestra.run.smithi055.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-15T17:34:02.284 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:34:02.369 INFO:teuthology.orchestra.run.smithi118.stdout:(1/6): python3-babel-2.9.1-2.el9.noarch.rpm 21 MB/s | 5.8 MB 00:00 2024-04-15T17:34:02.419 INFO:teuthology.orchestra.run.smithi118.stdout:(2/6): ceph-mgr-cephadm-19.0.0-3080.gc2d8c315.e 437 kB/s | 142 kB 00:00 2024-04-15T17:34:02.753 INFO:teuthology.orchestra.run.smithi118.stdout:(3/6): python3-natsort-7.1.1-5.el9.noarch.rpm 173 kB/s | 58 kB 00:00 2024-04-15T17:34:02.862 INFO:teuthology.orchestra.run.smithi118.stdout:(4/6): python3-typing-extensions-4.4.0-2.el9.no 471 kB/s | 51 kB 00:00 2024-04-15T17:34:02.887 INFO:teuthology.orchestra.run.smithi118.stdout:(5/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 1.1 MB/s | 548 kB 00:00 2024-04-15T17:34:03.137 INFO:teuthology.orchestra.run.smithi118.stdout:(6/6): python3-jinja2-2.11.3-5.el9.noarch.rpm 238 kB/s | 248 kB 00:01 2024-04-15T17:34:03.141 INFO:teuthology.orchestra.run.smithi118.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:34:03.141 INFO:teuthology.orchestra.run.smithi118.stdout:Total 4.4 MB/s | 6.8 MB 00:01 2024-04-15T17:34:03.154 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction check 2024-04-15T17:34:03.166 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction check succeeded. 2024-04-15T17:34:03.166 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction test 2024-04-15T17:34:03.255 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction test succeeded. 2024-04-15T17:34:03.255 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction 2024-04-15T17:34:03.432 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : rbd-mirror-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:03.432 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:34:03.432 INFO:teuthology.orchestra.run.smithi055.stdout:Installed: 2024-04-15T17:34:03.432 INFO:teuthology.orchestra.run.smithi055.stdout: rbd-mirror-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:34:03.432 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:34:03.432 INFO:teuthology.orchestra.run.smithi055.stdout:Complete! 2024-04-15T17:34:03.568 INFO:teuthology.orchestra.run.smithi118.stdout: Preparing : 1/1 2024-04-15T17:34:03.677 DEBUG:teuthology.orchestra.run.smithi055:> sudo yum -y install rbd-nbd 2024-04-15T17:34:03.743 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-typing-extensions-4.4.0-2.el9.noarch 1/6 2024-04-15T17:34:03.797 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-04-15T17:34:04.273 INFO:teuthology.orchestra.run.smithi055.stdout:Last metadata expiration check: 0:01:55 ago on Mon 15 Apr 2024 05:32:09 PM UTC. 2024-04-15T17:34:04.310 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-04-15T17:34:04.425 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-04-15T17:34:04.433 INFO:teuthology.orchestra.run.smithi055.stdout:Dependencies resolved. 2024-04-15T17:34:04.433 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:34:04.434 INFO:teuthology.orchestra.run.smithi055.stdout: Package Architecture Version Repository Size 2024-04-15T17:34:04.434 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:34:04.434 INFO:teuthology.orchestra.run.smithi055.stdout:Installing: 2024-04-15T17:34:04.434 INFO:teuthology.orchestra.run.smithi055.stdout: rbd-nbd x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 170 k 2024-04-15T17:34:04.434 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:34:04.434 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction Summary 2024-04-15T17:34:04.434 INFO:teuthology.orchestra.run.smithi055.stdout:================================================================================ 2024-04-15T17:34:04.434 INFO:teuthology.orchestra.run.smithi055.stdout:Install 1 Package 2024-04-15T17:34:04.434 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:34:04.435 INFO:teuthology.orchestra.run.smithi055.stdout:Total download size: 170 k 2024-04-15T17:34:04.435 INFO:teuthology.orchestra.run.smithi055.stdout:Installed size: 494 k 2024-04-15T17:34:04.435 INFO:teuthology.orchestra.run.smithi055.stdout:Downloading Packages: 2024-04-15T17:34:04.487 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-jinja2-2.11.3-5.el9.noarch 5/6 2024-04-15T17:34:04.520 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : ceph-mgr-cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 6/6 2024-04-15T17:34:05.339 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 6/6 2024-04-15T17:34:05.339 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : ceph-mgr-cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 1/6 2024-04-15T17:34:05.339 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-04-15T17:34:05.339 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-jinja2-2.11.3-5.el9.noarch 3/6 2024-04-15T17:34:05.339 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-04-15T17:34:05.340 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-04-15T17:34:05.640 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-typing-extensions-4.4.0-2.el9.noarch 6/6 2024-04-15T17:34:05.640 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:05.640 INFO:teuthology.orchestra.run.smithi118.stdout:Installed: 2024-04-15T17:34:05.640 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-mgr-cephadm-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:34:05.640 INFO:teuthology.orchestra.run.smithi118.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-04-15T17:34:05.641 INFO:teuthology.orchestra.run.smithi118.stdout: python3-babel-2.9.1-2.el9.noarch 2024-04-15T17:34:05.641 INFO:teuthology.orchestra.run.smithi118.stdout: python3-jinja2-2.11.3-5.el9.noarch 2024-04-15T17:34:05.641 INFO:teuthology.orchestra.run.smithi118.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-04-15T17:34:05.641 INFO:teuthology.orchestra.run.smithi118.stdout: python3-typing-extensions-4.4.0-2.el9.noarch 2024-04-15T17:34:05.641 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:05.641 INFO:teuthology.orchestra.run.smithi118.stdout:Complete! 2024-04-15T17:34:05.774 INFO:teuthology.orchestra.run.smithi092.stdout:(2/2): ceph-fuse-19.0.0-3080.gc2d8c315.el9.x86_ 135 kB/s | 890 kB 00:06 2024-04-15T17:34:05.775 INFO:teuthology.orchestra.run.smithi092.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:34:05.775 INFO:teuthology.orchestra.run.smithi092.stdout:Total 147 kB/s | 968 kB 00:06 2024-04-15T17:34:05.776 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction check 2024-04-15T17:34:05.798 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction check succeeded. 2024-04-15T17:34:05.799 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction test 2024-04-15T17:34:05.844 INFO:teuthology.orchestra.run.smithi055.stdout:rbd-nbd-19.0.0-3080.gc2d8c315.el9.x86_64.rpm 121 kB/s | 170 kB 00:01 2024-04-15T17:34:05.844 INFO:teuthology.orchestra.run.smithi055.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:34:05.845 INFO:teuthology.orchestra.run.smithi055.stdout:Total 121 kB/s | 170 kB 00:01 2024-04-15T17:34:05.845 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction check 2024-04-15T17:34:05.855 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction check succeeded. 2024-04-15T17:34:05.855 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction test 2024-04-15T17:34:05.869 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum -y install ceph-fuse 2024-04-15T17:34:05.876 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction test succeeded. 2024-04-15T17:34:05.876 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction 2024-04-15T17:34:05.919 INFO:teuthology.orchestra.run.smithi055.stdout:Transaction test succeeded. 2024-04-15T17:34:05.920 INFO:teuthology.orchestra.run.smithi055.stdout:Running transaction 2024-04-15T17:34:06.053 INFO:teuthology.orchestra.run.smithi092.stdout: Preparing : 1/1 2024-04-15T17:34:06.080 INFO:teuthology.orchestra.run.smithi055.stdout: Preparing : 1/1 2024-04-15T17:34:06.171 INFO:teuthology.orchestra.run.smithi055.stdout: Installing : rbd-nbd-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:06.191 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : fuse-2.9.9-15.el9.x86_64 1/2 2024-04-15T17:34:06.273 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : ceph-fuse-2:19.0.0-3080.gc2d8c315.el9.x86_64 2/2 2024-04-15T17:34:06.447 INFO:teuthology.orchestra.run.smithi118.stdout:Last metadata expiration check: 0:01:36 ago on Mon 15 Apr 2024 05:32:30 PM UTC. 2024-04-15T17:34:06.589 INFO:teuthology.orchestra.run.smithi055.stdout: Running scriptlet: rbd-nbd-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:06.599 INFO:teuthology.orchestra.run.smithi118.stdout:Dependencies resolved. 2024-04-15T17:34:06.600 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:34:06.600 INFO:teuthology.orchestra.run.smithi118.stdout: Package Arch Version Repository Size 2024-04-15T17:34:06.600 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:34:06.600 INFO:teuthology.orchestra.run.smithi118.stdout:Installing: 2024-04-15T17:34:06.600 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-fuse x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 890 k 2024-04-15T17:34:06.600 INFO:teuthology.orchestra.run.smithi118.stdout:Installing dependencies: 2024-04-15T17:34:06.600 INFO:teuthology.orchestra.run.smithi118.stdout: fuse x86_64 2.9.9-15.el9 CentOS-BaseOS 79 k 2024-04-15T17:34:06.600 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:06.600 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction Summary 2024-04-15T17:34:06.600 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:34:06.601 INFO:teuthology.orchestra.run.smithi118.stdout:Install 2 Packages 2024-04-15T17:34:06.601 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:06.601 INFO:teuthology.orchestra.run.smithi118.stdout:Total download size: 968 k 2024-04-15T17:34:06.601 INFO:teuthology.orchestra.run.smithi118.stdout:Installed size: 2.8 M 2024-04-15T17:34:06.601 INFO:teuthology.orchestra.run.smithi118.stdout:Downloading Packages: 2024-04-15T17:34:06.733 INFO:teuthology.orchestra.run.smithi118.stdout:(1/2): fuse-2.9.9-15.el9.x86_64.rpm 600 kB/s | 79 kB 00:00 2024-04-15T17:34:06.897 INFO:teuthology.orchestra.run.smithi055.stdout: Verifying : rbd-nbd-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:06.897 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:34:06.897 INFO:teuthology.orchestra.run.smithi055.stdout:Installed: 2024-04-15T17:34:06.898 INFO:teuthology.orchestra.run.smithi055.stdout: rbd-nbd-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:34:06.898 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:34:06.898 INFO:teuthology.orchestra.run.smithi055.stdout:Complete! 2024-04-15T17:34:07.056 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: ceph-fuse-2:19.0.0-3080.gc2d8c315.el9.x86_64 2/2 2024-04-15T17:34:07.056 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : ceph-fuse-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/2 2024-04-15T17:34:07.066 INFO:teuthology.orchestra.run.smithi118.stdout:(2/2): ceph-fuse-19.0.0-3080.gc2d8c315.el9.x86_ 1.9 MB/s | 890 kB 00:00 2024-04-15T17:34:07.067 INFO:teuthology.orchestra.run.smithi118.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:34:07.068 INFO:teuthology.orchestra.run.smithi118.stdout:Total 2.0 MB/s | 968 kB 00:00 2024-04-15T17:34:07.068 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction check 2024-04-15T17:34:07.088 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction check succeeded. 2024-04-15T17:34:07.088 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction test 2024-04-15T17:34:07.141 DEBUG:teuthology.parallel:result is None 2024-04-15T17:34:07.160 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction test succeeded. 2024-04-15T17:34:07.161 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction 2024-04-15T17:34:07.339 INFO:teuthology.orchestra.run.smithi118.stdout: Preparing : 1/1 2024-04-15T17:34:07.363 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : fuse-2.9.9-15.el9.x86_64 2/2 2024-04-15T17:34:07.364 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:07.364 INFO:teuthology.orchestra.run.smithi092.stdout:Installed: 2024-04-15T17:34:07.364 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-fuse-2:19.0.0-3080.gc2d8c315.el9.x86_64 fuse-2.9.9-15.el9.x86_64 2024-04-15T17:34:07.364 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:07.364 INFO:teuthology.orchestra.run.smithi092.stdout:Complete! 2024-04-15T17:34:07.492 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : fuse-2.9.9-15.el9.x86_64 1/2 2024-04-15T17:34:07.566 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : ceph-fuse-2:19.0.0-3080.gc2d8c315.el9.x86_64 2/2 2024-04-15T17:34:07.630 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum -y install ceph-volume 2024-04-15T17:34:08.222 INFO:teuthology.orchestra.run.smithi092.stdout:Last metadata expiration check: 0:01:47 ago on Mon 15 Apr 2024 05:32:21 PM UTC. 2024-04-15T17:34:08.235 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: ceph-fuse-2:19.0.0-3080.gc2d8c315.el9.x86_64 2/2 2024-04-15T17:34:08.235 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : ceph-fuse-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/2 2024-04-15T17:34:08.381 INFO:teuthology.orchestra.run.smithi092.stdout:Dependencies resolved. 2024-04-15T17:34:08.381 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:34:08.381 INFO:teuthology.orchestra.run.smithi092.stdout: Package Arch Version Repository Size 2024-04-15T17:34:08.381 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:34:08.382 INFO:teuthology.orchestra.run.smithi092.stdout:Installing: 2024-04-15T17:34:08.382 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-volume noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 264 k 2024-04-15T17:34:08.382 INFO:teuthology.orchestra.run.smithi092.stdout:Installing dependencies: 2024-04-15T17:34:08.382 INFO:teuthology.orchestra.run.smithi092.stdout: python3-packaging noarch 20.9-5.el9 CentOS-AppStream 69 k 2024-04-15T17:34:08.382 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:08.382 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction Summary 2024-04-15T17:34:08.382 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:34:08.382 INFO:teuthology.orchestra.run.smithi092.stdout:Install 2 Packages 2024-04-15T17:34:08.382 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:08.383 INFO:teuthology.orchestra.run.smithi092.stdout:Total download size: 332 k 2024-04-15T17:34:08.383 INFO:teuthology.orchestra.run.smithi092.stdout:Installed size: 1.5 M 2024-04-15T17:34:08.383 INFO:teuthology.orchestra.run.smithi092.stdout:Downloading Packages: 2024-04-15T17:34:08.505 INFO:teuthology.orchestra.run.smithi092.stdout:(1/2): python3-packaging-20.9-5.el9.noarch.rpm 568 kB/s | 69 kB 00:00 2024-04-15T17:34:08.532 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : fuse-2.9.9-15.el9.x86_64 2/2 2024-04-15T17:34:08.532 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:08.532 INFO:teuthology.orchestra.run.smithi118.stdout:Installed: 2024-04-15T17:34:08.532 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-fuse-2:19.0.0-3080.gc2d8c315.el9.x86_64 fuse-2.9.9-15.el9.x86_64 2024-04-15T17:34:08.532 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:08.532 INFO:teuthology.orchestra.run.smithi118.stdout:Complete! 2024-04-15T17:34:08.705 INFO:teuthology.orchestra.run.smithi092.stdout:(2/2): ceph-volume-19.0.0-3080.gc2d8c315.el9.no 821 kB/s | 264 kB 00:00 2024-04-15T17:34:08.706 INFO:teuthology.orchestra.run.smithi092.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:34:08.707 INFO:teuthology.orchestra.run.smithi092.stdout:Total 1.0 MB/s | 332 kB 00:00 2024-04-15T17:34:08.707 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction check 2024-04-15T17:34:08.716 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction check succeeded. 2024-04-15T17:34:08.716 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction test 2024-04-15T17:34:08.752 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction test succeeded. 2024-04-15T17:34:08.752 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction 2024-04-15T17:34:08.788 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum -y install ceph-volume 2024-04-15T17:34:08.900 INFO:teuthology.orchestra.run.smithi092.stdout: Preparing : 1/1 2024-04-15T17:34:09.091 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-04-15T17:34:09.124 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : ceph-volume-2:19.0.0-3080.gc2d8c315.el9.noarch 2/2 2024-04-15T17:34:09.141 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: ceph-volume-2:19.0.0-3080.gc2d8c315.el9.noarch 2/2 2024-04-15T17:34:09.141 INFO:teuthology.orchestra.run.smithi092.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T17:34:09.141 INFO:teuthology.orchestra.run.smithi092.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-04-15T17:34:09.142 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:09.370 INFO:teuthology.orchestra.run.smithi118.stdout:Last metadata expiration check: 0:01:39 ago on Mon 15 Apr 2024 05:32:30 PM UTC. 2024-04-15T17:34:09.525 INFO:teuthology.orchestra.run.smithi118.stdout:Dependencies resolved. 2024-04-15T17:34:09.526 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:34:09.526 INFO:teuthology.orchestra.run.smithi118.stdout: Package Arch Version Repository Size 2024-04-15T17:34:09.527 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:34:09.527 INFO:teuthology.orchestra.run.smithi118.stdout:Installing: 2024-04-15T17:34:09.527 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-volume noarch 2:19.0.0-3080.gc2d8c315.el9 ceph-noarch 264 k 2024-04-15T17:34:09.527 INFO:teuthology.orchestra.run.smithi118.stdout:Installing dependencies: 2024-04-15T17:34:09.527 INFO:teuthology.orchestra.run.smithi118.stdout: python3-packaging noarch 20.9-5.el9 CentOS-AppStream 69 k 2024-04-15T17:34:09.527 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:09.527 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction Summary 2024-04-15T17:34:09.528 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:34:09.528 INFO:teuthology.orchestra.run.smithi118.stdout:Install 2 Packages 2024-04-15T17:34:09.528 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:09.528 INFO:teuthology.orchestra.run.smithi118.stdout:Total download size: 332 k 2024-04-15T17:34:09.528 INFO:teuthology.orchestra.run.smithi118.stdout:Installed size: 1.5 M 2024-04-15T17:34:09.528 INFO:teuthology.orchestra.run.smithi118.stdout:Downloading Packages: 2024-04-15T17:34:09.655 INFO:teuthology.orchestra.run.smithi118.stdout:(1/2): python3-packaging-20.9-5.el9.noarch.rpm 539 kB/s | 69 kB 00:00 2024-04-15T17:34:09.897 INFO:teuthology.orchestra.run.smithi118.stdout:(2/2): ceph-volume-19.0.0-3080.gc2d8c315.el9.no 713 kB/s | 264 kB 00:00 2024-04-15T17:34:09.898 INFO:teuthology.orchestra.run.smithi118.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:34:09.898 INFO:teuthology.orchestra.run.smithi118.stdout:Total 894 kB/s | 332 kB 00:00 2024-04-15T17:34:09.899 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction check 2024-04-15T17:34:09.907 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction check succeeded. 2024-04-15T17:34:09.907 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction test 2024-04-15T17:34:09.911 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : ceph-volume-2:19.0.0-3080.gc2d8c315.el9.noarch 1/2 2024-04-15T17:34:09.947 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction test succeeded. 2024-04-15T17:34:09.947 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction 2024-04-15T17:34:10.094 INFO:teuthology.orchestra.run.smithi118.stdout: Preparing : 1/1 2024-04-15T17:34:10.252 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-04-15T17:34:10.252 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:10.252 INFO:teuthology.orchestra.run.smithi092.stdout:Installed: 2024-04-15T17:34:10.252 INFO:teuthology.orchestra.run.smithi092.stdout: ceph-volume-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:34:10.252 INFO:teuthology.orchestra.run.smithi092.stdout: python3-packaging-20.9-5.el9.noarch 2024-04-15T17:34:10.252 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:10.252 INFO:teuthology.orchestra.run.smithi092.stdout:Complete! 2024-04-15T17:34:10.278 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-04-15T17:34:10.316 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : ceph-volume-2:19.0.0-3080.gc2d8c315.el9.noarch 2/2 2024-04-15T17:34:10.332 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: ceph-volume-2:19.0.0-3080.gc2d8c315.el9.noarch 2/2 2024-04-15T17:34:10.332 INFO:teuthology.orchestra.run.smithi118.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T17:34:10.333 INFO:teuthology.orchestra.run.smithi118.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-04-15T17:34:10.333 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:10.618 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum -y install librados-devel 2024-04-15T17:34:11.090 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : ceph-volume-2:19.0.0-3080.gc2d8c315.el9.noarch 1/2 2024-04-15T17:34:11.211 INFO:teuthology.orchestra.run.smithi092.stdout:Last metadata expiration check: 0:01:50 ago on Mon 15 Apr 2024 05:32:21 PM UTC. 2024-04-15T17:34:11.365 INFO:teuthology.orchestra.run.smithi092.stdout:Dependencies resolved. 2024-04-15T17:34:11.366 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:34:11.366 INFO:teuthology.orchestra.run.smithi092.stdout: Package Arch Version Repo Size 2024-04-15T17:34:11.366 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:34:11.367 INFO:teuthology.orchestra.run.smithi092.stdout:Installing: 2024-04-15T17:34:11.367 INFO:teuthology.orchestra.run.smithi092.stdout: librados-devel x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 127 k 2024-04-15T17:34:11.367 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:11.367 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction Summary 2024-04-15T17:34:11.367 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:34:11.367 INFO:teuthology.orchestra.run.smithi092.stdout:Install 1 Package 2024-04-15T17:34:11.367 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:11.367 INFO:teuthology.orchestra.run.smithi092.stdout:Total download size: 127 k 2024-04-15T17:34:11.367 INFO:teuthology.orchestra.run.smithi092.stdout:Installed size: 456 k 2024-04-15T17:34:11.367 INFO:teuthology.orchestra.run.smithi092.stdout:Downloading Packages: 2024-04-15T17:34:11.440 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-04-15T17:34:11.440 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:11.440 INFO:teuthology.orchestra.run.smithi118.stdout:Installed: 2024-04-15T17:34:11.440 INFO:teuthology.orchestra.run.smithi118.stdout: ceph-volume-2:19.0.0-3080.gc2d8c315.el9.noarch 2024-04-15T17:34:11.441 INFO:teuthology.orchestra.run.smithi118.stdout: python3-packaging-20.9-5.el9.noarch 2024-04-15T17:34:11.441 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:11.441 INFO:teuthology.orchestra.run.smithi118.stdout:Complete! 2024-04-15T17:34:11.577 INFO:teuthology.orchestra.run.smithi092.stdout:librados-devel-19.0.0-3080.gc2d8c315.el9.x86_64 605 kB/s | 127 kB 00:00 2024-04-15T17:34:11.577 INFO:teuthology.orchestra.run.smithi092.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:34:11.578 INFO:teuthology.orchestra.run.smithi092.stdout:Total 600 kB/s | 127 kB 00:00 2024-04-15T17:34:11.578 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction check 2024-04-15T17:34:11.583 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction check succeeded. 2024-04-15T17:34:11.583 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction test 2024-04-15T17:34:11.640 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction test succeeded. 2024-04-15T17:34:11.640 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction 2024-04-15T17:34:11.771 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum -y install librados-devel 2024-04-15T17:34:11.785 INFO:teuthology.orchestra.run.smithi092.stdout: Preparing : 1/1 2024-04-15T17:34:11.891 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : librados-devel-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:12.347 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: librados-devel-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:12.368 INFO:teuthology.orchestra.run.smithi118.stdout:Last metadata expiration check: 0:01:42 ago on Mon 15 Apr 2024 05:32:30 PM UTC. 2024-04-15T17:34:12.520 INFO:teuthology.orchestra.run.smithi118.stdout:Dependencies resolved. 2024-04-15T17:34:12.520 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:34:12.520 INFO:teuthology.orchestra.run.smithi118.stdout: Package Arch Version Repo Size 2024-04-15T17:34:12.520 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:34:12.520 INFO:teuthology.orchestra.run.smithi118.stdout:Installing: 2024-04-15T17:34:12.520 INFO:teuthology.orchestra.run.smithi118.stdout: librados-devel x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 127 k 2024-04-15T17:34:12.520 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:12.521 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction Summary 2024-04-15T17:34:12.521 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:34:12.521 INFO:teuthology.orchestra.run.smithi118.stdout:Install 1 Package 2024-04-15T17:34:12.521 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:12.521 INFO:teuthology.orchestra.run.smithi118.stdout:Total download size: 127 k 2024-04-15T17:34:12.521 INFO:teuthology.orchestra.run.smithi118.stdout:Installed size: 456 k 2024-04-15T17:34:12.521 INFO:teuthology.orchestra.run.smithi118.stdout:Downloading Packages: 2024-04-15T17:34:12.650 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : librados-devel-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:12.650 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:12.650 INFO:teuthology.orchestra.run.smithi092.stdout:Installed: 2024-04-15T17:34:12.650 INFO:teuthology.orchestra.run.smithi092.stdout: librados-devel-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:34:12.650 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:12.650 INFO:teuthology.orchestra.run.smithi092.stdout:Complete! 2024-04-15T17:34:12.896 INFO:teuthology.orchestra.run.smithi118.stdout:librados-devel-19.0.0-3080.gc2d8c315.el9.x86_64 338 kB/s | 127 kB 00:00 2024-04-15T17:34:12.897 INFO:teuthology.orchestra.run.smithi118.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:34:12.897 INFO:teuthology.orchestra.run.smithi118.stdout:Total 336 kB/s | 127 kB 00:00 2024-04-15T17:34:12.897 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction check 2024-04-15T17:34:12.903 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction check succeeded. 2024-04-15T17:34:12.903 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction test 2024-04-15T17:34:12.922 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum -y install libcephfs2 2024-04-15T17:34:12.959 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction test succeeded. 2024-04-15T17:34:12.959 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction 2024-04-15T17:34:13.104 INFO:teuthology.orchestra.run.smithi118.stdout: Preparing : 1/1 2024-04-15T17:34:13.219 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : librados-devel-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:13.512 INFO:teuthology.orchestra.run.smithi092.stdout:Last metadata expiration check: 0:01:52 ago on Mon 15 Apr 2024 05:32:21 PM UTC. 2024-04-15T17:34:13.613 INFO:teuthology.orchestra.run.smithi092.stdout:Package libcephfs2-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:34:13.625 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: librados-devel-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:13.666 INFO:teuthology.orchestra.run.smithi092.stdout:Dependencies resolved. 2024-04-15T17:34:13.667 INFO:teuthology.orchestra.run.smithi092.stdout:Nothing to do. 2024-04-15T17:34:13.667 INFO:teuthology.orchestra.run.smithi092.stdout:Complete! 2024-04-15T17:34:13.741 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum -y install libcephfs-devel 2024-04-15T17:34:13.912 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : librados-devel-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:13.912 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:13.912 INFO:teuthology.orchestra.run.smithi118.stdout:Installed: 2024-04-15T17:34:13.912 INFO:teuthology.orchestra.run.smithi118.stdout: librados-devel-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:34:13.912 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:13.913 INFO:teuthology.orchestra.run.smithi118.stdout:Complete! 2024-04-15T17:34:14.139 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum -y install libcephfs2 2024-04-15T17:34:14.322 INFO:teuthology.orchestra.run.smithi092.stdout:Last metadata expiration check: 0:01:53 ago on Mon 15 Apr 2024 05:32:21 PM UTC. 2024-04-15T17:34:14.475 INFO:teuthology.orchestra.run.smithi092.stdout:Dependencies resolved. 2024-04-15T17:34:14.476 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:34:14.476 INFO:teuthology.orchestra.run.smithi092.stdout: Package Arch Version Repo Size 2024-04-15T17:34:14.476 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:34:14.476 INFO:teuthology.orchestra.run.smithi092.stdout:Installing: 2024-04-15T17:34:14.476 INFO:teuthology.orchestra.run.smithi092.stdout: libcephfs-devel x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 32 k 2024-04-15T17:34:14.476 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:14.476 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction Summary 2024-04-15T17:34:14.477 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:34:14.477 INFO:teuthology.orchestra.run.smithi092.stdout:Install 1 Package 2024-04-15T17:34:14.477 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:14.477 INFO:teuthology.orchestra.run.smithi092.stdout:Total download size: 32 k 2024-04-15T17:34:14.477 INFO:teuthology.orchestra.run.smithi092.stdout:Installed size: 142 k 2024-04-15T17:34:14.477 INFO:teuthology.orchestra.run.smithi092.stdout:Downloading Packages: 2024-04-15T17:34:14.725 INFO:teuthology.orchestra.run.smithi118.stdout:Last metadata expiration check: 0:01:44 ago on Mon 15 Apr 2024 05:32:30 PM UTC. 2024-04-15T17:34:14.826 INFO:teuthology.orchestra.run.smithi118.stdout:Package libcephfs2-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:34:14.883 INFO:teuthology.orchestra.run.smithi118.stdout:Dependencies resolved. 2024-04-15T17:34:14.884 INFO:teuthology.orchestra.run.smithi118.stdout:Nothing to do. 2024-04-15T17:34:14.884 INFO:teuthology.orchestra.run.smithi118.stdout:Complete! 2024-04-15T17:34:14.951 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum -y install libcephfs-devel 2024-04-15T17:34:15.526 INFO:teuthology.orchestra.run.smithi118.stdout:Last metadata expiration check: 0:01:45 ago on Mon 15 Apr 2024 05:32:30 PM UTC. 2024-04-15T17:34:15.677 INFO:teuthology.orchestra.run.smithi118.stdout:Dependencies resolved. 2024-04-15T17:34:15.678 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:34:15.678 INFO:teuthology.orchestra.run.smithi118.stdout: Package Arch Version Repo Size 2024-04-15T17:34:15.678 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:34:15.678 INFO:teuthology.orchestra.run.smithi118.stdout:Installing: 2024-04-15T17:34:15.678 INFO:teuthology.orchestra.run.smithi118.stdout: libcephfs-devel x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 32 k 2024-04-15T17:34:15.679 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:15.679 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction Summary 2024-04-15T17:34:15.679 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:34:15.679 INFO:teuthology.orchestra.run.smithi118.stdout:Install 1 Package 2024-04-15T17:34:15.679 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:15.679 INFO:teuthology.orchestra.run.smithi118.stdout:Total download size: 32 k 2024-04-15T17:34:15.679 INFO:teuthology.orchestra.run.smithi118.stdout:Installed size: 142 k 2024-04-15T17:34:15.679 INFO:teuthology.orchestra.run.smithi118.stdout:Downloading Packages: 2024-04-15T17:34:15.850 INFO:teuthology.orchestra.run.smithi118.stdout:libcephfs-devel-19.0.0-3080.gc2d8c315.el9.x86_6 185 kB/s | 32 kB 00:00 2024-04-15T17:34:15.851 INFO:teuthology.orchestra.run.smithi118.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:34:15.851 INFO:teuthology.orchestra.run.smithi118.stdout:Total 184 kB/s | 32 kB 00:00 2024-04-15T17:34:15.851 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction check 2024-04-15T17:34:15.855 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction check succeeded. 2024-04-15T17:34:15.855 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction test 2024-04-15T17:34:15.882 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction test succeeded. 2024-04-15T17:34:15.882 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction 2024-04-15T17:34:16.005 INFO:teuthology.orchestra.run.smithi118.stdout: Preparing : 1/1 2024-04-15T17:34:16.071 INFO:teuthology.orchestra.run.smithi092.stdout:libcephfs-devel-19.0.0-3080.gc2d8c315.el9.x86_6 20 kB/s | 32 kB 00:01 2024-04-15T17:34:16.071 INFO:teuthology.orchestra.run.smithi092.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:34:16.072 INFO:teuthology.orchestra.run.smithi092.stdout:Total 20 kB/s | 32 kB 00:01 2024-04-15T17:34:16.072 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction check 2024-04-15T17:34:16.076 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction check succeeded. 2024-04-15T17:34:16.076 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction test 2024-04-15T17:34:16.114 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction test succeeded. 2024-04-15T17:34:16.115 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : libcephfs-devel-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:16.115 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction 2024-04-15T17:34:16.259 INFO:teuthology.orchestra.run.smithi092.stdout: Preparing : 1/1 2024-04-15T17:34:16.378 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : libcephfs-devel-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:16.490 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: libcephfs-devel-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:16.749 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: libcephfs-devel-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:16.803 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : libcephfs-devel-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:16.803 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:16.804 INFO:teuthology.orchestra.run.smithi118.stdout:Installed: 2024-04-15T17:34:16.804 INFO:teuthology.orchestra.run.smithi118.stdout: libcephfs-devel-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:34:16.804 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:16.804 INFO:teuthology.orchestra.run.smithi118.stdout:Complete! 2024-04-15T17:34:16.947 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum -y install librados2 2024-04-15T17:34:17.004 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : libcephfs-devel-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:17.004 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:17.004 INFO:teuthology.orchestra.run.smithi092.stdout:Installed: 2024-04-15T17:34:17.004 INFO:teuthology.orchestra.run.smithi092.stdout: libcephfs-devel-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:34:17.004 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:17.004 INFO:teuthology.orchestra.run.smithi092.stdout:Complete! 2024-04-15T17:34:17.193 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum -y install librados2 2024-04-15T17:34:17.521 INFO:teuthology.orchestra.run.smithi118.stdout:Last metadata expiration check: 0:01:47 ago on Mon 15 Apr 2024 05:32:30 PM UTC. 2024-04-15T17:34:17.621 INFO:teuthology.orchestra.run.smithi118.stdout:Package librados2-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:34:17.673 INFO:teuthology.orchestra.run.smithi118.stdout:Dependencies resolved. 2024-04-15T17:34:17.674 INFO:teuthology.orchestra.run.smithi118.stdout:Nothing to do. 2024-04-15T17:34:17.674 INFO:teuthology.orchestra.run.smithi118.stdout:Complete! 2024-04-15T17:34:17.723 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum -y install librbd1 2024-04-15T17:34:17.766 INFO:teuthology.orchestra.run.smithi092.stdout:Last metadata expiration check: 0:01:56 ago on Mon 15 Apr 2024 05:32:21 PM UTC. 2024-04-15T17:34:17.865 INFO:teuthology.orchestra.run.smithi092.stdout:Package librados2-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:34:17.916 INFO:teuthology.orchestra.run.smithi092.stdout:Dependencies resolved. 2024-04-15T17:34:17.917 INFO:teuthology.orchestra.run.smithi092.stdout:Nothing to do. 2024-04-15T17:34:17.917 INFO:teuthology.orchestra.run.smithi092.stdout:Complete! 2024-04-15T17:34:17.963 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum -y install librbd1 2024-04-15T17:34:18.303 INFO:teuthology.orchestra.run.smithi118.stdout:Last metadata expiration check: 0:01:48 ago on Mon 15 Apr 2024 05:32:30 PM UTC. 2024-04-15T17:34:18.403 INFO:teuthology.orchestra.run.smithi118.stdout:Package librbd1-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:34:18.455 INFO:teuthology.orchestra.run.smithi118.stdout:Dependencies resolved. 2024-04-15T17:34:18.456 INFO:teuthology.orchestra.run.smithi118.stdout:Nothing to do. 2024-04-15T17:34:18.456 INFO:teuthology.orchestra.run.smithi118.stdout:Complete! 2024-04-15T17:34:18.506 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum -y install python3-rados 2024-04-15T17:34:18.535 INFO:teuthology.orchestra.run.smithi092.stdout:Last metadata expiration check: 0:01:57 ago on Mon 15 Apr 2024 05:32:21 PM UTC. 2024-04-15T17:34:18.634 INFO:teuthology.orchestra.run.smithi092.stdout:Package librbd1-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:34:18.687 INFO:teuthology.orchestra.run.smithi092.stdout:Dependencies resolved. 2024-04-15T17:34:18.687 INFO:teuthology.orchestra.run.smithi092.stdout:Nothing to do. 2024-04-15T17:34:18.688 INFO:teuthology.orchestra.run.smithi092.stdout:Complete! 2024-04-15T17:34:18.739 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum -y install python3-rados 2024-04-15T17:34:19.081 INFO:teuthology.orchestra.run.smithi118.stdout:Last metadata expiration check: 0:01:49 ago on Mon 15 Apr 2024 05:32:30 PM UTC. 2024-04-15T17:34:19.181 INFO:teuthology.orchestra.run.smithi118.stdout:Package python3-rados-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:34:19.232 INFO:teuthology.orchestra.run.smithi118.stdout:Dependencies resolved. 2024-04-15T17:34:19.233 INFO:teuthology.orchestra.run.smithi118.stdout:Nothing to do. 2024-04-15T17:34:19.233 INFO:teuthology.orchestra.run.smithi118.stdout:Complete! 2024-04-15T17:34:19.294 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum -y install python3-rgw 2024-04-15T17:34:19.319 INFO:teuthology.orchestra.run.smithi092.stdout:Last metadata expiration check: 0:01:58 ago on Mon 15 Apr 2024 05:32:21 PM UTC. 2024-04-15T17:34:19.417 INFO:teuthology.orchestra.run.smithi092.stdout:Package python3-rados-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:34:19.471 INFO:teuthology.orchestra.run.smithi092.stdout:Dependencies resolved. 2024-04-15T17:34:19.472 INFO:teuthology.orchestra.run.smithi092.stdout:Nothing to do. 2024-04-15T17:34:19.472 INFO:teuthology.orchestra.run.smithi092.stdout:Complete! 2024-04-15T17:34:19.523 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum -y install python3-rgw 2024-04-15T17:34:19.873 INFO:teuthology.orchestra.run.smithi118.stdout:Last metadata expiration check: 0:01:49 ago on Mon 15 Apr 2024 05:32:30 PM UTC. 2024-04-15T17:34:19.971 INFO:teuthology.orchestra.run.smithi118.stdout:Package python3-rgw-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:34:20.023 INFO:teuthology.orchestra.run.smithi118.stdout:Dependencies resolved. 2024-04-15T17:34:20.024 INFO:teuthology.orchestra.run.smithi118.stdout:Nothing to do. 2024-04-15T17:34:20.024 INFO:teuthology.orchestra.run.smithi118.stdout:Complete! 2024-04-15T17:34:20.078 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum -y install python3-cephfs 2024-04-15T17:34:20.095 INFO:teuthology.orchestra.run.smithi092.stdout:Last metadata expiration check: 0:01:59 ago on Mon 15 Apr 2024 05:32:21 PM UTC. 2024-04-15T17:34:20.193 INFO:teuthology.orchestra.run.smithi092.stdout:Package python3-rgw-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:34:20.244 INFO:teuthology.orchestra.run.smithi092.stdout:Dependencies resolved. 2024-04-15T17:34:20.245 INFO:teuthology.orchestra.run.smithi092.stdout:Nothing to do. 2024-04-15T17:34:20.245 INFO:teuthology.orchestra.run.smithi092.stdout:Complete! 2024-04-15T17:34:20.315 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum -y install python3-cephfs 2024-04-15T17:34:20.652 INFO:teuthology.orchestra.run.smithi118.stdout:Last metadata expiration check: 0:01:50 ago on Mon 15 Apr 2024 05:32:30 PM UTC. 2024-04-15T17:34:20.751 INFO:teuthology.orchestra.run.smithi118.stdout:Package python3-cephfs-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:34:20.803 INFO:teuthology.orchestra.run.smithi118.stdout:Dependencies resolved. 2024-04-15T17:34:20.804 INFO:teuthology.orchestra.run.smithi118.stdout:Nothing to do. 2024-04-15T17:34:20.804 INFO:teuthology.orchestra.run.smithi118.stdout:Complete! 2024-04-15T17:34:20.861 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum -y install python3-rbd 2024-04-15T17:34:20.888 INFO:teuthology.orchestra.run.smithi092.stdout:Last metadata expiration check: 0:01:59 ago on Mon 15 Apr 2024 05:32:21 PM UTC. 2024-04-15T17:34:20.987 INFO:teuthology.orchestra.run.smithi092.stdout:Package python3-cephfs-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:34:21.039 INFO:teuthology.orchestra.run.smithi092.stdout:Dependencies resolved. 2024-04-15T17:34:21.040 INFO:teuthology.orchestra.run.smithi092.stdout:Nothing to do. 2024-04-15T17:34:21.040 INFO:teuthology.orchestra.run.smithi092.stdout:Complete! 2024-04-15T17:34:21.097 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum -y install python3-rbd 2024-04-15T17:34:21.434 INFO:teuthology.orchestra.run.smithi118.stdout:Last metadata expiration check: 0:01:51 ago on Mon 15 Apr 2024 05:32:30 PM UTC. 2024-04-15T17:34:21.532 INFO:teuthology.orchestra.run.smithi118.stdout:Package python3-rbd-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:34:21.583 INFO:teuthology.orchestra.run.smithi118.stdout:Dependencies resolved. 2024-04-15T17:34:21.584 INFO:teuthology.orchestra.run.smithi118.stdout:Nothing to do. 2024-04-15T17:34:21.584 INFO:teuthology.orchestra.run.smithi118.stdout:Complete! 2024-04-15T17:34:21.639 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum -y install rbd-fuse 2024-04-15T17:34:21.671 INFO:teuthology.orchestra.run.smithi092.stdout:Last metadata expiration check: 0:02:00 ago on Mon 15 Apr 2024 05:32:21 PM UTC. 2024-04-15T17:34:21.768 INFO:teuthology.orchestra.run.smithi092.stdout:Package python3-rbd-2:19.0.0-3080.gc2d8c315.el9.x86_64 is already installed. 2024-04-15T17:34:21.819 INFO:teuthology.orchestra.run.smithi092.stdout:Dependencies resolved. 2024-04-15T17:34:21.820 INFO:teuthology.orchestra.run.smithi092.stdout:Nothing to do. 2024-04-15T17:34:21.820 INFO:teuthology.orchestra.run.smithi092.stdout:Complete! 2024-04-15T17:34:21.871 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum -y install rbd-fuse 2024-04-15T17:34:22.214 INFO:teuthology.orchestra.run.smithi118.stdout:Last metadata expiration check: 0:01:52 ago on Mon 15 Apr 2024 05:32:30 PM UTC. 2024-04-15T17:34:22.365 INFO:teuthology.orchestra.run.smithi118.stdout:Dependencies resolved. 2024-04-15T17:34:22.366 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:34:22.366 INFO:teuthology.orchestra.run.smithi118.stdout: Package Architecture Version Repository Size 2024-04-15T17:34:22.366 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:34:22.366 INFO:teuthology.orchestra.run.smithi118.stdout:Installing: 2024-04-15T17:34:22.366 INFO:teuthology.orchestra.run.smithi118.stdout: rbd-fuse x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 85 k 2024-04-15T17:34:22.366 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:22.366 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction Summary 2024-04-15T17:34:22.366 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:34:22.366 INFO:teuthology.orchestra.run.smithi118.stdout:Install 1 Package 2024-04-15T17:34:22.366 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:22.366 INFO:teuthology.orchestra.run.smithi118.stdout:Total download size: 85 k 2024-04-15T17:34:22.367 INFO:teuthology.orchestra.run.smithi118.stdout:Installed size: 231 k 2024-04-15T17:34:22.367 INFO:teuthology.orchestra.run.smithi118.stdout:Downloading Packages: 2024-04-15T17:34:22.452 INFO:teuthology.orchestra.run.smithi092.stdout:Last metadata expiration check: 0:02:01 ago on Mon 15 Apr 2024 05:32:21 PM UTC. 2024-04-15T17:34:22.604 INFO:teuthology.orchestra.run.smithi092.stdout:Dependencies resolved. 2024-04-15T17:34:22.605 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:34:22.605 INFO:teuthology.orchestra.run.smithi092.stdout: Package Architecture Version Repository Size 2024-04-15T17:34:22.605 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:34:22.606 INFO:teuthology.orchestra.run.smithi092.stdout:Installing: 2024-04-15T17:34:22.606 INFO:teuthology.orchestra.run.smithi092.stdout: rbd-fuse x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 85 k 2024-04-15T17:34:22.606 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:22.606 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction Summary 2024-04-15T17:34:22.606 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:34:22.606 INFO:teuthology.orchestra.run.smithi092.stdout:Install 1 Package 2024-04-15T17:34:22.606 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:22.606 INFO:teuthology.orchestra.run.smithi092.stdout:Total download size: 85 k 2024-04-15T17:34:22.606 INFO:teuthology.orchestra.run.smithi092.stdout:Installed size: 231 k 2024-04-15T17:34:22.606 INFO:teuthology.orchestra.run.smithi092.stdout:Downloading Packages: 2024-04-15T17:34:22.770 INFO:teuthology.orchestra.run.smithi118.stdout:rbd-fuse-19.0.0-3080.gc2d8c315.el9.x86_64.rpm 211 kB/s | 85 kB 00:00 2024-04-15T17:34:22.771 INFO:teuthology.orchestra.run.smithi118.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:34:22.771 INFO:teuthology.orchestra.run.smithi118.stdout:Total 210 kB/s | 85 kB 00:00 2024-04-15T17:34:22.771 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction check 2024-04-15T17:34:22.778 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction check succeeded. 2024-04-15T17:34:22.779 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction test 2024-04-15T17:34:22.835 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction test succeeded. 2024-04-15T17:34:22.835 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction 2024-04-15T17:34:22.975 INFO:teuthology.orchestra.run.smithi118.stdout: Preparing : 1/1 2024-04-15T17:34:23.111 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : rbd-fuse-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:23.182 INFO:teuthology.orchestra.run.smithi092.stdout:rbd-fuse-19.0.0-3080.gc2d8c315.el9.x86_64.rpm 148 kB/s | 85 kB 00:00 2024-04-15T17:34:23.182 INFO:teuthology.orchestra.run.smithi092.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:34:23.182 INFO:teuthology.orchestra.run.smithi092.stdout:Total 148 kB/s | 85 kB 00:00 2024-04-15T17:34:23.183 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction check 2024-04-15T17:34:23.190 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction check succeeded. 2024-04-15T17:34:23.190 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction test 2024-04-15T17:34:23.246 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction test succeeded. 2024-04-15T17:34:23.247 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction 2024-04-15T17:34:23.387 INFO:teuthology.orchestra.run.smithi092.stdout: Preparing : 1/1 2024-04-15T17:34:23.486 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: rbd-fuse-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:23.505 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : rbd-fuse-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:23.788 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : rbd-fuse-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:23.788 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:23.788 INFO:teuthology.orchestra.run.smithi118.stdout:Installed: 2024-04-15T17:34:23.788 INFO:teuthology.orchestra.run.smithi118.stdout: rbd-fuse-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:34:23.788 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:23.788 INFO:teuthology.orchestra.run.smithi118.stdout:Complete! 2024-04-15T17:34:23.915 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: rbd-fuse-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:24.031 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum -y install rbd-mirror 2024-04-15T17:34:24.204 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : rbd-fuse-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:24.204 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:24.204 INFO:teuthology.orchestra.run.smithi092.stdout:Installed: 2024-04-15T17:34:24.204 INFO:teuthology.orchestra.run.smithi092.stdout: rbd-fuse-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:34:24.204 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:24.204 INFO:teuthology.orchestra.run.smithi092.stdout:Complete! 2024-04-15T17:34:24.469 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum -y install rbd-mirror 2024-04-15T17:34:24.618 INFO:teuthology.orchestra.run.smithi118.stdout:Last metadata expiration check: 0:01:54 ago on Mon 15 Apr 2024 05:32:30 PM UTC. 2024-04-15T17:34:24.771 INFO:teuthology.orchestra.run.smithi118.stdout:Dependencies resolved. 2024-04-15T17:34:24.772 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:34:24.772 INFO:teuthology.orchestra.run.smithi118.stdout: Package Arch Version Repo Size 2024-04-15T17:34:24.772 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:34:24.772 INFO:teuthology.orchestra.run.smithi118.stdout:Installing: 2024-04-15T17:34:24.772 INFO:teuthology.orchestra.run.smithi118.stdout: rbd-mirror x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 3.1 M 2024-04-15T17:34:24.772 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:24.772 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction Summary 2024-04-15T17:34:24.772 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:34:24.773 INFO:teuthology.orchestra.run.smithi118.stdout:Install 1 Package 2024-04-15T17:34:24.773 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:24.773 INFO:teuthology.orchestra.run.smithi118.stdout:Total download size: 3.1 M 2024-04-15T17:34:24.773 INFO:teuthology.orchestra.run.smithi118.stdout:Installed size: 13 M 2024-04-15T17:34:24.773 INFO:teuthology.orchestra.run.smithi118.stdout:Downloading Packages: 2024-04-15T17:34:25.063 INFO:teuthology.orchestra.run.smithi092.stdout:Last metadata expiration check: 0:02:04 ago on Mon 15 Apr 2024 05:32:21 PM UTC. 2024-04-15T17:34:25.214 INFO:teuthology.orchestra.run.smithi092.stdout:Dependencies resolved. 2024-04-15T17:34:25.214 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:34:25.215 INFO:teuthology.orchestra.run.smithi092.stdout: Package Arch Version Repo Size 2024-04-15T17:34:25.215 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:34:25.215 INFO:teuthology.orchestra.run.smithi092.stdout:Installing: 2024-04-15T17:34:25.215 INFO:teuthology.orchestra.run.smithi092.stdout: rbd-mirror x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 3.1 M 2024-04-15T17:34:25.215 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:25.215 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction Summary 2024-04-15T17:34:25.215 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:34:25.215 INFO:teuthology.orchestra.run.smithi092.stdout:Install 1 Package 2024-04-15T17:34:25.215 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:25.215 INFO:teuthology.orchestra.run.smithi092.stdout:Total download size: 3.1 M 2024-04-15T17:34:25.215 INFO:teuthology.orchestra.run.smithi092.stdout:Installed size: 13 M 2024-04-15T17:34:25.215 INFO:teuthology.orchestra.run.smithi092.stdout:Downloading Packages: 2024-04-15T17:34:26.693 INFO:teuthology.orchestra.run.smithi092.stdout:rbd-mirror-19.0.0-3080.gc2d8c315.el9.x86_64.rpm 2.1 MB/s | 3.1 MB 00:01 2024-04-15T17:34:26.693 INFO:teuthology.orchestra.run.smithi092.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:34:26.693 INFO:teuthology.orchestra.run.smithi092.stdout:Total 2.1 MB/s | 3.1 MB 00:01 2024-04-15T17:34:26.694 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction check 2024-04-15T17:34:26.702 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction check succeeded. 2024-04-15T17:34:26.703 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction test 2024-04-15T17:34:26.778 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction test succeeded. 2024-04-15T17:34:26.778 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction 2024-04-15T17:34:27.199 INFO:teuthology.orchestra.run.smithi092.stdout: Preparing : 1/1 2024-04-15T17:34:27.260 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : rbd-mirror-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:27.285 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: rbd-mirror-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:27.285 INFO:teuthology.orchestra.run.smithi092.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T17:34:27.286 INFO:teuthology.orchestra.run.smithi092.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-04-15T17:34:27.286 INFO:teuthology.orchestra.run.smithi092.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-15T17:34:27.286 INFO:teuthology.orchestra.run.smithi092.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-15T17:34:27.286 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:27.433 INFO:teuthology.orchestra.run.smithi118.stdout:rbd-mirror-19.0.0-3080.gc2d8c315.el9.x86_64.rpm 1.2 MB/s | 3.1 MB 00:02 2024-04-15T17:34:27.434 INFO:teuthology.orchestra.run.smithi118.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:34:27.434 INFO:teuthology.orchestra.run.smithi118.stdout:Total 1.2 MB/s | 3.1 MB 00:02 2024-04-15T17:34:27.435 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction check 2024-04-15T17:34:27.445 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction check succeeded. 2024-04-15T17:34:27.445 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction test 2024-04-15T17:34:27.522 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction test succeeded. 2024-04-15T17:34:27.522 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction 2024-04-15T17:34:27.949 INFO:teuthology.orchestra.run.smithi118.stdout: Preparing : 1/1 2024-04-15T17:34:28.025 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : rbd-mirror-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:28.050 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: rbd-mirror-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:28.050 INFO:teuthology.orchestra.run.smithi118.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T17:34:28.050 INFO:teuthology.orchestra.run.smithi118.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-04-15T17:34:28.051 INFO:teuthology.orchestra.run.smithi118.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-15T17:34:28.051 INFO:teuthology.orchestra.run.smithi118.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-15T17:34:28.051 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:28.433 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : rbd-mirror-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:28.434 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:28.434 INFO:teuthology.orchestra.run.smithi092.stdout:Installed: 2024-04-15T17:34:28.434 INFO:teuthology.orchestra.run.smithi092.stdout: rbd-mirror-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:34:28.434 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:28.434 INFO:teuthology.orchestra.run.smithi092.stdout:Complete! 2024-04-15T17:34:28.688 DEBUG:teuthology.orchestra.run.smithi092:> sudo yum -y install rbd-nbd 2024-04-15T17:34:29.130 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : rbd-mirror-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:29.130 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:29.130 INFO:teuthology.orchestra.run.smithi118.stdout:Installed: 2024-04-15T17:34:29.130 INFO:teuthology.orchestra.run.smithi118.stdout: rbd-mirror-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:34:29.130 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:29.130 INFO:teuthology.orchestra.run.smithi118.stdout:Complete! 2024-04-15T17:34:29.275 INFO:teuthology.orchestra.run.smithi092.stdout:Last metadata expiration check: 0:02:08 ago on Mon 15 Apr 2024 05:32:21 PM UTC. 2024-04-15T17:34:29.379 DEBUG:teuthology.orchestra.run.smithi118:> sudo yum -y install rbd-nbd 2024-04-15T17:34:29.426 INFO:teuthology.orchestra.run.smithi092.stdout:Dependencies resolved. 2024-04-15T17:34:29.427 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:34:29.427 INFO:teuthology.orchestra.run.smithi092.stdout: Package Architecture Version Repository Size 2024-04-15T17:34:29.427 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:34:29.427 INFO:teuthology.orchestra.run.smithi092.stdout:Installing: 2024-04-15T17:34:29.427 INFO:teuthology.orchestra.run.smithi092.stdout: rbd-nbd x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 170 k 2024-04-15T17:34:29.427 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:29.427 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction Summary 2024-04-15T17:34:29.427 INFO:teuthology.orchestra.run.smithi092.stdout:================================================================================ 2024-04-15T17:34:29.427 INFO:teuthology.orchestra.run.smithi092.stdout:Install 1 Package 2024-04-15T17:34:29.428 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:29.428 INFO:teuthology.orchestra.run.smithi092.stdout:Total download size: 170 k 2024-04-15T17:34:29.428 INFO:teuthology.orchestra.run.smithi092.stdout:Installed size: 494 k 2024-04-15T17:34:29.428 INFO:teuthology.orchestra.run.smithi092.stdout:Downloading Packages: 2024-04-15T17:34:29.804 INFO:teuthology.orchestra.run.smithi092.stdout:rbd-nbd-19.0.0-3080.gc2d8c315.el9.x86_64.rpm 454 kB/s | 170 kB 00:00 2024-04-15T17:34:29.804 INFO:teuthology.orchestra.run.smithi092.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:34:29.804 INFO:teuthology.orchestra.run.smithi092.stdout:Total 452 kB/s | 170 kB 00:00 2024-04-15T17:34:29.805 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction check 2024-04-15T17:34:29.812 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction check succeeded. 2024-04-15T17:34:29.812 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction test 2024-04-15T17:34:29.868 INFO:teuthology.orchestra.run.smithi092.stdout:Transaction test succeeded. 2024-04-15T17:34:29.868 INFO:teuthology.orchestra.run.smithi092.stdout:Running transaction 2024-04-15T17:34:29.973 INFO:teuthology.orchestra.run.smithi118.stdout:Last metadata expiration check: 0:01:59 ago on Mon 15 Apr 2024 05:32:30 PM UTC. 2024-04-15T17:34:30.022 INFO:teuthology.orchestra.run.smithi092.stdout: Preparing : 1/1 2024-04-15T17:34:30.128 INFO:teuthology.orchestra.run.smithi092.stdout: Installing : rbd-nbd-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:30.128 INFO:teuthology.orchestra.run.smithi118.stdout:Dependencies resolved. 2024-04-15T17:34:30.128 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:34:30.128 INFO:teuthology.orchestra.run.smithi118.stdout: Package Architecture Version Repository Size 2024-04-15T17:34:30.129 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:34:30.129 INFO:teuthology.orchestra.run.smithi118.stdout:Installing: 2024-04-15T17:34:30.129 INFO:teuthology.orchestra.run.smithi118.stdout: rbd-nbd x86_64 2:19.0.0-3080.gc2d8c315.el9 ceph 170 k 2024-04-15T17:34:30.129 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:30.129 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction Summary 2024-04-15T17:34:30.129 INFO:teuthology.orchestra.run.smithi118.stdout:================================================================================ 2024-04-15T17:34:30.129 INFO:teuthology.orchestra.run.smithi118.stdout:Install 1 Package 2024-04-15T17:34:30.129 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:30.130 INFO:teuthology.orchestra.run.smithi118.stdout:Total download size: 170 k 2024-04-15T17:34:30.130 INFO:teuthology.orchestra.run.smithi118.stdout:Installed size: 494 k 2024-04-15T17:34:30.130 INFO:teuthology.orchestra.run.smithi118.stdout:Downloading Packages: 2024-04-15T17:34:30.362 INFO:teuthology.orchestra.run.smithi118.stdout:rbd-nbd-19.0.0-3080.gc2d8c315.el9.x86_64.rpm 734 kB/s | 170 kB 00:00 2024-04-15T17:34:30.363 INFO:teuthology.orchestra.run.smithi118.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:34:30.363 INFO:teuthology.orchestra.run.smithi118.stdout:Total 729 kB/s | 170 kB 00:00 2024-04-15T17:34:30.363 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction check 2024-04-15T17:34:30.371 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction check succeeded. 2024-04-15T17:34:30.371 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction test 2024-04-15T17:34:30.427 INFO:teuthology.orchestra.run.smithi118.stdout:Transaction test succeeded. 2024-04-15T17:34:30.428 INFO:teuthology.orchestra.run.smithi118.stdout:Running transaction 2024-04-15T17:34:30.566 INFO:teuthology.orchestra.run.smithi092.stdout: Running scriptlet: rbd-nbd-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:30.599 INFO:teuthology.orchestra.run.smithi118.stdout: Preparing : 1/1 2024-04-15T17:34:30.719 INFO:teuthology.orchestra.run.smithi118.stdout: Installing : rbd-nbd-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:30.834 INFO:teuthology.orchestra.run.smithi092.stdout: Verifying : rbd-nbd-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:30.834 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:30.835 INFO:teuthology.orchestra.run.smithi092.stdout:Installed: 2024-04-15T17:34:30.835 INFO:teuthology.orchestra.run.smithi092.stdout: rbd-nbd-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:34:30.835 INFO:teuthology.orchestra.run.smithi092.stdout: 2024-04-15T17:34:30.835 INFO:teuthology.orchestra.run.smithi092.stdout:Complete! 2024-04-15T17:34:31.075 DEBUG:teuthology.parallel:result is None 2024-04-15T17:34:31.158 INFO:teuthology.orchestra.run.smithi118.stdout: Running scriptlet: rbd-nbd-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:31.437 INFO:teuthology.orchestra.run.smithi118.stdout: Verifying : rbd-nbd-2:19.0.0-3080.gc2d8c315.el9.x86_64 1/1 2024-04-15T17:34:31.437 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:31.437 INFO:teuthology.orchestra.run.smithi118.stdout:Installed: 2024-04-15T17:34:31.437 INFO:teuthology.orchestra.run.smithi118.stdout: rbd-nbd-2:19.0.0-3080.gc2d8c315.el9.x86_64 2024-04-15T17:34:31.437 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:34:31.437 INFO:teuthology.orchestra.run.smithi118.stdout:Complete! 2024-04-15T17:34:31.673 DEBUG:teuthology.parallel:result is None 2024-04-15T17:34:31.674 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=c2d8c3155d854ee204cb7c7261232571229d1d54 2024-04-15T17:34:31.897 DEBUG:teuthology.orchestra.run.smithi055:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-04-15T17:34:31.923 INFO:teuthology.orchestra.run.smithi055.stdout:19.0.0-3080.gc2d8c315.el9 2024-04-15T17:34:31.924 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-3080.gc2d8c315.el9 2024-04-15T17:34:31.924 INFO:teuthology.task.install:The correct ceph version 19.0.0-3080.gc2d8c315 is installed. 2024-04-15T17:34:31.927 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=c2d8c3155d854ee204cb7c7261232571229d1d54 2024-04-15T17:34:32.143 DEBUG:teuthology.orchestra.run.smithi092:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-04-15T17:34:32.167 INFO:teuthology.orchestra.run.smithi092.stdout:19.0.0-3080.gc2d8c315.el9 2024-04-15T17:34:32.168 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-3080.gc2d8c315.el9 2024-04-15T17:34:32.168 INFO:teuthology.task.install:The correct ceph version 19.0.0-3080.gc2d8c315 is installed. 2024-04-15T17:34:32.170 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=c2d8c3155d854ee204cb7c7261232571229d1d54 2024-04-15T17:34:32.396 DEBUG:teuthology.orchestra.run.smithi118:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-04-15T17:34:32.419 INFO:teuthology.orchestra.run.smithi118.stdout:19.0.0-3080.gc2d8c315.el9 2024-04-15T17:34:32.419 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-3080.gc2d8c315.el9 2024-04-15T17:34:32.419 INFO:teuthology.task.install:The correct ceph version 19.0.0-3080.gc2d8c315 is installed. 2024-04-15T17:34:32.421 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-04-15T17:34:32.421 DEBUG:teuthology.orchestra.run.smithi055:> set -ex 2024-04-15T17:34:32.421 DEBUG:teuthology.orchestra.run.smithi055:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-15T17:34:32.456 DEBUG:teuthology.orchestra.run.smithi092:> set -ex 2024-04-15T17:34:32.456 DEBUG:teuthology.orchestra.run.smithi092:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-15T17:34:32.490 DEBUG:teuthology.orchestra.run.smithi118:> set -ex 2024-04-15T17:34:32.490 DEBUG:teuthology.orchestra.run.smithi118:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-15T17:34:32.519 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-04-15T17:34:32.519 DEBUG:teuthology.orchestra.run.smithi055:> set -ex 2024-04-15T17:34:32.519 DEBUG:teuthology.orchestra.run.smithi055:> sudo dd of=/usr/bin/daemon-helper 2024-04-15T17:34:32.552 DEBUG:teuthology.orchestra.run.smithi055:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-15T17:34:32.622 DEBUG:teuthology.orchestra.run.smithi092:> set -ex 2024-04-15T17:34:32.623 DEBUG:teuthology.orchestra.run.smithi092:> sudo dd of=/usr/bin/daemon-helper 2024-04-15T17:34:32.654 DEBUG:teuthology.orchestra.run.smithi092:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-15T17:34:32.723 DEBUG:teuthology.orchestra.run.smithi118:> set -ex 2024-04-15T17:34:32.724 DEBUG:teuthology.orchestra.run.smithi118:> sudo dd of=/usr/bin/daemon-helper 2024-04-15T17:34:32.751 DEBUG:teuthology.orchestra.run.smithi118:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-15T17:34:32.819 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-04-15T17:34:32.820 DEBUG:teuthology.orchestra.run.smithi055:> set -ex 2024-04-15T17:34:32.820 DEBUG:teuthology.orchestra.run.smithi055:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-15T17:34:32.853 DEBUG:teuthology.orchestra.run.smithi055:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-15T17:34:32.925 DEBUG:teuthology.orchestra.run.smithi092:> set -ex 2024-04-15T17:34:32.925 DEBUG:teuthology.orchestra.run.smithi092:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-15T17:34:32.956 DEBUG:teuthology.orchestra.run.smithi092:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-15T17:34:33.027 DEBUG:teuthology.orchestra.run.smithi118:> set -ex 2024-04-15T17:34:33.027 DEBUG:teuthology.orchestra.run.smithi118:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-15T17:34:33.056 DEBUG:teuthology.orchestra.run.smithi118:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-15T17:34:33.125 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-04-15T17:34:33.125 DEBUG:teuthology.orchestra.run.smithi055:> set -ex 2024-04-15T17:34:33.125 DEBUG:teuthology.orchestra.run.smithi055:> sudo dd of=/usr/bin/stdin-killer 2024-04-15T17:34:33.158 DEBUG:teuthology.orchestra.run.smithi055:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-15T17:34:33.234 DEBUG:teuthology.orchestra.run.smithi092:> set -ex 2024-04-15T17:34:33.234 DEBUG:teuthology.orchestra.run.smithi092:> sudo dd of=/usr/bin/stdin-killer 2024-04-15T17:34:33.267 DEBUG:teuthology.orchestra.run.smithi092:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-15T17:34:33.337 DEBUG:teuthology.orchestra.run.smithi118:> set -ex 2024-04-15T17:34:33.337 DEBUG:teuthology.orchestra.run.smithi118:> sudo dd of=/usr/bin/stdin-killer 2024-04-15T17:34:33.365 DEBUG:teuthology.orchestra.run.smithi118:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-15T17:34:33.437 INFO:teuthology.run_tasks:Running task cephadm... 2024-04-15T17:34:33.557 INFO:tasks.cephadm:Config: {'conf': {'global': {'mon election default strategy': 1}, 'mgr': {'debug mgr': 20, 'debug ms': 1, 'mgr/cephadm/use_agent': False}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)', 'MON_DOWN', 'mons down', 'mon down', 'out of quorum'], 'sha1': 'c2d8c3155d854ee204cb7c7261232571229d1d54'} 2024-04-15T17:34:33.557 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 2024-04-15T17:34:33.558 INFO:tasks.cephadm:Cluster fsid is 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:34:33.558 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-04-15T17:34:33.559 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.55', 'mon.b': '172.21.15.92', 'mon.c': '172.21.15.118'} 2024-04-15T17:34:33.559 INFO:tasks.cephadm:First mon is mon.a on smithi055 2024-04-15T17:34:33.559 INFO:tasks.cephadm:First mgr is a 2024-04-15T17:34:33.559 INFO:tasks.cephadm:Normalizing hostnames... 2024-04-15T17:34:33.559 DEBUG:teuthology.orchestra.run.smithi055:> sudo hostname $(hostname -s) 2024-04-15T17:34:33.594 DEBUG:teuthology.orchestra.run.smithi092:> sudo hostname $(hostname -s) 2024-04-15T17:34:33.628 DEBUG:teuthology.orchestra.run.smithi118:> sudo hostname $(hostname -s) 2024-04-15T17:34:33.658 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-04-15T17:34:33.658 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=c2d8c3155d854ee204cb7c7261232571229d1d54 2024-04-15T17:34:33.806 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': 'c2d8c3155d854ee204cb7c7261232571229d1d54', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic/54888/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-3080-gc2d8c315', 'node_name': '172.21.2.1+braggi01', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic', 'package_manager_version': '19.0.0-3080.gc2d8c315'}, 'url': 'https://4.chacra.ceph.com/r/ceph/main/c2d8c3155d854ee204cb7c7261232571229d1d54/centos/9/flavors/default/', 'distro_codename': None, 'modified': '2024-04-13 01:58:10.711078', 'distro_version': '9', 'project': 'ceph', 'flavor': 'default', 'ref': 'main', 'chacra_url': 'https://4.chacra.ceph.com/repos/ceph/main/c2d8c3155d854ee204cb7c7261232571229d1d54/centos/9/flavors/default/', 'archs': ['source', 'x86_64'], 'distro': 'centos'}] 2024-04-15T17:34:34.041 INFO:tasks.util.chacra:got chacra host 4.chacra.ceph.com, ref main, sha1 c2d8c3155d854ee204cb7c7261232571229d1d54 from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=c2d8c3155d854ee204cb7c7261232571229d1d54 2024-04-15T17:34:34.043 INFO:tasks.cephadm:Discovered cachra url: https://4.chacra.ceph.com/binaries/ceph/main/c2d8c3155d854ee204cb7c7261232571229d1d54/centos/9/x86_64/flavors/default/cephadm 2024-04-15T17:34:34.043 DEBUG:teuthology.orchestra.run.smithi055:> curl --silent -L https://4.chacra.ceph.com/binaries/ceph/main/c2d8c3155d854ee204cb7c7261232571229d1d54/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-15T17:34:34.548 INFO:teuthology.orchestra.run.smithi055.stdout:-rw-r--r--. 1 ubuntu ubuntu 781571 Apr 15 17:34 /home/ubuntu/cephtest/cephadm 2024-04-15T17:34:34.548 DEBUG:teuthology.orchestra.run.smithi092:> curl --silent -L https://4.chacra.ceph.com/binaries/ceph/main/c2d8c3155d854ee204cb7c7261232571229d1d54/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-15T17:34:35.331 INFO:teuthology.orchestra.run.smithi092.stdout:-rw-r--r--. 1 ubuntu ubuntu 781571 Apr 15 17:34 /home/ubuntu/cephtest/cephadm 2024-04-15T17:34:35.331 DEBUG:teuthology.orchestra.run.smithi118:> curl --silent -L https://4.chacra.ceph.com/binaries/ceph/main/c2d8c3155d854ee204cb7c7261232571229d1d54/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-15T17:34:36.108 INFO:teuthology.orchestra.run.smithi118.stdout:-rw-r--r--. 1 ubuntu ubuntu 781571 Apr 15 17:34 /home/ubuntu/cephtest/cephadm 2024-04-15T17:34:36.108 DEBUG:teuthology.orchestra.run.smithi055:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-15T17:34:36.127 DEBUG:teuthology.orchestra.run.smithi092:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-15T17:34:36.147 DEBUG:teuthology.orchestra.run.smithi118:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-15T17:34:36.178 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 on all hosts... 2024-04-15T17:34:36.179 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 pull 2024-04-15T17:34:36.181 DEBUG:teuthology.orchestra.run.smithi092:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 pull 2024-04-15T17:34:36.189 DEBUG:teuthology.orchestra.run.smithi118:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 pull 2024-04-15T17:34:36.968 INFO:teuthology.orchestra.run.smithi055.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54... 2024-04-15T17:34:37.124 INFO:teuthology.orchestra.run.smithi118.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54... 2024-04-15T17:34:37.163 INFO:teuthology.orchestra.run.smithi092.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54... 2024-04-15T17:35:08.208 INFO:teuthology.orchestra.run.smithi092.stdout:{ 2024-04-15T17:35:08.209 INFO:teuthology.orchestra.run.smithi092.stdout: "ceph_version": "ceph version 19.0.0-3080-gc2d8c315 (c2d8c3155d854ee204cb7c7261232571229d1d54) squid (dev)", 2024-04-15T17:35:08.209 INFO:teuthology.orchestra.run.smithi092.stdout: "image_id": "259793512b732efd8e04a33aa28c6de3675c47d120bc226206521425d246003e", 2024-04-15T17:35:08.209 INFO:teuthology.orchestra.run.smithi092.stdout: "repo_digests": [ 2024-04-15T17:35:08.209 INFO:teuthology.orchestra.run.smithi092.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163" 2024-04-15T17:35:08.209 INFO:teuthology.orchestra.run.smithi092.stdout: ] 2024-04-15T17:35:08.209 INFO:teuthology.orchestra.run.smithi092.stdout:} 2024-04-15T17:35:12.529 INFO:teuthology.orchestra.run.smithi055.stdout:{ 2024-04-15T17:35:12.529 INFO:teuthology.orchestra.run.smithi055.stdout: "ceph_version": "ceph version 19.0.0-3080-gc2d8c315 (c2d8c3155d854ee204cb7c7261232571229d1d54) squid (dev)", 2024-04-15T17:35:12.530 INFO:teuthology.orchestra.run.smithi055.stdout: "image_id": "259793512b732efd8e04a33aa28c6de3675c47d120bc226206521425d246003e", 2024-04-15T17:35:12.530 INFO:teuthology.orchestra.run.smithi055.stdout: "repo_digests": [ 2024-04-15T17:35:12.530 INFO:teuthology.orchestra.run.smithi055.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163" 2024-04-15T17:35:12.530 INFO:teuthology.orchestra.run.smithi055.stdout: ] 2024-04-15T17:35:12.530 INFO:teuthology.orchestra.run.smithi055.stdout:} 2024-04-15T17:35:13.907 INFO:teuthology.orchestra.run.smithi118.stdout:{ 2024-04-15T17:35:13.908 INFO:teuthology.orchestra.run.smithi118.stdout: "ceph_version": "ceph version 19.0.0-3080-gc2d8c315 (c2d8c3155d854ee204cb7c7261232571229d1d54) squid (dev)", 2024-04-15T17:35:13.908 INFO:teuthology.orchestra.run.smithi118.stdout: "image_id": "259793512b732efd8e04a33aa28c6de3675c47d120bc226206521425d246003e", 2024-04-15T17:35:13.908 INFO:teuthology.orchestra.run.smithi118.stdout: "repo_digests": [ 2024-04-15T17:35:13.908 INFO:teuthology.orchestra.run.smithi118.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163" 2024-04-15T17:35:13.908 INFO:teuthology.orchestra.run.smithi118.stdout: ] 2024-04-15T17:35:13.908 INFO:teuthology.orchestra.run.smithi118.stdout:} 2024-04-15T17:35:13.932 DEBUG:teuthology.orchestra.run.smithi055:> sudo mkdir -p /etc/ceph 2024-04-15T17:35:13.968 DEBUG:teuthology.orchestra.run.smithi092:> sudo mkdir -p /etc/ceph 2024-04-15T17:35:14.004 DEBUG:teuthology.orchestra.run.smithi118:> sudo mkdir -p /etc/ceph 2024-04-15T17:35:14.035 DEBUG:teuthology.orchestra.run.smithi055:> sudo chmod 777 /etc/ceph 2024-04-15T17:35:14.068 DEBUG:teuthology.orchestra.run.smithi092:> sudo chmod 777 /etc/ceph 2024-04-15T17:35:14.099 DEBUG:teuthology.orchestra.run.smithi118:> sudo chmod 777 /etc/ceph 2024-04-15T17:35:14.127 INFO:tasks.cephadm:Writing seed config... 2024-04-15T17:35:14.128 INFO:tasks.cephadm: override: [global] mon election default strategy = 1 2024-04-15T17:35:14.128 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-04-15T17:35:14.128 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-04-15T17:35:14.128 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = False 2024-04-15T17:35:14.129 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-04-15T17:35:14.129 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-04-15T17:35:14.129 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-04-15T17:35:14.129 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-04-15T17:35:14.129 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-04-15T17:35:14.129 DEBUG:teuthology.orchestra.run.smithi055:> set -ex 2024-04-15T17:35:14.129 DEBUG:teuthology.orchestra.run.smithi055:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-04-15T17:35:14.147 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false log to journald = false mon cluster log to file = true mon cluster log file level = debug mon clock drift allowed = 1.000 # replicate across OSDs, not hosts osd crush chooseleaf type = 0 #osd pool default size = 2 osd pool default erasure code profile = plugin=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 = 6c2710cc-fb4e-11ee-bc8f-c7b262605968 mon election default strategy = 1 [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-04-15T17:35:14.147 DEBUG:teuthology.orchestra.run.smithi055:mon.a> sudo journalctl -f -n 0 -u ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@mon.a.service 2024-04-15T17:35:14.189 DEBUG:teuthology.orchestra.run.smithi055:mgr.a> sudo journalctl -f -n 0 -u ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@mgr.a.service 2024-04-15T17:35:14.232 INFO:tasks.cephadm:Bootstrapping... 2024-04-15T17:35:14.232 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 -v bootstrap --fsid 6c2710cc-fb4e-11ee-bc8f-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.55 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-04-15T17:35:14.435 INFO:teuthology.orchestra.run.smithi055.stdout:-------------------------------------------------------------------------------- 2024-04-15T17:35:14.436 INFO:teuthology.orchestra.run.smithi055.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54', '-v', 'bootstrap', '--fsid', '6c2710cc-fb4e-11ee-bc8f-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.55', '--skip-admin-label'] 2024-04-15T17:35:14.436 INFO:teuthology.orchestra.run.smithi055.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-04-15T17:35:14.436 INFO:teuthology.orchestra.run.smithi055.stdout:Verifying podman|docker is present... 2024-04-15T17:35:14.461 INFO:teuthology.orchestra.run.smithi055.stdout:/bin/podman: stdout 4.9.4-dev 2024-04-15T17:35:14.462 INFO:teuthology.orchestra.run.smithi055.stdout:Verifying lvm2 is present... 2024-04-15T17:35:14.462 INFO:teuthology.orchestra.run.smithi055.stdout:Verifying time synchronization is in place... 2024-04-15T17:35:14.469 INFO:teuthology.orchestra.run.smithi055.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-04-15T17:35:14.469 INFO:teuthology.orchestra.run.smithi055.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-04-15T17:35:14.475 INFO:teuthology.orchestra.run.smithi055.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-04-15T17:35:14.475 INFO:teuthology.orchestra.run.smithi055.stdout:systemctl: stdout inactive 2024-04-15T17:35:14.482 INFO:teuthology.orchestra.run.smithi055.stdout:systemctl: stdout enabled 2024-04-15T17:35:14.488 INFO:teuthology.orchestra.run.smithi055.stdout:systemctl: stdout active 2024-04-15T17:35:14.488 INFO:teuthology.orchestra.run.smithi055.stdout:Unit chronyd.service is enabled and running 2024-04-15T17:35:14.488 INFO:teuthology.orchestra.run.smithi055.stdout:Repeating the final host check... 2024-04-15T17:35:14.512 INFO:teuthology.orchestra.run.smithi055.stdout:/bin/podman: stdout 4.9.4-dev 2024-04-15T17:35:14.512 INFO:teuthology.orchestra.run.smithi055.stdout:podman (/bin/podman) version 4.9.4 is present 2024-04-15T17:35:14.512 INFO:teuthology.orchestra.run.smithi055.stdout:systemctl is present 2024-04-15T17:35:14.512 INFO:teuthology.orchestra.run.smithi055.stdout:lvcreate is present 2024-04-15T17:35:14.518 INFO:teuthology.orchestra.run.smithi055.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-04-15T17:35:14.519 INFO:teuthology.orchestra.run.smithi055.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-04-15T17:35:14.525 INFO:teuthology.orchestra.run.smithi055.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-04-15T17:35:14.525 INFO:teuthology.orchestra.run.smithi055.stdout:systemctl: stdout inactive 2024-04-15T17:35:14.531 INFO:teuthology.orchestra.run.smithi055.stdout:systemctl: stdout enabled 2024-04-15T17:35:14.538 INFO:teuthology.orchestra.run.smithi055.stdout:systemctl: stdout active 2024-04-15T17:35:14.538 INFO:teuthology.orchestra.run.smithi055.stdout:Unit chronyd.service is enabled and running 2024-04-15T17:35:14.538 INFO:teuthology.orchestra.run.smithi055.stdout:Host looks OK 2024-04-15T17:35:14.538 INFO:teuthology.orchestra.run.smithi055.stdout:Cluster fsid: 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:35:14.538 INFO:teuthology.orchestra.run.smithi055.stdout:Acquiring lock 139693329986464 on /run/cephadm/6c2710cc-fb4e-11ee-bc8f-c7b262605968.lock 2024-04-15T17:35:14.538 INFO:teuthology.orchestra.run.smithi055.stdout:Lock 139693329986464 acquired on /run/cephadm/6c2710cc-fb4e-11ee-bc8f-c7b262605968.lock 2024-04-15T17:35:14.539 INFO:teuthology.orchestra.run.smithi055.stdout:Verifying IP 172.21.15.55 port 3300 ... 2024-04-15T17:35:14.539 INFO:teuthology.orchestra.run.smithi055.stdout:Verifying IP 172.21.15.55 port 6789 ... 2024-04-15T17:35:14.539 INFO:teuthology.orchestra.run.smithi055.stdout:Base mon IP(s) is [172.21.15.55:3300, 172.21.15.55:6789], mon addrv is [v2:172.21.15.55:3300,v1:172.21.15.55:6789] 2024-04-15T17:35:14.542 INFO:teuthology.orchestra.run.smithi055.stdout:/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 proto dhcp src 172.21.15.55 metric 100 2024-04-15T17:35:14.542 INFO:teuthology.orchestra.run.smithi055.stdout:/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.55 metric 100 2024-04-15T17:35:14.544 INFO:teuthology.orchestra.run.smithi055.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-04-15T17:35:14.544 INFO:teuthology.orchestra.run.smithi055.stdout:/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 1024 pref medium 2024-04-15T17:35:14.545 INFO:teuthology.orchestra.run.smithi055.stdout:/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 100 pref medium 2024-04-15T17:35:14.547 INFO:teuthology.orchestra.run.smithi055.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-04-15T17:35:14.547 INFO:teuthology.orchestra.run.smithi055.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2024-04-15T17:35:14.547 INFO:teuthology.orchestra.run.smithi055.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-04-15T17:35:14.547 INFO:teuthology.orchestra.run.smithi055.stdout:/sbin/ip: stdout 4: ens1f0: mtu 1500 state UP qlen 1000 2024-04-15T17:35:14.547 INFO:teuthology.orchestra.run.smithi055.stdout:/sbin/ip: stdout inet6 fe80::ae1f:6bff:fef8:2606/64 scope link noprefixroute 2024-04-15T17:35:14.547 INFO:teuthology.orchestra.run.smithi055.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-04-15T17:35:14.548 INFO:teuthology.orchestra.run.smithi055.stdout:Mon IP `172.21.15.55` is in CIDR network `172.21.0.0/20` 2024-04-15T17:35:14.548 INFO:teuthology.orchestra.run.smithi055.stdout:Mon IP `172.21.15.55` is in CIDR network `172.21.0.0/20` 2024-04-15T17:35:14.548 INFO:teuthology.orchestra.run.smithi055.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-04-15T17:35:14.548 INFO:teuthology.orchestra.run.smithi055.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-04-15T17:35:14.549 INFO:teuthology.orchestra.run.smithi055.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54... 2024-04-15T17:35:15.031 INFO:teuthology.orchestra.run.smithi055.stdout:/bin/podman: stdout 259793512b732efd8e04a33aa28c6de3675c47d120bc226206521425d246003e 2024-04-15T17:35:15.031 INFO:teuthology.orchestra.run.smithi055.stdout:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54... 2024-04-15T17:35:15.031 INFO:teuthology.orchestra.run.smithi055.stdout:/bin/podman: stderr Getting image source signatures 2024-04-15T17:35:15.031 INFO:teuthology.orchestra.run.smithi055.stdout:/bin/podman: stderr Copying blob sha256:9e451f54663b179c1b9723e4792c62bd6dec2cebe37d408f5d2cf1c551fbf8b7 2024-04-15T17:35:15.032 INFO:teuthology.orchestra.run.smithi055.stdout:/bin/podman: stderr Copying blob sha256:9793b5b5582798bde394f4383d142e9f248a25e4ebfd72ee05ea9ec6251a877d 2024-04-15T17:35:15.032 INFO:teuthology.orchestra.run.smithi055.stdout:/bin/podman: stderr Copying config sha256:259793512b732efd8e04a33aa28c6de3675c47d120bc226206521425d246003e 2024-04-15T17:35:15.032 INFO:teuthology.orchestra.run.smithi055.stdout:/bin/podman: stderr Writing manifest to image destination 2024-04-15T17:35:15.936 INFO:teuthology.orchestra.run.smithi055.stdout:ceph: stdout ceph version 19.0.0-3080-gc2d8c315 (c2d8c3155d854ee204cb7c7261232571229d1d54) squid (dev) 2024-04-15T17:35:15.936 INFO:teuthology.orchestra.run.smithi055.stdout:Ceph version: ceph version 19.0.0-3080-gc2d8c315 (c2d8c3155d854ee204cb7c7261232571229d1d54) squid (dev) 2024-04-15T17:35:15.936 INFO:teuthology.orchestra.run.smithi055.stdout:Extracting ceph user uid/gid from container image... 2024-04-15T17:35:19.226 INFO:teuthology.orchestra.run.smithi055.stdout:stat: stdout 167 167 2024-04-15T17:35:19.226 INFO:teuthology.orchestra.run.smithi055.stdout:Creating initial keys... 2024-04-15T17:35:20.149 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph-authtool: stdout AQBXZR1mN8pYHxAAdwk/rIYBbCqwNbcmM/8Zeg== 2024-04-15T17:35:21.030 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph-authtool: stdout AQBYZR1mc4tDGxAAaSWY2QOvQ5PZ1ow6s04O0A== 2024-04-15T17:35:21.870 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph-authtool: stdout AQBZZR1mcBu7ExAAkA/WpKpOXYpPCYTln4Q1hw== 2024-04-15T17:35:21.871 INFO:teuthology.orchestra.run.smithi055.stdout:Creating initial monmap... 2024-04-15T17:35:22.827 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-04-15T17:35:22.827 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-04-15T17:35:22.827 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:35:22.827 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-04-15T17:35:22.827 INFO:teuthology.orchestra.run.smithi055.stdout:monmaptool for a [v2:172.21.15.55:3300,v1:172.21.15.55:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-04-15T17:35:22.827 INFO:teuthology.orchestra.run.smithi055.stdout:setting min_mon_release = quincy 2024-04-15T17:35:22.828 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/monmaptool: set fsid to 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:35:22.828 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-04-15T17:35:22.828 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:35:22.828 INFO:teuthology.orchestra.run.smithi055.stdout:Creating mon... 2024-04-15T17:35:23.725 INFO:teuthology.orchestra.run.smithi055.stdout:create mon.a on 2024-04-15T17:35:24.220 INFO:teuthology.orchestra.run.smithi055.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph.target". 2024-04-15T17:35:24.515 INFO:teuthology.orchestra.run.smithi055.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2024-04-15T17:35:25.027 INFO:teuthology.orchestra.run.smithi055.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968.target → /etc/systemd/system/ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968.target. 2024-04-15T17:35:25.028 INFO:teuthology.orchestra.run.smithi055.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968.target → /etc/systemd/system/ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968.target. 2024-04-15T17:35:25.754 INFO:teuthology.orchestra.run.smithi055.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@mon.a 2024-04-15T17:35:25.754 INFO:teuthology.orchestra.run.smithi055.stdout:systemctl: stderr Failed to reset failed state of unit ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@mon.a.service: Unit ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@mon.a.service not loaded. 2024-04-15T17:35:25.991 INFO:teuthology.orchestra.run.smithi055.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968.target.wants/ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@mon.a.service → /etc/systemd/system/ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@.service. 2024-04-15T17:35:26.374 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:26 smithi055 podman[29199]: 2024-04-15 17:35:26.136315883 +0000 UTC m=+0.016645887 image pull 259793512b732efd8e04a33aa28c6de3675c47d120bc226206521425d246003e quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 2024-04-15T17:35:27.374 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:27 smithi055 podman[29199]: 2024-04-15 17:35:27.058841694 +0000 UTC m=+0.939171685 container create ddfe3461cbc021267325865d7a6911b0e5ab1deb8259fea48aeb6b8f5dd5747c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mon-a, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image, GIT_CLEAN=True, org.label-schema.build-date=20240409, org.label-schema.schema-version=1.0, ceph=True, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, RELEASE=main-c2d8c31, CEPH_POINT_RELEASE=, io.buildah.version=1.33.5) 2024-04-15T17:35:29.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:28 smithi055 podman[29199]: 2024-04-15 17:35:28.688183102 +0000 UTC m=+2.568513096 container init ddfe3461cbc021267325865d7a6911b0e5ab1deb8259fea48aeb6b8f5dd5747c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mon-a, RELEASE=main-c2d8c31, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 8 Base Image, maintainer=Guillaume Abrioux , GIT_CLEAN=True, io.buildah.version=1.33.5, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, ceph=True, org.label-schema.build-date=20240409, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0) 2024-04-15T17:35:29.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:28 smithi055 podman[29199]: 2024-04-15 17:35:28.69203348 +0000 UTC m=+2.572363471 container start ddfe3461cbc021267325865d7a6911b0e5ab1deb8259fea48aeb6b8f5dd5747c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mon-a, org.label-schema.build-date=20240409, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, ceph=True, GIT_CLEAN=True, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, RELEASE=main-c2d8c31, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.33.5, org.label-schema.name=CentOS Stream 8 Base Image, maintainer=Guillaume Abrioux , GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.license=GPLv2) 2024-04-15T17:35:29.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:28 smithi055 ceph-mon[29217]: mkfs 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:35:29.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:28 smithi055 ceph-mon[29217]: mon.a is new leader, mons a in quorum (ranks 0) 2024-04-15T17:35:29.562 INFO:teuthology.orchestra.run.smithi055.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-04-15T17:35:29.562 INFO:teuthology.orchestra.run.smithi055.stdout:systemctl: stdout disabled 2024-04-15T17:35:29.570 INFO:teuthology.orchestra.run.smithi055.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-04-15T17:35:29.570 INFO:teuthology.orchestra.run.smithi055.stdout:systemctl: stdout inactive 2024-04-15T17:35:29.571 INFO:teuthology.orchestra.run.smithi055.stdout:firewalld.service is not enabled 2024-04-15T17:35:29.571 INFO:teuthology.orchestra.run.smithi055.stdout:Not possible to enable service . firewalld.service is not available 2024-04-15T17:35:29.571 INFO:teuthology.orchestra.run.smithi055.stdout:Waiting for mon to start... 2024-04-15T17:35:29.571 INFO:teuthology.orchestra.run.smithi055.stdout:Waiting for mon... 2024-04-15T17:35:29.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:29 smithi055 bash[29199]: ddfe3461cbc021267325865d7a6911b0e5ab1deb8259fea48aeb6b8f5dd5747c 2024-04-15T17:35:29.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:29 smithi055 systemd[1]: Started Ceph mon.a for 6c2710cc-fb4e-11ee-bc8f-c7b262605968. 2024-04-15T17:35:29.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:29 smithi055 ceph-mon[29217]: mon.a is new leader, mons a in quorum (ranks 0) 2024-04-15T17:35:29.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:29 smithi055 ceph-mon[29217]: monmap epoch 1 2024-04-15T17:35:29.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:29 smithi055 ceph-mon[29217]: fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:35:29.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:29 smithi055 ceph-mon[29217]: last_changed 2024-04-15T17:35:22.244997+0000 2024-04-15T17:35:29.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:29 smithi055 ceph-mon[29217]: created 2024-04-15T17:35:22.244997+0000 2024-04-15T17:35:29.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:29 smithi055 ceph-mon[29217]: min_mon_release 19 (squid) 2024-04-15T17:35:29.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:29 smithi055 ceph-mon[29217]: election_strategy: 1 2024-04-15T17:35:29.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:29 smithi055 ceph-mon[29217]: 0: [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] mon.a 2024-04-15T17:35:29.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:29 smithi055 ceph-mon[29217]: fsmap 2024-04-15T17:35:29.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:29 smithi055 ceph-mon[29217]: osdmap e1: 0 total, 0 up, 0 in 2024-04-15T17:35:29.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:29 smithi055 ceph-mon[29217]: mgrmap e1: no daemons active 2024-04-15T17:35:32.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:32 smithi055 ceph-mon[29217]: from='client.? 172.21.15.55:0/3900293947' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-04-15T17:35:35.638 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout cluster: 2024-04-15T17:35:35.639 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout id: 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:35:35.639 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-04-15T17:35:35.639 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout 2024-04-15T17:35:35.639 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout services: 2024-04-15T17:35:35.639 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 3s) 2024-04-15T17:35:35.639 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-04-15T17:35:35.639 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-04-15T17:35:35.639 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout 2024-04-15T17:35:35.639 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout data: 2024-04-15T17:35:35.639 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-04-15T17:35:35.639 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-04-15T17:35:35.639 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-04-15T17:35:35.639 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout pgs: 2024-04-15T17:35:35.640 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout 2024-04-15T17:35:35.640 INFO:teuthology.orchestra.run.smithi055.stdout:mon is available 2024-04-15T17:35:35.640 INFO:teuthology.orchestra.run.smithi055.stdout:Assimilating anything we can from ceph.conf... 2024-04-15T17:35:36.374 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:36 smithi055 ceph-mon[29217]: from='client.? 172.21.15.55:0/2443181617' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-15T17:35:36.374 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:36 smithi055 ceph-mon[29217]: from='client.? 172.21.15.55:0/2443181617' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-04-15T17:35:36.669 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout 2024-04-15T17:35:36.669 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout [global] 2024-04-15T17:35:36.669 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout fsid = 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:35:36.669 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.55:3300,v1:172.21.15.55:6789] 2024-04-15T17:35:36.669 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-04-15T17:35:36.669 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-04-15T17:35:36.669 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-04-15T17:35:36.669 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-04-15T17:35:36.669 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout 2024-04-15T17:35:36.669 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout [mgr] 2024-04-15T17:35:36.670 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = False 2024-04-15T17:35:36.670 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-04-15T17:35:36.670 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout 2024-04-15T17:35:36.670 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout [osd] 2024-04-15T17:35:36.670 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-04-15T17:35:36.670 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-04-15T17:35:36.670 INFO:teuthology.orchestra.run.smithi055.stdout:Generating new minimal ceph.conf... 2024-04-15T17:35:37.374 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:37 smithi055 ceph-mon[29217]: from='client.? 172.21.15.55:0/78945690' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:35:37.658 INFO:teuthology.orchestra.run.smithi055.stdout:Restarting the monitor... 2024-04-15T17:35:37.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:37 smithi055 systemd[1]: Stopping Ceph mon.a for 6c2710cc-fb4e-11ee-bc8f-c7b262605968... 2024-04-15T17:35:38.309 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:37 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mon-a[29213]: 2024-04-15T17:35:37.929+0000 7ff2bafa4700 -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-04-15T17:35:38.309 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:37 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mon-a[29213]: 2024-04-15T17:35:37.929+0000 7ff2bafa4700 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-04-15T17:35:38.309 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:38 smithi055 podman[29462]: 2024-04-15 17:35:38.08452329 +0000 UTC m=+0.260517489 container died ddfe3461cbc021267325865d7a6911b0e5ab1deb8259fea48aeb6b8f5dd5747c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mon-a, RELEASE=main-c2d8c31, io.buildah.version=1.33.5, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.build-date=20240409, GIT_CLEAN=True) 2024-04-15T17:35:38.559 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:38 smithi055 podman[29462]: 2024-04-15 17:35:38.406016486 +0000 UTC m=+0.582010684 container cleanup ddfe3461cbc021267325865d7a6911b0e5ab1deb8259fea48aeb6b8f5dd5747c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mon-a, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 8 Base Image, GIT_CLEAN=True, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, org.label-schema.license=GPLv2, org.label-schema.build-date=20240409, org.label-schema.vendor=CentOS, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, CEPH_POINT_RELEASE=, RELEASE=main-c2d8c31, org.label-schema.schema-version=1.0) 2024-04-15T17:35:38.560 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:38 smithi055 bash[29462]: ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mon-a 2024-04-15T17:35:38.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:38 smithi055 podman[29475]: 2024-04-15 17:35:38.557029196 +0000 UTC m=+0.469903918 container remove ddfe3461cbc021267325865d7a6911b0e5ab1deb8259fea48aeb6b8f5dd5747c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mon-a, org.label-schema.name=CentOS Stream 8 Base Image, GIT_CLEAN=True, org.label-schema.schema-version=1.0, ceph=True, org.label-schema.build-date=20240409, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, io.buildah.version=1.33.5, org.label-schema.license=GPLv2, RELEASE=main-c2d8c31, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD) 2024-04-15T17:35:38.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:38 smithi055 systemd[1]: ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@mon.a.service: Deactivated successfully. 2024-04-15T17:35:38.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:38 smithi055 systemd[1]: Stopped Ceph mon.a for 6c2710cc-fb4e-11ee-bc8f-c7b262605968. 2024-04-15T17:35:38.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:38 smithi055 systemd[1]: Starting Ceph mon.a for 6c2710cc-fb4e-11ee-bc8f-c7b262605968... 2024-04-15T17:35:39.263 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:38 smithi055 podman[29573]: 2024-04-15 17:35:38.97487694 +0000 UTC m=+0.102396787 container create 015e37941ede7a11bed4051b07e0d117aacc7a78f7971aa13f296a6bc816418b (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mon-a, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, org.label-schema.build-date=20240409, ceph=True, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 8 Base Image, RELEASE=main-c2d8c31, GIT_CLEAN=True, CEPH_POINT_RELEASE=, io.buildah.version=1.33.5) 2024-04-15T17:35:39.264 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:38 smithi055 podman[29573]: 2024-04-15 17:35:38.890151215 +0000 UTC m=+0.017671029 image pull 259793512b732efd8e04a33aa28c6de3675c47d120bc226206521425d246003e quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 2024-04-15T17:35:39.264 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 podman[29573]: 2024-04-15 17:35:39.186140568 +0000 UTC m=+0.313660389 container init 015e37941ede7a11bed4051b07e0d117aacc7a78f7971aa13f296a6bc816418b (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mon-a, org.label-schema.build-date=20240409, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, io.buildah.version=1.33.5, org.label-schema.schema-version=1.0, RELEASE=main-c2d8c31, GIT_CLEAN=True, CEPH_POINT_RELEASE=) 2024-04-15T17:35:39.264 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 podman[29573]: 2024-04-15 17:35:39.189425515 +0000 UTC m=+0.316945320 container start 015e37941ede7a11bed4051b07e0d117aacc7a78f7971aa13f296a6bc816418b (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mon-a, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 8 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240409, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, GIT_CLEAN=True, io.buildah.version=1.33.5, RELEASE=main-c2d8c31, ceph=True, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67) 2024-04-15T17:35:39.264 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: set uid:gid to 167:167 (ceph:ceph) 2024-04-15T17:35:39.264 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: ceph version 19.0.0-3080-gc2d8c315 (c2d8c3155d854ee204cb7c7261232571229d1d54) squid (dev), process ceph-mon, pid 2 2024-04-15T17:35:39.264 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: pidfile_write: ignore empty --pid-file 2024-04-15T17:35:39.264 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: load: jerasure load: lrc 2024-04-15T17:35:39.264 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: RocksDB version: 7.9.2 2024-04-15T17:35:39.264 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Git sha 0 2024-04-15T17:35:39.264 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Compile date 2024-04-12 22:42:42 2024-04-15T17:35:39.264 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: DB SUMMARY 2024-04-15T17:35:39.265 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: DB Session ID: TPSHSO425J1BH6FCXHPN 2024-04-15T17:35:39.265 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: CURRENT file: CURRENT 2024-04-15T17:35:39.265 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: IDENTITY file: IDENTITY 2024-04-15T17:35:39.265 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-04-15T17:35:39.265 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2024-04-15T17:35:39.265 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 89394 ; 2024-04-15T17:35:39.265 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.error_if_exists: 0 2024-04-15T17:35:39.267 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.create_if_missing: 0 2024-04-15T17:35:39.267 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.paranoid_checks: 1 2024-04-15T17:35:39.267 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.flush_verify_memtable_count: 1 2024-04-15T17:35:39.267 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-04-15T17:35:39.267 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-04-15T17:35:39.267 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.env: 0x55821921ccc0 2024-04-15T17:35:39.267 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.fs: PosixFileSystem 2024-04-15T17:35:39.267 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.info_log: 0x55821b503be0 2024-04-15T17:35:39.267 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.max_file_opening_threads: 16 2024-04-15T17:35:39.268 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.statistics: (nil) 2024-04-15T17:35:39.268 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.use_fsync: 0 2024-04-15T17:35:39.268 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.max_log_file_size: 0 2024-04-15T17:35:39.268 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-04-15T17:35:39.268 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.log_file_time_to_roll: 0 2024-04-15T17:35:39.268 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.keep_log_file_num: 1000 2024-04-15T17:35:39.268 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.recycle_log_file_num: 0 2024-04-15T17:35:39.268 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.allow_fallocate: 1 2024-04-15T17:35:39.268 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.allow_mmap_reads: 0 2024-04-15T17:35:39.268 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.allow_mmap_writes: 0 2024-04-15T17:35:39.268 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.use_direct_reads: 0 2024-04-15T17:35:39.268 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-04-15T17:35:39.269 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.create_missing_column_families: 0 2024-04-15T17:35:39.269 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.db_log_dir: 2024-04-15T17:35:39.269 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.wal_dir: 2024-04-15T17:35:39.269 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.table_cache_numshardbits: 6 2024-04-15T17:35:39.269 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.WAL_ttl_seconds: 0 2024-04-15T17:35:39.269 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.WAL_size_limit_MB: 0 2024-04-15T17:35:39.269 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-04-15T17:35:39.269 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-04-15T17:35:39.269 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.is_fd_close_on_exec: 1 2024-04-15T17:35:39.269 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.advise_random_on_open: 1 2024-04-15T17:35:39.269 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.db_write_buffer_size: 0 2024-04-15T17:35:39.269 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.write_buffer_manager: 0x55821b4d41e0 2024-04-15T17:35:39.269 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-04-15T17:35:39.270 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-04-15T17:35:39.270 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.use_adaptive_mutex: 0 2024-04-15T17:35:39.270 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.rate_limiter: (nil) 2024-04-15T17:35:39.270 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-04-15T17:35:39.270 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.wal_recovery_mode: 2 2024-04-15T17:35:39.270 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.enable_thread_tracking: 0 2024-04-15T17:35:39.271 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.enable_pipelined_write: 0 2024-04-15T17:35:39.271 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.unordered_write: 0 2024-04-15T17:35:39.271 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-04-15T17:35:39.271 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-04-15T17:35:39.271 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-04-15T17:35:39.271 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-04-15T17:35:39.271 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.row_cache: None 2024-04-15T17:35:39.271 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.wal_filter: None 2024-04-15T17:35:39.271 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-04-15T17:35:39.271 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.allow_ingest_behind: 0 2024-04-15T17:35:39.272 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.two_write_queues: 0 2024-04-15T17:35:39.272 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.manual_wal_flush: 0 2024-04-15T17:35:39.272 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.wal_compression: 0 2024-04-15T17:35:39.272 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.atomic_flush: 0 2024-04-15T17:35:39.272 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-04-15T17:35:39.272 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.persist_stats_to_disk: 0 2024-04-15T17:35:39.273 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.write_dbid_to_manifest: 0 2024-04-15T17:35:39.273 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.log_readahead_size: 0 2024-04-15T17:35:39.273 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-04-15T17:35:39.273 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.best_efforts_recovery: 0 2024-04-15T17:35:39.273 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-04-15T17:35:39.273 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-04-15T17:35:39.273 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.allow_data_in_errors: 0 2024-04-15T17:35:39.273 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.db_host_id: __hostname__ 2024-04-15T17:35:39.273 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.enforce_single_del_contracts: true 2024-04-15T17:35:39.273 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.max_background_jobs: 2 2024-04-15T17:35:39.273 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.max_background_compactions: -1 2024-04-15T17:35:39.274 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.max_subcompactions: 1 2024-04-15T17:35:39.274 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-04-15T17:35:39.274 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-04-15T17:35:39.274 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.delayed_write_rate : 16777216 2024-04-15T17:35:39.274 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.max_total_wal_size: 0 2024-04-15T17:35:39.274 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-04-15T17:35:39.274 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.stats_dump_period_sec: 600 2024-04-15T17:35:39.274 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.stats_persist_period_sec: 600 2024-04-15T17:35:39.274 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-04-15T17:35:39.274 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.max_open_files: -1 2024-04-15T17:35:39.274 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.bytes_per_sync: 0 2024-04-15T17:35:39.274 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.wal_bytes_per_sync: 0 2024-04-15T17:35:39.275 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.strict_bytes_per_sync: 0 2024-04-15T17:35:39.275 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.compaction_readahead_size: 0 2024-04-15T17:35:39.275 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.max_background_flushes: -1 2024-04-15T17:35:39.275 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Compression algorithms supported: 2024-04-15T17:35:39.275 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-04-15T17:35:39.275 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: kZSTD supported: 0 2024-04-15T17:35:39.275 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: kXpressCompression supported: 0 2024-04-15T17:35:39.275 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: kLZ4HCCompression supported: 1 2024-04-15T17:35:39.275 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: kZlibCompression supported: 1 2024-04-15T17:35:39.275 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: kSnappyCompression supported: 1 2024-04-15T17:35:39.275 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: kLZ4Compression supported: 1 2024-04-15T17:35:39.275 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: kBZip2Compression supported: 0 2024-04-15T17:35:39.276 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Fast CRC32 supported: Supported on x86 2024-04-15T17:35:39.276 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: DMutex implementation: pthread_mutex_t 2024-04-15T17:35:39.276 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2024-04-15T17:35:39.276 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-04-15T17:35:39.276 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-04-15T17:35:39.276 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.merge_operator: 2024-04-15T17:35:39.276 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.compaction_filter: None 2024-04-15T17:35:39.276 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.compaction_filter_factory: None 2024-04-15T17:35:39.276 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.sst_partitioner_factory: None 2024-04-15T17:35:39.276 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.memtable_factory: SkipListFactory 2024-04-15T17:35:39.276 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.table_factory: BlockBasedTable 2024-04-15T17:35:39.277 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55821b503dc0) 2024-04-15T17:35:39.277 INFO:journalctl@ceph.mon.a.smithi055.stdout: cache_index_and_filter_blocks: 1 2024-04-15T17:35:39.277 INFO:journalctl@ceph.mon.a.smithi055.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-04-15T17:35:39.277 INFO:journalctl@ceph.mon.a.smithi055.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-04-15T17:35:39.277 INFO:journalctl@ceph.mon.a.smithi055.stdout: pin_top_level_index_and_filter: 1 2024-04-15T17:35:39.277 INFO:journalctl@ceph.mon.a.smithi055.stdout: index_type: 0 2024-04-15T17:35:39.277 INFO:journalctl@ceph.mon.a.smithi055.stdout: data_block_index_type: 0 2024-04-15T17:35:39.277 INFO:journalctl@ceph.mon.a.smithi055.stdout: index_shortening: 1 2024-04-15T17:35:39.277 INFO:journalctl@ceph.mon.a.smithi055.stdout: data_block_hash_table_util_ratio: 0.750000 2024-04-15T17:35:39.277 INFO:journalctl@ceph.mon.a.smithi055.stdout: checksum: 4 2024-04-15T17:35:39.277 INFO:journalctl@ceph.mon.a.smithi055.stdout: no_block_cache: 0 2024-04-15T17:35:39.277 INFO:journalctl@ceph.mon.a.smithi055.stdout: block_cache: 0x55821b507090 2024-04-15T17:35:39.277 INFO:journalctl@ceph.mon.a.smithi055.stdout: block_cache_name: BinnedLRUCache 2024-04-15T17:35:39.278 INFO:journalctl@ceph.mon.a.smithi055.stdout: block_cache_options: 2024-04-15T17:35:39.278 INFO:journalctl@ceph.mon.a.smithi055.stdout: capacity : 536870912 2024-04-15T17:35:39.278 INFO:journalctl@ceph.mon.a.smithi055.stdout: num_shard_bits : 4 2024-04-15T17:35:39.278 INFO:journalctl@ceph.mon.a.smithi055.stdout: strict_capacity_limit : 0 2024-04-15T17:35:39.278 INFO:journalctl@ceph.mon.a.smithi055.stdout: high_pri_pool_ratio: 0.000 2024-04-15T17:35:39.278 INFO:journalctl@ceph.mon.a.smithi055.stdout: block_cache_compressed: (nil) 2024-04-15T17:35:39.278 INFO:journalctl@ceph.mon.a.smithi055.stdout: persistent_cache: (nil) 2024-04-15T17:35:39.278 INFO:journalctl@ceph.mon.a.smithi055.stdout: block_size: 4096 2024-04-15T17:35:39.278 INFO:journalctl@ceph.mon.a.smithi055.stdout: block_size_deviation: 10 2024-04-15T17:35:39.278 INFO:journalctl@ceph.mon.a.smithi055.stdout: block_restart_interval: 16 2024-04-15T17:35:39.278 INFO:journalctl@ceph.mon.a.smithi055.stdout: index_block_restart_interval: 1 2024-04-15T17:35:39.279 INFO:journalctl@ceph.mon.a.smithi055.stdout: metadata_block_size: 4096 2024-04-15T17:35:39.279 INFO:journalctl@ceph.mon.a.smithi055.stdout: partition_filters: 0 2024-04-15T17:35:39.279 INFO:journalctl@ceph.mon.a.smithi055.stdout: use_delta_encoding: 1 2024-04-15T17:35:39.279 INFO:journalctl@ceph.mon.a.smithi055.stdout: filter_policy: bloomfilter 2024-04-15T17:35:39.279 INFO:journalctl@ceph.mon.a.smithi055.stdout: whole_key_filtering: 1 2024-04-15T17:35:39.279 INFO:journalctl@ceph.mon.a.smithi055.stdout: verify_compression: 0 2024-04-15T17:35:39.279 INFO:journalctl@ceph.mon.a.smithi055.stdout: read_amp_bytes_per_bit: 0 2024-04-15T17:35:39.279 INFO:journalctl@ceph.mon.a.smithi055.stdout: format_version: 5 2024-04-15T17:35:39.279 INFO:journalctl@ceph.mon.a.smithi055.stdout: enable_index_compression: 1 2024-04-15T17:35:39.279 INFO:journalctl@ceph.mon.a.smithi055.stdout: block_align: 0 2024-04-15T17:35:39.279 INFO:journalctl@ceph.mon.a.smithi055.stdout: max_auto_readahead_size: 262144 2024-04-15T17:35:39.279 INFO:journalctl@ceph.mon.a.smithi055.stdout: prepopulate_block_cache: 0 2024-04-15T17:35:39.280 INFO:journalctl@ceph.mon.a.smithi055.stdout: initial_auto_readahead_size: 8192 2024-04-15T17:35:39.280 INFO:journalctl@ceph.mon.a.smithi055.stdout: num_file_reads_for_auto_readahead: 2 2024-04-15T17:35:39.280 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.write_buffer_size: 33554432 2024-04-15T17:35:39.280 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.max_write_buffer_number: 2 2024-04-15T17:35:39.280 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.compression: NoCompression 2024-04-15T17:35:39.280 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.bottommost_compression: Disabled 2024-04-15T17:35:39.280 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.prefix_extractor: nullptr 2024-04-15T17:35:39.281 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-04-15T17:35:39.281 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.num_levels: 7 2024-04-15T17:35:39.281 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-04-15T17:35:39.281 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-04-15T17:35:39.281 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-04-15T17:35:39.281 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-04-15T17:35:39.281 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-04-15T17:35:39.282 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-04-15T17:35:39.282 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-04-15T17:35:39.282 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-04-15T17:35:39.282 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-04-15T17:35:39.282 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-04-15T17:35:39.282 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-04-15T17:35:39.282 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-04-15T17:35:39.282 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.compression_opts.window_bits: -14 2024-04-15T17:35:39.282 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.compression_opts.level: 32767 2024-04-15T17:35:39.282 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.compression_opts.strategy: 0 2024-04-15T17:35:39.283 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-04-15T17:35:39.283 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-04-15T17:35:39.283 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-04-15T17:35:39.283 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-04-15T17:35:39.283 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.compression_opts.enabled: false 2024-04-15T17:35:39.283 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-04-15T17:35:39.283 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-04-15T17:35:39.283 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-04-15T17:35:39.283 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-04-15T17:35:39.283 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.target_file_size_base: 67108864 2024-04-15T17:35:39.283 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.target_file_size_multiplier: 1 2024-04-15T17:35:39.283 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-04-15T17:35:39.283 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-04-15T17:35:39.283 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-04-15T17:35:39.284 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-04-15T17:35:39.284 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-04-15T17:35:39.284 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-04-15T17:35:39.284 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-04-15T17:35:39.284 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-04-15T17:35:39.284 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-04-15T17:35:39.284 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-04-15T17:35:39.284 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-04-15T17:35:39.284 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-04-15T17:35:39.284 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-04-15T17:35:39.284 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.arena_block_size: 1048576 2024-04-15T17:35:39.284 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-04-15T17:35:39.284 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-04-15T17:35:39.284 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.disable_auto_compactions: 0 2024-04-15T17:35:39.285 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-04-15T17:35:39.285 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-04-15T17:35:39.285 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-04-15T17:35:39.285 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-04-15T17:35:39.285 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-04-15T17:35:39.285 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-04-15T17:35:39.285 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-04-15T17:35:39.285 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-04-15T17:35:39.285 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-04-15T17:35:39.285 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-04-15T17:35:39.285 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-04-15T17:35:39.285 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.inplace_update_support: 0 2024-04-15T17:35:39.285 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.inplace_update_num_locks: 10000 2024-04-15T17:35:39.285 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-04-15T17:35:39.286 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-04-15T17:35:39.286 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.memtable_huge_page_size: 0 2024-04-15T17:35:39.286 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.bloom_locality: 0 2024-04-15T17:35:39.286 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.max_successive_merges: 0 2024-04-15T17:35:39.286 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.optimize_filters_for_hits: 0 2024-04-15T17:35:39.286 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.paranoid_file_checks: 0 2024-04-15T17:35:39.286 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.force_consistency_checks: 1 2024-04-15T17:35:39.286 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.report_bg_io_stats: 0 2024-04-15T17:35:39.286 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.ttl: 2592000 2024-04-15T17:35:39.286 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.periodic_compaction_seconds: 0 2024-04-15T17:35:39.287 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-04-15T17:35:39.287 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-04-15T17:35:39.287 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.enable_blob_files: false 2024-04-15T17:35:39.287 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.min_blob_size: 0 2024-04-15T17:35:39.287 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.blob_file_size: 268435456 2024-04-15T17:35:39.287 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.blob_compression_type: NoCompression 2024-04-15T17:35:39.287 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.enable_blob_garbage_collection: false 2024-04-15T17:35:39.288 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-04-15T17:35:39.288 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-04-15T17:35:39.288 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-04-15T17:35:39.288 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.blob_file_starting_level: 0 2024-04-15T17:35:39.288 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-04-15T17:35:39.288 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 succeeded,manifest_file_number is 10, next_file_number is 12, last_sequence is 5, log_number is 5,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 5 2024-04-15T17:35:39.289 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-04-15T17:35:39.289 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 4bfae373-f1ef-4032-b8cc-4733d64f2415 2024-04-15T17:35:39.289 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: EVENT_LOG_v1 {"time_micros": 1713202539219202, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-04-15T17:35:39.289 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-04-15T17:35:39.289 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: EVENT_LOG_v1 {"time_micros": 1713202539220087, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85900, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 264, "table_properties": {"data_size": 84029, "index_size": 255, "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": 10231, "raw_average_key_size": 46, "raw_value_size": 78191, "raw_average_value_size": 357, "num_data_blocks": 12, "num_entries": 219, "num_filter_entries": 219, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1713202539, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "4bfae373-f1ef-4032-b8cc-4733d64f2415", "db_session_id": "TPSHSO425J1BH6FCXHPN", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-04-15T17:35:39.290 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: EVENT_LOG_v1 {"time_micros": 1713202539220171, "job": 1, "event": "recovery_finished"} 2024-04-15T17:35:39.290 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-04-15T17:35:39.290 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-a/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-04-15T17:35:39.290 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55821b5f6000 2024-04-15T17:35:39.290 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: DB pointer 0x55821b5e0000 2024-04-15T17:35:39.290 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-04-15T17:35:39.290 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-04-15T17:35:39.290 INFO:journalctl@ceph.mon.a.smithi055.stdout: ** DB Stats ** 2024-04-15T17:35:39.290 INFO:journalctl@ceph.mon.a.smithi055.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-04-15T17:35:39.291 INFO:journalctl@ceph.mon.a.smithi055.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-04-15T17:35:39.291 INFO:journalctl@ceph.mon.a.smithi055.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-15T17:35:39.291 INFO:journalctl@ceph.mon.a.smithi055.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-15T17:35:39.291 INFO:journalctl@ceph.mon.a.smithi055.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-04-15T17:35:39.291 INFO:journalctl@ceph.mon.a.smithi055.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-15T17:35:39.291 INFO:journalctl@ceph.mon.a.smithi055.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-15T17:35:39.291 INFO:journalctl@ceph.mon.a.smithi055.stdout: 2024-04-15T17:35:39.292 INFO:journalctl@ceph.mon.a.smithi055.stdout: ** Compaction Stats [default] ** 2024-04-15T17:35:39.292 INFO:journalctl@ceph.mon.a.smithi055.stdout: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-04-15T17:35:39.292 INFO:journalctl@ceph.mon.a.smithi055.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-15T17:35:39.292 INFO:journalctl@ceph.mon.a.smithi055.stdout: L0 2/0 85.75 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 142.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-15T17:35:39.292 INFO:journalctl@ceph.mon.a.smithi055.stdout: Sum 2/0 85.75 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 142.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-15T17:35:39.292 INFO:journalctl@ceph.mon.a.smithi055.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.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-15T17:35:39.292 INFO:journalctl@ceph.mon.a.smithi055.stdout: 2024-04-15T17:35:39.292 INFO:journalctl@ceph.mon.a.smithi055.stdout: ** Compaction Stats [default] ** 2024-04-15T17:35:39.293 INFO:journalctl@ceph.mon.a.smithi055.stdout: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-04-15T17:35:39.293 INFO:journalctl@ceph.mon.a.smithi055.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-15T17:35:39.293 INFO:journalctl@ceph.mon.a.smithi055.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.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-15T17:35:39.293 INFO:journalctl@ceph.mon.a.smithi055.stdout: 2024-04-15T17:35:39.293 INFO:journalctl@ceph.mon.a.smithi055.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-04-15T17:35:39.293 INFO:journalctl@ceph.mon.a.smithi055.stdout: 2024-04-15T17:35:39.293 INFO:journalctl@ceph.mon.a.smithi055.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-04-15T17:35:39.293 INFO:journalctl@ceph.mon.a.smithi055.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-04-15T17:35:39.294 INFO:journalctl@ceph.mon.a.smithi055.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-04-15T17:35:39.294 INFO:journalctl@ceph.mon.a.smithi055.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-04-15T17:35:39.294 INFO:journalctl@ceph.mon.a.smithi055.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-04-15T17:35:39.296 INFO:journalctl@ceph.mon.a.smithi055.stdout: AddFile(Keys): cumulative 0, interval 0 2024-04-15T17:35:39.296 INFO:journalctl@ceph.mon.a.smithi055.stdout: Cumulative compaction: 0.00 GB write, 26.45 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-15T17:35:39.296 INFO:journalctl@ceph.mon.a.smithi055.stdout: Interval compaction: 0.00 GB write, 26.45 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-15T17:35:39.296 INFO:journalctl@ceph.mon.a.smithi055.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-04-15T17:35:39.296 INFO:journalctl@ceph.mon.a.smithi055.stdout: Block cache BinnedLRUCache@0x55821b507090#2 capacity: 512.00 MB usage: 1.20 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 9e-06 secs_since: 0 2024-04-15T17:35:39.296 INFO:journalctl@ceph.mon.a.smithi055.stdout: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.44 KB,8.34465e-05%) Misc(1,0.00 KB,0%) 2024-04-15T17:35:39.296 INFO:journalctl@ceph.mon.a.smithi055.stdout: 2024-04-15T17:35:39.296 INFO:journalctl@ceph.mon.a.smithi055.stdout: ** File Read Latency Histogram By Level [default] ** 2024-04-15T17:35:39.297 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: starting mon.a rank 0 at public addrs [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] at bind addrs [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:35:39.297 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: mon.a@-1(???) e1 preinit fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:35:39.297 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: mon.a@-1(???).mds e1 new map 2024-04-15T17:35:39.297 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: mon.a@-1(???).mds e1 print_map 2024-04-15T17:35:39.297 INFO:journalctl@ceph.mon.a.smithi055.stdout: e1 2024-04-15T17:35:39.297 INFO:journalctl@ceph.mon.a.smithi055.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-04-15T17:35:39.297 INFO:journalctl@ceph.mon.a.smithi055.stdout: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-04-15T17:35:39.297 INFO:journalctl@ceph.mon.a.smithi055.stdout: legacy client fscid: -1 2024-04-15T17:35:39.297 INFO:journalctl@ceph.mon.a.smithi055.stdout: 2024-04-15T17:35:39.297 INFO:journalctl@ceph.mon.a.smithi055.stdout: No filesystems configured 2024-04-15T17:35:39.297 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-04-15T17:35:39.297 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-15T17:35:39.297 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-15T17:35:39.297 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-15T17:35:39.298 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-04-15T17:35:39.298 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 bash[29573]: 015e37941ede7a11bed4051b07e0d117aacc7a78f7971aa13f296a6bc816418b 2024-04-15T17:35:39.298 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 systemd[1]: Started Ceph mon.a for 6c2710cc-fb4e-11ee-bc8f-c7b262605968. 2024-04-15T17:35:39.298 INFO:teuthology.orchestra.run.smithi055.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-04-15T17:35:39.583 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: mon.a is new leader, mons a in quorum (ranks 0) 2024-04-15T17:35:39.583 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: monmap epoch 1 2024-04-15T17:35:39.583 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:35:39.583 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: last_changed 2024-04-15T17:35:22.244997+0000 2024-04-15T17:35:39.584 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: created 2024-04-15T17:35:22.244997+0000 2024-04-15T17:35:39.584 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: min_mon_release 19 (squid) 2024-04-15T17:35:39.584 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: election_strategy: 1 2024-04-15T17:35:39.584 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: 0: [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] mon.a 2024-04-15T17:35:39.584 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: fsmap 2024-04-15T17:35:39.584 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: osdmap e1: 0 total, 0 up, 0 in 2024-04-15T17:35:39.584 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:39 smithi055 ceph-mon[29592]: mgrmap e1: no daemons active 2024-04-15T17:35:40.273 INFO:teuthology.orchestra.run.smithi055.stdout:Wrote config to /etc/ceph/ceph.conf 2024-04-15T17:35:40.294 INFO:teuthology.orchestra.run.smithi055.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-04-15T17:35:40.295 INFO:teuthology.orchestra.run.smithi055.stdout:Creating mgr... 2024-04-15T17:35:40.295 INFO:teuthology.orchestra.run.smithi055.stdout:Verifying port 0.0.0.0:9283 ... 2024-04-15T17:35:40.295 INFO:teuthology.orchestra.run.smithi055.stdout:Verifying port 0.0.0.0:8765 ... 2024-04-15T17:35:40.548 INFO:teuthology.orchestra.run.smithi055.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@mgr.a 2024-04-15T17:35:40.549 INFO:teuthology.orchestra.run.smithi055.stdout:systemctl: stderr Failed to reset failed state of unit ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@mgr.a.service: Unit ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@mgr.a.service not loaded. 2024-04-15T17:35:40.695 INFO:teuthology.orchestra.run.smithi055.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968.target.wants/ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@mgr.a.service → /etc/systemd/system/ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@.service. 2024-04-15T17:35:40.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:40 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/532926534' entity='client.admin' 2024-04-15T17:35:41.374 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:40 smithi055 podman[29806]: 2024-04-15 17:35:40.826695959 +0000 UTC m=+0.017338553 image pull 259793512b732efd8e04a33aa28c6de3675c47d120bc226206521425d246003e quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 2024-04-15T17:35:42.232 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:41 smithi055 podman[29806]: 2024-04-15 17:35:41.975081814 +0000 UTC m=+1.165724441 container create c58e641022e86461f71e44cf94f4ffd8eabf5e911eaba11e641b32097b6183e8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a, org.label-schema.license=GPLv2, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, RELEASE=main-c2d8c31, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.build-date=20240409, io.buildah.version=1.33.5, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 8 Base Image) 2024-04-15T17:35:42.233 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:42 smithi055 podman[29806]: 2024-04-15 17:35:42.229568135 +0000 UTC m=+1.420210717 container init c58e641022e86461f71e44cf94f4ffd8eabf5e911eaba11e641b32097b6183e8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a, GIT_BRANCH=HEAD, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.build-date=20240409, io.buildah.version=1.33.5, ceph=True, RELEASE=main-c2d8c31, org.label-schema.schema-version=1.0) 2024-04-15T17:35:42.357 INFO:teuthology.orchestra.run.smithi055.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-04-15T17:35:42.357 INFO:teuthology.orchestra.run.smithi055.stdout:systemctl: stdout disabled 2024-04-15T17:35:42.366 INFO:teuthology.orchestra.run.smithi055.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-04-15T17:35:42.366 INFO:teuthology.orchestra.run.smithi055.stdout:systemctl: stdout inactive 2024-04-15T17:35:42.366 INFO:teuthology.orchestra.run.smithi055.stdout:firewalld.service is not enabled 2024-04-15T17:35:42.366 INFO:teuthology.orchestra.run.smithi055.stdout:Not possible to enable service . firewalld.service is not available 2024-04-15T17:35:42.376 INFO:teuthology.orchestra.run.smithi055.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-04-15T17:35:42.377 INFO:teuthology.orchestra.run.smithi055.stdout:systemctl: stdout disabled 2024-04-15T17:35:42.386 INFO:teuthology.orchestra.run.smithi055.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-04-15T17:35:42.386 INFO:teuthology.orchestra.run.smithi055.stdout:systemctl: stdout inactive 2024-04-15T17:35:42.386 INFO:teuthology.orchestra.run.smithi055.stdout:firewalld.service is not enabled 2024-04-15T17:35:42.386 INFO:teuthology.orchestra.run.smithi055.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2024-04-15T17:35:42.386 INFO:teuthology.orchestra.run.smithi055.stdout:Waiting for mgr to start... 2024-04-15T17:35:42.386 INFO:teuthology.orchestra.run.smithi055.stdout:Waiting for mgr... 2024-04-15T17:35:42.513 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:42 smithi055 podman[29806]: 2024-04-15 17:35:42.232664991 +0000 UTC m=+1.423307573 container start c58e641022e86461f71e44cf94f4ffd8eabf5e911eaba11e641b32097b6183e8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 8 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240409, org.label-schema.license=GPLv2, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, io.buildah.version=1.33.5, ceph=True, GIT_BRANCH=HEAD, RELEASE=main-c2d8c31, GIT_CLEAN=True) 2024-04-15T17:35:42.513 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:42 smithi055 bash[29806]: c58e641022e86461f71e44cf94f4ffd8eabf5e911eaba11e641b32097b6183e8 2024-04-15T17:35:42.513 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:42 smithi055 systemd[1]: Started Ceph mgr.a for 6c2710cc-fb4e-11ee-bc8f-c7b262605968. 2024-04-15T17:35:43.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:42 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/3379564924' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-15T17:35:43.124 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:42 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:42.815+0000 7f0ce50f0200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-04-15T17:35:43.124 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:42 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:42.915+0000 7f0ce50f0200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-04-15T17:35:43.494 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout 2024-04-15T17:35:43.494 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout { 2024-04-15T17:35:43.494 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "fsid": "6c2710cc-fb4e-11ee-bc8f-c7b262605968", 2024-04-15T17:35:43.494 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "health": { 2024-04-15T17:35:43.494 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-15T17:35:43.494 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-15T17:35:43.494 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-15T17:35:43.495 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:43.495 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-15T17:35:43.495 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-15T17:35:43.495 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout 0 2024-04-15T17:35:43.495 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout ], 2024-04-15T17:35:43.495 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-15T17:35:43.495 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "a" 2024-04-15T17:35:43.495 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout ], 2024-04-15T17:35:43.495 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "quorum_age": 3, 2024-04-15T17:35:43.495 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-15T17:35:43.495 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T17:35:43.495 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-15T17:35:43.495 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-15T17:35:43.496 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:43.496 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-15T17:35:43.496 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T17:35:43.496 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-15T17:35:43.496 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-15T17:35:43.496 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-15T17:35:43.496 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-15T17:35:43.496 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-15T17:35:43.496 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-15T17:35:43.496 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:43.496 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-15T17:35:43.496 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-15T17:35:43.496 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-15T17:35:43.497 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-15T17:35:43.497 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-15T17:35:43.497 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-15T17:35:43.497 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-15T17:35:43.497 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-15T17:35:43.497 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-15T17:35:43.497 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:43.497 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-15T17:35:43.497 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T17:35:43.497 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-15T17:35:43.497 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-15T17:35:43.497 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:43.497 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-15T17:35:43.497 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-15T17:35:43.498 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-15T17:35:43.498 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-15T17:35:43.498 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-15T17:35:43.498 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-15T17:35:43.498 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "restful" 2024-04-15T17:35:43.498 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout ], 2024-04-15T17:35:43.498 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-15T17:35:43.498 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:43.498 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-15T17:35:43.498 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T17:35:43.499 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "modified": "2024-04-15T17:35:28.743803+0000", 2024-04-15T17:35:43.499 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-15T17:35:43.499 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:43.499 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-15T17:35:43.499 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout } 2024-04-15T17:35:43.499 INFO:teuthology.orchestra.run.smithi055.stdout:mgr not available, waiting (1/15)... 2024-04-15T17:35:43.874 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:43 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:43.608+0000 7f0ce50f0200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-04-15T17:35:43.874 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:43 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:43.703+0000 7f0ce50f0200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-04-15T17:35:43.874 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:43 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:43.846+0000 7f0ce50f0200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-04-15T17:35:44.300 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:43 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:43.943+0000 7f0ce50f0200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-04-15T17:35:44.300 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:44 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:44.028+0000 7f0ce50f0200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-04-15T17:35:44.300 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:44 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:44.297+0000 7f0ce50f0200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-04-15T17:35:44.596 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:44 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:44.409+0000 7f0ce50f0200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-04-15T17:35:44.596 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:44 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:44.496+0000 7f0ce50f0200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-04-15T17:35:44.596 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:44 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:44.592+0000 7f0ce50f0200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-04-15T17:35:44.874 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:44 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:44.771+0000 7f0ce50f0200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-04-15T17:35:45.874 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:45 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:45.781+0000 7f0ce50f0200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-04-15T17:35:46.274 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:46 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/3257479748' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-15T17:35:46.274 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:45 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:45.919+0000 7f0ce50f0200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-04-15T17:35:46.275 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:46 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:46.271+0000 7f0ce50f0200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-04-15T17:35:46.568 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:46 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:46.363+0000 7f0ce50f0200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-04-15T17:35:46.568 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:46 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:46.565+0000 7f0ce50f0200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-04-15T17:35:46.590 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout 2024-04-15T17:35:46.590 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout { 2024-04-15T17:35:46.590 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "fsid": "6c2710cc-fb4e-11ee-bc8f-c7b262605968", 2024-04-15T17:35:46.590 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "health": { 2024-04-15T17:35:46.590 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-15T17:35:46.590 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-15T17:35:46.590 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-15T17:35:46.590 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:46.590 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-15T17:35:46.590 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-15T17:35:46.591 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout 0 2024-04-15T17:35:46.591 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout ], 2024-04-15T17:35:46.591 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-15T17:35:46.591 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "a" 2024-04-15T17:35:46.591 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout ], 2024-04-15T17:35:46.591 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "quorum_age": 6, 2024-04-15T17:35:46.591 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-15T17:35:46.591 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T17:35:46.591 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-15T17:35:46.591 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-15T17:35:46.591 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:46.591 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-15T17:35:46.591 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T17:35:46.591 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-15T17:35:46.591 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-15T17:35:46.592 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-15T17:35:46.592 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-15T17:35:46.592 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-15T17:35:46.592 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-15T17:35:46.595 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:46.595 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-15T17:35:46.595 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-15T17:35:46.595 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-15T17:35:46.595 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-15T17:35:46.595 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-15T17:35:46.596 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-15T17:35:46.596 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-15T17:35:46.596 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-15T17:35:46.596 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-15T17:35:46.596 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:46.596 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-15T17:35:46.596 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T17:35:46.596 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-15T17:35:46.596 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-15T17:35:46.596 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:46.596 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-15T17:35:46.596 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-15T17:35:46.596 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-15T17:35:46.596 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-15T17:35:46.596 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-15T17:35:46.597 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-15T17:35:46.597 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "restful" 2024-04-15T17:35:46.597 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout ], 2024-04-15T17:35:46.597 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-15T17:35:46.597 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:46.597 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-15T17:35:46.597 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T17:35:46.597 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "modified": "2024-04-15T17:35:28.743803+0000", 2024-04-15T17:35:46.597 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-15T17:35:46.597 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:46.597 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-15T17:35:46.597 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout } 2024-04-15T17:35:46.597 INFO:teuthology.orchestra.run.smithi055.stdout:mgr not available, waiting (2/15)... 2024-04-15T17:35:46.874 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:46 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:46.755+0000 7f0ce50f0200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-04-15T17:35:47.314 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:47 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:47.049+0000 7f0ce50f0200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-04-15T17:35:47.314 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:47 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:47.310+0000 7f0ce50f0200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-04-15T17:35:47.624 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:47 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:47.554+0000 7f0ce50f0200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-04-15T17:35:48.715 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:48 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:48.382+0000 7f0ce50f0200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-04-15T17:35:49.301 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:49 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/788821712' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-15T17:35:49.301 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:48 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:48.972+0000 7f0ce50f0200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-04-15T17:35:49.302 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:49 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:49.074+0000 7f0ce50f0200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-04-15T17:35:49.302 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:49 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:49.298+0000 7f0ce50f0200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-04-15T17:35:49.707 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout 2024-04-15T17:35:49.710 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout { 2024-04-15T17:35:49.710 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "fsid": "6c2710cc-fb4e-11ee-bc8f-c7b262605968", 2024-04-15T17:35:49.710 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "health": { 2024-04-15T17:35:49.710 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-15T17:35:49.710 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-15T17:35:49.710 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-15T17:35:49.710 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:49.710 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-15T17:35:49.710 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-15T17:35:49.710 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout 0 2024-04-15T17:35:49.711 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout ], 2024-04-15T17:35:49.711 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-15T17:35:49.711 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "a" 2024-04-15T17:35:49.711 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout ], 2024-04-15T17:35:49.711 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "quorum_age": 9, 2024-04-15T17:35:49.711 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-15T17:35:49.711 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T17:35:49.711 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-15T17:35:49.711 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-15T17:35:49.711 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:49.711 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-15T17:35:49.711 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T17:35:49.711 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-15T17:35:49.711 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-15T17:35:49.712 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-15T17:35:49.712 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-15T17:35:49.712 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-15T17:35:49.712 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-15T17:35:49.715 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:49.715 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-15T17:35:49.715 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-15T17:35:49.715 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-15T17:35:49.715 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-15T17:35:49.715 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-15T17:35:49.715 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-15T17:35:49.716 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-15T17:35:49.716 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-15T17:35:49.716 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-15T17:35:49.716 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:49.716 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-15T17:35:49.716 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T17:35:49.716 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-15T17:35:49.716 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-15T17:35:49.716 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:49.716 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-15T17:35:49.716 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-15T17:35:49.716 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-15T17:35:49.716 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-15T17:35:49.716 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-15T17:35:49.717 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-15T17:35:49.717 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "restful" 2024-04-15T17:35:49.717 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout ], 2024-04-15T17:35:49.717 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-15T17:35:49.717 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:49.717 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-15T17:35:49.717 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T17:35:49.717 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "modified": "2024-04-15T17:35:28.743803+0000", 2024-04-15T17:35:49.717 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-15T17:35:49.717 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:49.717 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-15T17:35:49.717 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout } 2024-04-15T17:35:49.717 INFO:teuthology.orchestra.run.smithi055.stdout:mgr not available, waiting (3/15)... 2024-04-15T17:35:50.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:50 smithi055 ceph-mon[29592]: Activating manager daemon a 2024-04-15T17:35:50.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:50 smithi055 ceph-mon[29592]: mgrmap e2: a(active, starting, since 0.00330624s) 2024-04-15T17:35:50.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:50 smithi055 ceph-mon[29592]: from='mgr.14100 172.21.15.55:0/3611378634' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-15T17:35:50.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:50 smithi055 ceph-mon[29592]: from='mgr.14100 172.21.15.55:0/3611378634' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-15T17:35:50.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:50 smithi055 ceph-mon[29592]: from='mgr.14100 172.21.15.55:0/3611378634' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-15T17:35:50.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:50 smithi055 ceph-mon[29592]: from='mgr.14100 172.21.15.55:0/3611378634' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T17:35:50.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:50 smithi055 ceph-mon[29592]: from='mgr.14100 172.21.15.55:0/3611378634' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-04-15T17:35:50.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:50 smithi055 ceph-mon[29592]: Manager daemon a is now available 2024-04-15T17:35:50.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:50 smithi055 ceph-mon[29592]: from='mgr.14100 172.21.15.55:0/3611378634' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-04-15T17:35:50.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:50 smithi055 ceph-mon[29592]: from='mgr.14100 172.21.15.55:0/3611378634' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-04-15T17:35:50.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:50 smithi055 ceph-mon[29592]: from='mgr.14100 172.21.15.55:0/3611378634' entity='mgr.a' 2024-04-15T17:35:50.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:50 smithi055 ceph-mon[29592]: from='mgr.14100 172.21.15.55:0/3611378634' entity='mgr.a' 2024-04-15T17:35:50.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:50 smithi055 ceph-mon[29592]: from='mgr.14100 172.21.15.55:0/3611378634' entity='mgr.a' 2024-04-15T17:35:51.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:51 smithi055 ceph-mon[29592]: mgrmap e3: a(active, since 1.00745s) 2024-04-15T17:35:52.374 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:52 smithi055 ceph-mon[29592]: mgrmap e4: a(active, since 2s) 2024-04-15T17:35:53.012 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout 2024-04-15T17:35:53.012 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout { 2024-04-15T17:35:53.012 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "fsid": "6c2710cc-fb4e-11ee-bc8f-c7b262605968", 2024-04-15T17:35:53.012 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "health": { 2024-04-15T17:35:53.013 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-15T17:35:53.013 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-15T17:35:53.013 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-15T17:35:53.013 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:53.013 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-15T17:35:53.013 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-15T17:35:53.013 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout 0 2024-04-15T17:35:53.013 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout ], 2024-04-15T17:35:53.013 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-15T17:35:53.013 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "a" 2024-04-15T17:35:53.013 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout ], 2024-04-15T17:35:53.013 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "quorum_age": 13, 2024-04-15T17:35:53.013 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-15T17:35:53.014 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T17:35:53.014 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-15T17:35:53.014 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-15T17:35:53.014 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:53.014 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-15T17:35:53.014 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T17:35:53.014 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-15T17:35:53.014 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-15T17:35:53.015 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-15T17:35:53.015 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-15T17:35:53.015 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-15T17:35:53.015 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-15T17:35:53.015 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:53.015 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-15T17:35:53.015 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-15T17:35:53.015 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-15T17:35:53.015 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-15T17:35:53.015 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-15T17:35:53.015 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-15T17:35:53.015 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-15T17:35:53.015 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-15T17:35:53.016 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-15T17:35:53.016 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:53.016 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-15T17:35:53.016 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T17:35:53.016 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-15T17:35:53.016 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-15T17:35:53.016 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:53.016 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-15T17:35:53.016 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-15T17:35:53.016 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-15T17:35:53.016 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-15T17:35:53.016 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-15T17:35:53.016 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-15T17:35:53.016 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "restful" 2024-04-15T17:35:53.017 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout ], 2024-04-15T17:35:53.017 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-15T17:35:53.017 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:53.017 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-15T17:35:53.017 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T17:35:53.017 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "modified": "2024-04-15T17:35:28.743803+0000", 2024-04-15T17:35:53.017 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-15T17:35:53.017 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout }, 2024-04-15T17:35:53.017 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-15T17:35:53.017 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout } 2024-04-15T17:35:53.017 INFO:teuthology.orchestra.run.smithi055.stdout:mgr is available 2024-04-15T17:35:53.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:53 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/387998137' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-15T17:35:54.224 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout 2024-04-15T17:35:54.224 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout [global] 2024-04-15T17:35:54.224 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout fsid = 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:35:54.224 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-04-15T17:35:54.224 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-04-15T17:35:54.225 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-04-15T17:35:54.225 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-04-15T17:35:54.225 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout 2024-04-15T17:35:54.225 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout [mgr] 2024-04-15T17:35:54.225 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-04-15T17:35:54.225 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout 2024-04-15T17:35:54.225 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout [osd] 2024-04-15T17:35:54.225 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-04-15T17:35:54.225 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-04-15T17:35:54.225 INFO:teuthology.orchestra.run.smithi055.stdout:Enabling cephadm module... 2024-04-15T17:35:54.428 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:54 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/3896435722' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-15T17:35:54.428 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:54 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/3896435722' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-04-15T17:35:55.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:55 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/3926411831' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-04-15T17:35:55.624 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:55 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: ignoring --setuser ceph since I am not root 2024-04-15T17:35:55.624 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:55 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: ignoring --setgroup ceph since I am not root 2024-04-15T17:35:56.264 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:55 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:55.898+0000 7f8b1945f200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-04-15T17:35:56.264 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:56 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:56.004+0000 7f8b1945f200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-04-15T17:35:56.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:56 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/3926411831' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-04-15T17:35:56.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:56 smithi055 ceph-mon[29592]: mgrmap e5: a(active, since 6s) 2024-04-15T17:35:56.934 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:56 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:56.691+0000 7f8b1945f200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-04-15T17:35:56.935 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:56 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:56.786+0000 7f8b1945f200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-04-15T17:35:56.935 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:56 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:56.931+0000 7f8b1945f200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-04-15T17:35:57.328 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:57 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:57.029+0000 7f8b1945f200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-04-15T17:35:57.328 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:57 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:57.116+0000 7f8b1945f200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-04-15T17:35:57.331 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout { 2024-04-15T17:35:57.331 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-04-15T17:35:57.331 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-15T17:35:57.331 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-04-15T17:35:57.331 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-04-15T17:35:57.331 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout } 2024-04-15T17:35:57.331 INFO:teuthology.orchestra.run.smithi055.stdout:Waiting for the mgr to restart... 2024-04-15T17:35:57.331 INFO:teuthology.orchestra.run.smithi055.stdout:Waiting for mgr epoch 5... 2024-04-15T17:35:57.597 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:35:57 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/1194997554' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-04-15T17:35:57.597 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:57 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:57.389+0000 7f8b1945f200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-04-15T17:35:57.597 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:57 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:57.502+0000 7f8b1945f200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-04-15T17:35:57.598 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:57 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:57.593+0000 7f8b1945f200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-04-15T17:35:57.874 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:57 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:57.693+0000 7f8b1945f200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-04-15T17:35:58.374 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:57 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:57.873+0000 7f8b1945f200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-04-15T17:35:59.124 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:58 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:58.861+0000 7f8b1945f200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-04-15T17:35:59.124 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:58 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:58.995+0000 7f8b1945f200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-04-15T17:35:59.624 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:59 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:59.336+0000 7f8b1945f200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-04-15T17:35:59.624 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:59 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:59.427+0000 7f8b1945f200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-04-15T17:36:00.122 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:59 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:59.630+0000 7f8b1945f200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-04-15T17:36:00.123 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:35:59 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:35:59.821+0000 7f8b1945f200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-04-15T17:36:00.374 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:00 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:00.119+0000 7f8b1945f200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-04-15T17:36:00.874 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:00 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:00.382+0000 7f8b1945f200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-04-15T17:36:00.874 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:00 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:00.627+0000 7f8b1945f200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-04-15T17:36:01.874 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:01 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:01.456+0000 7f8b1945f200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-04-15T17:36:02.370 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:02 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:02.040+0000 7f8b1945f200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-04-15T17:36:02.371 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:02 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:02.142+0000 7f8b1945f200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-04-15T17:36:02.371 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:02 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:02.367+0000 7f8b1945f200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-04-15T17:36:02.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:02 smithi055 ceph-mon[29592]: Active manager daemon a restarted 2024-04-15T17:36:02.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:02 smithi055 ceph-mon[29592]: Activating manager daemon a 2024-04-15T17:36:02.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:02 smithi055 ceph-mon[29592]: osdmap e2: 0 total, 0 up, 0 in 2024-04-15T17:36:02.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:02 smithi055 ceph-mon[29592]: mgrmap e6: a(active, starting, since 0.00560584s) 2024-04-15T17:36:02.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:02 smithi055 ceph-mon[29592]: from='mgr.14120 172.21.15.55:0/4084681944' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T17:36:02.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:02 smithi055 ceph-mon[29592]: from='mgr.14120 172.21.15.55:0/4084681944' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-04-15T17:36:02.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:02 smithi055 ceph-mon[29592]: from='mgr.14120 172.21.15.55:0/4084681944' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-15T17:36:02.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:02 smithi055 ceph-mon[29592]: from='mgr.14120 172.21.15.55:0/4084681944' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-15T17:36:02.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:02 smithi055 ceph-mon[29592]: from='mgr.14120 172.21.15.55:0/4084681944' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-15T17:36:02.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:02 smithi055 ceph-mon[29592]: Manager daemon a is now available 2024-04-15T17:36:02.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:02 smithi055 ceph-mon[29592]: from='mgr.14120 172.21.15.55:0/4084681944' entity='mgr.a' 2024-04-15T17:36:02.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:02 smithi055 ceph-mon[29592]: from='mgr.14120 172.21.15.55:0/4084681944' entity='mgr.a' 2024-04-15T17:36:02.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:02 smithi055 ceph-mon[29592]: from='mgr.14120 172.21.15.55:0/4084681944' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:36:02.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:02 smithi055 ceph-mon[29592]: from='mgr.14120 172.21.15.55:0/4084681944' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:36:03.685 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:03 smithi055 ceph-mon[29592]: Found migration_current of "None". Setting to last migration. 2024-04-15T17:36:03.685 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:03 smithi055 ceph-mon[29592]: from='mgr.14120 172.21.15.55:0/4084681944' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-04-15T17:36:03.685 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:03 smithi055 ceph-mon[29592]: from='mgr.14120 172.21.15.55:0/4084681944' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-04-15T17:36:03.685 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:03 smithi055 ceph-mon[29592]: from='client.14124 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-04-15T17:36:03.685 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:03 smithi055 ceph-mon[29592]: mgrmap e7: a(active, since 1.00581s) 2024-04-15T17:36:03.685 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:03 smithi055 ceph-mon[29592]: from='mgr.14120 172.21.15.55:0/4084681944' entity='mgr.a' 2024-04-15T17:36:03.685 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:03 smithi055 ceph-mon[29592]: from='mgr.14120 172.21.15.55:0/4084681944' entity='mgr.a' 2024-04-15T17:36:03.930 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout { 2024-04-15T17:36:03.931 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-04-15T17:36:03.931 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "initialized": true 2024-04-15T17:36:03.931 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout } 2024-04-15T17:36:03.931 INFO:teuthology.orchestra.run.smithi055.stdout:mgr epoch 5 is available 2024-04-15T17:36:03.931 INFO:teuthology.orchestra.run.smithi055.stdout:Setting orchestrator backend to cephadm... 2024-04-15T17:36:04.605 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:04 smithi055 ceph-mon[29592]: from='client.14124 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-04-15T17:36:04.605 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:04 smithi055 ceph-mon[29592]: [15/Apr/2024:17:36:04] ENGINE Bus STARTING 2024-04-15T17:36:04.605 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:04 smithi055 ceph-mon[29592]: [15/Apr/2024:17:36:04] ENGINE Serving on http://172.21.15.55:8765 2024-04-15T17:36:04.605 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:04 smithi055 ceph-mon[29592]: from='mgr.14120 172.21.15.55:0/4084681944' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:36:05.554 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:05 smithi055 ceph-mon[29592]: [15/Apr/2024:17:36:04] ENGINE Serving on https://172.21.15.55:7150 2024-04-15T17:36:05.555 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:05 smithi055 ceph-mon[29592]: [15/Apr/2024:17:36:04] ENGINE Bus STARTED 2024-04-15T17:36:05.555 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:05 smithi055 ceph-mon[29592]: mgrmap e8: a(active, since 2s) 2024-04-15T17:36:05.555 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:05 smithi055 ceph-mon[29592]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:36:05.555 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:05 smithi055 ceph-mon[29592]: from='mgr.14120 172.21.15.55:0/4084681944' entity='mgr.a' 2024-04-15T17:36:05.555 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:05 smithi055 ceph-mon[29592]: from='mgr.14120 172.21.15.55:0/4084681944' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:36:06.386 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout value unchanged 2024-04-15T17:36:06.386 INFO:teuthology.orchestra.run.smithi055.stdout:Generating ssh key... 2024-04-15T17:36:06.678 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:06 smithi055 ceph-mon[29592]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:36:07.723 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:07 smithi055 ceph-mon[29592]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:36:07.724 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:07 smithi055 ceph-mon[29592]: Generating ssh key... 2024-04-15T17:36:07.724 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:07 smithi055 ceph-mon[29592]: from='mgr.14120 172.21.15.55:0/4084681944' entity='mgr.a' 2024-04-15T17:36:07.724 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:07 smithi055 ceph-mon[29592]: from='mgr.14120 172.21.15.55:0/4084681944' entity='mgr.a' 2024-04-15T17:36:07.724 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:07 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: Generating public/private rsa key pair. 2024-04-15T17:36:07.725 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:07 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: Your identification has been saved in /tmp/tmpjj2sscvs/key. 2024-04-15T17:36:07.725 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:07 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: Your public key has been saved in /tmp/tmpjj2sscvs/key.pub. 2024-04-15T17:36:07.725 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:07 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: The key fingerprint is: 2024-04-15T17:36:07.725 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:07 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: SHA256:cHw16gE1uPb8S056vThN68M5C08dv7ZPodrzSYRYCxs ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:36:07.725 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:07 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: The key's randomart image is: 2024-04-15T17:36:07.725 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:07 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: +---[RSA 3072]----+ 2024-04-15T17:36:07.726 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:07 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: | .oo o | 2024-04-15T17:36:07.726 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:07 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: | ... + . | 2024-04-15T17:36:07.726 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:07 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: | . o.+E . | 2024-04-15T17:36:07.726 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:07 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: | ooo .* o | 2024-04-15T17:36:07.726 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:07 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: | .So.o o + | 2024-04-15T17:36:07.727 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:07 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: | o +.+| 2024-04-15T17:36:07.727 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:07 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: | .+*.++| 2024-04-15T17:36:07.727 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:07 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: | =**Xoo| 2024-04-15T17:36:07.727 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:07 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: | .o+=OX+| 2024-04-15T17:36:07.727 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:07 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: +----[SHA256]-----+ 2024-04-15T17:36:09.209 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDASxmfpGpV4lwr0cFVGZ5ZfSTiYsQMPT5xHj0ZCD4yk2Dz7xMIV5GX+aEZqhgBRjyfapm+T20fu8DcVfMslZ/zQrEwHl7f/il5aZkQu49ZUI1HBItDgGeOHSdv1w5KoX/U62Oz4fEAzfSnDdtlkP5mwlZb9qgXeVxE/5lpN81qmKav6V470bolAmSkybdEDc0ZJmysAukys54zpc1DuC6wwduFVtgYKdHc+io98eZ8NV9a63rNALRJJ67DaMSCtlzfJGQ0CAk8pU3VkVr5OXn4uY36QDvfqiLVSqv+rOkXF1w2pUgBTdqcZ53pBcGku2O2QHjbdfPvGSJU2MlybaIGNhHLtHnff7wbTsX5IdW6cBIylDRDa4jNGCnp0he7JQx3JPj95RYFyNOu1hrRLasVavPTSOe0h0LDqjJfP/v/edY80HCn8zZamusPujWzaGdW45Nh4Jcf4XidXj5dcaelNZrBiCQkGqOEMWroRQy/lnOL6+S1K/hw2djN+WQy98M= ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:36:09.209 INFO:teuthology.orchestra.run.smithi055.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-04-15T17:36:09.209 INFO:teuthology.orchestra.run.smithi055.stdout:Adding key to root@localhost authorized_keys... 2024-04-15T17:36:09.209 INFO:teuthology.orchestra.run.smithi055.stdout:Adding host smithi055... 2024-04-15T17:36:09.457 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:09 smithi055 ceph-mon[29592]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:36:10.479 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:10 smithi055 ceph-mon[29592]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi055", "addr": "172.21.15.55", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:36:11.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:11 smithi055 ceph-mon[29592]: Deploying cephadm binary to smithi055 2024-04-15T17:36:14.918 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout Added host 'smithi055' with addr '172.21.15.55' 2024-04-15T17:36:14.919 INFO:teuthology.orchestra.run.smithi055.stdout:Deploying unmanaged mon service... 2024-04-15T17:36:15.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:15 smithi055 ceph-mon[29592]: from='mgr.14120 172.21.15.55:0/4084681944' entity='mgr.a' 2024-04-15T17:36:15.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:15 smithi055 ceph-mon[29592]: Added host smithi055 2024-04-15T17:36:15.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:15 smithi055 ceph-mon[29592]: from='mgr.14120 172.21.15.55:0/4084681944' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:36:16.204 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-04-15T17:36:16.204 INFO:teuthology.orchestra.run.smithi055.stdout:Deploying unmanaged mgr service... 2024-04-15T17:36:16.837 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:16 smithi055 ceph-mon[29592]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:36:16.837 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:16 smithi055 ceph-mon[29592]: Saving service mon spec with placement count:5 2024-04-15T17:36:16.837 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:16 smithi055 ceph-mon[29592]: from='mgr.14120 172.21.15.55:0/4084681944' entity='mgr.a' 2024-04-15T17:36:18.087 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-04-15T17:36:18.835 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:18 smithi055 ceph-mon[29592]: from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:36:18.835 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:18 smithi055 ceph-mon[29592]: Saving service mgr spec with placement count:2 2024-04-15T17:36:18.835 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:18 smithi055 ceph-mon[29592]: from='mgr.14120 172.21.15.55:0/4084681944' entity='mgr.a' 2024-04-15T17:36:18.835 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:18 smithi055 ceph-mon[29592]: from='mgr.14120 172.21.15.55:0/4084681944' entity='mgr.a' 2024-04-15T17:36:18.835 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:18 smithi055 ceph-mon[29592]: from='mgr.14120 172.21.15.55:0/4084681944' entity='mgr.a' 2024-04-15T17:36:20.070 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:19 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/498184526' entity='client.admin' 2024-04-15T17:36:20.071 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:19 smithi055 ceph-mon[29592]: from='mgr.14120 172.21.15.55:0/4084681944' entity='mgr.a' 2024-04-15T17:36:21.280 INFO:teuthology.orchestra.run.smithi055.stdout:Enabling the dashboard module... 2024-04-15T17:36:21.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:21 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/4261836536' entity='client.admin' 2024-04-15T17:36:21.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:21 smithi055 ceph-mon[29592]: from='mgr.14120 172.21.15.55:0/4084681944' entity='mgr.a' 2024-04-15T17:36:22.885 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:22 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: ignoring --setuser ceph since I am not root 2024-04-15T17:36:22.885 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:22 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: ignoring --setgroup ceph since I am not root 2024-04-15T17:36:22.885 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:22 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/3094121935' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-04-15T17:36:23.482 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:23 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:23.243+0000 7fa82ecba200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-04-15T17:36:23.482 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:23 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:23.339+0000 7fa82ecba200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-04-15T17:36:23.785 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:23 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/3094121935' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-04-15T17:36:23.786 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:23 smithi055 ceph-mon[29592]: mgrmap e9: a(active, since 20s) 2024-04-15T17:36:24.374 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:24 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:24.045+0000 7fa82ecba200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-04-15T17:36:24.374 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:24 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:24.141+0000 7fa82ecba200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-04-15T17:36:24.374 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:24 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:24.290+0000 7fa82ecba200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-04-15T17:36:24.689 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:24 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/2403866299' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-04-15T17:36:24.689 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:24 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:24.390+0000 7fa82ecba200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-04-15T17:36:24.689 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:24 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:24.477+0000 7fa82ecba200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-04-15T17:36:24.692 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout { 2024-04-15T17:36:24.692 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-04-15T17:36:24.692 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-15T17:36:24.692 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-04-15T17:36:24.692 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-04-15T17:36:24.692 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout } 2024-04-15T17:36:24.692 INFO:teuthology.orchestra.run.smithi055.stdout:Waiting for the mgr to restart... 2024-04-15T17:36:24.692 INFO:teuthology.orchestra.run.smithi055.stdout:Waiting for mgr epoch 9... 2024-04-15T17:36:24.963 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:24 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:24.753+0000 7fa82ecba200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-04-15T17:36:24.963 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:24 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:24.868+0000 7fa82ecba200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-04-15T17:36:24.963 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:24 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:24.958+0000 7fa82ecba200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-04-15T17:36:25.246 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:25 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:25.060+0000 7fa82ecba200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-04-15T17:36:25.247 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:25 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:25.242+0000 7fa82ecba200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-04-15T17:36:26.624 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:26 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:26.237+0000 7fa82ecba200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-04-15T17:36:26.624 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:26 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:26.373+0000 7fa82ecba200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-04-15T17:36:27.016 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:26 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:26.714+0000 7fa82ecba200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-04-15T17:36:27.017 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:26 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:26.807+0000 7fa82ecba200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-04-15T17:36:27.017 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:27 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:27.012+0000 7fa82ecba200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-04-15T17:36:27.374 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:27 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:27.204+0000 7fa82ecba200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-04-15T17:36:27.768 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:27 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:27.500+0000 7fa82ecba200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-04-15T17:36:27.768 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:27 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:27.764+0000 7fa82ecba200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-04-15T17:36:28.124 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:28 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:28.011+0000 7fa82ecba200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-04-15T17:36:29.124 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:28 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:28.850+0000 7fa82ecba200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-04-15T17:36:29.768 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:29 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:29.436+0000 7fa82ecba200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-04-15T17:36:29.768 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:29 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:29.538+0000 7fa82ecba200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-04-15T17:36:29.769 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:36:29 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:36:29.764+0000 7fa82ecba200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-04-15T17:36:30.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:29 smithi055 ceph-mon[29592]: Active manager daemon a restarted 2024-04-15T17:36:30.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:29 smithi055 ceph-mon[29592]: Activating manager daemon a 2024-04-15T17:36:30.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:29 smithi055 ceph-mon[29592]: osdmap e3: 0 total, 0 up, 0 in 2024-04-15T17:36:30.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:29 smithi055 ceph-mon[29592]: mgrmap e10: a(active, starting, since 0.00536046s) 2024-04-15T17:36:30.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:29 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T17:36:30.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:29 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-04-15T17:36:30.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:29 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-15T17:36:30.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:29 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-15T17:36:30.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:29 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-15T17:36:30.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:29 smithi055 ceph-mon[29592]: Manager daemon a is now available 2024-04-15T17:36:30.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:29 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:36:31.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:30 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-04-15T17:36:31.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:30 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-04-15T17:36:31.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:30 smithi055 ceph-mon[29592]: [15/Apr/2024:17:36:30] ENGINE Bus STARTING 2024-04-15T17:36:31.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:30 smithi055 ceph-mon[29592]: [15/Apr/2024:17:36:30] ENGINE Serving on https://172.21.15.55:7150 2024-04-15T17:36:31.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:30 smithi055 ceph-mon[29592]: [15/Apr/2024:17:36:30] ENGINE Serving on http://172.21.15.55:8765 2024-04-15T17:36:31.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:30 smithi055 ceph-mon[29592]: [15/Apr/2024:17:36:30] ENGINE Bus STARTED 2024-04-15T17:36:31.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:30 smithi055 ceph-mon[29592]: mgrmap e11: a(active, since 1.00617s) 2024-04-15T17:36:31.434 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout { 2024-04-15T17:36:31.434 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-04-15T17:36:31.435 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout "initialized": true 2024-04-15T17:36:31.435 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout } 2024-04-15T17:36:31.435 INFO:teuthology.orchestra.run.smithi055.stdout:mgr epoch 9 is available 2024-04-15T17:36:31.435 INFO:teuthology.orchestra.run.smithi055.stdout:Generating a dashboard self-signed certificate... 2024-04-15T17:36:32.068 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:31 smithi055 ceph-mon[29592]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-04-15T17:36:32.068 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:31 smithi055 ceph-mon[29592]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-04-15T17:36:32.958 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-04-15T17:36:32.958 INFO:teuthology.orchestra.run.smithi055.stdout:Creating initial admin user... 2024-04-15T17:36:33.080 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:32 smithi055 ceph-mon[29592]: mgrmap e12: a(active, since 2s) 2024-04-15T17:36:33.080 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:32 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:36:33.080 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:32 smithi055 ceph-mon[29592]: from='client.14164 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:36:33.080 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:32 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:36:33.080 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:32 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:36:34.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:33 smithi055 ceph-mon[29592]: from='client.14166 -' 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-04-15T17:36:34.490 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$1J7EcOzv1m37i8wrrwkniOZr/uWT7Fk852bqBg5vr2DVp/VSnhp42", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1713202593, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-04-15T17:36:34.490 INFO:teuthology.orchestra.run.smithi055.stdout:Fetching dashboard port number... 2024-04-15T17:36:35.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:34 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:36:35.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:34 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:36:35.799 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stdout 8443 2024-04-15T17:36:35.809 INFO:teuthology.orchestra.run.smithi055.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-04-15T17:36:35.809 INFO:teuthology.orchestra.run.smithi055.stdout:systemctl: stdout disabled 2024-04-15T17:36:35.816 INFO:teuthology.orchestra.run.smithi055.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-04-15T17:36:35.817 INFO:teuthology.orchestra.run.smithi055.stdout:systemctl: stdout inactive 2024-04-15T17:36:35.817 INFO:teuthology.orchestra.run.smithi055.stdout:firewalld.service is not enabled 2024-04-15T17:36:35.817 INFO:teuthology.orchestra.run.smithi055.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-04-15T17:36:35.818 INFO:teuthology.orchestra.run.smithi055.stdout:Ceph Dashboard is now available at: 2024-04-15T17:36:35.818 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:36:35.818 INFO:teuthology.orchestra.run.smithi055.stdout: URL: https://smithi055.front.sepia.ceph.com:8443/ 2024-04-15T17:36:35.818 INFO:teuthology.orchestra.run.smithi055.stdout: User: admin 2024-04-15T17:36:35.819 INFO:teuthology.orchestra.run.smithi055.stdout: Password: fmejn4oxps 2024-04-15T17:36:35.819 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:36:35.819 INFO:teuthology.orchestra.run.smithi055.stdout:Saving cluster configuration to /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config directory 2024-04-15T17:36:35.819 INFO:teuthology.orchestra.run.smithi055.stdout:Enabling autotune for osd_memory_target 2024-04-15T17:36:36.075 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:35 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/1171854115' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-04-15T17:36:37.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:36 smithi055 ceph-mon[29592]: mgrmap e13: a(active, since 6s) 2024-04-15T17:36:38.866 INFO:teuthology.orchestra.run.smithi055.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-04-15T17:36:38.867 INFO:teuthology.orchestra.run.smithi055.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-04-15T17:36:38.867 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:36:38.867 INFO:teuthology.orchestra.run.smithi055.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-04-15T17:36:38.867 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:36:38.867 INFO:teuthology.orchestra.run.smithi055.stdout:Or, if you are only running a single cluster on this host: 2024-04-15T17:36:38.867 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:36:38.867 INFO:teuthology.orchestra.run.smithi055.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-04-15T17:36:38.867 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:36:38.867 INFO:teuthology.orchestra.run.smithi055.stdout:Please consider enabling telemetry to help improve Ceph: 2024-04-15T17:36:38.867 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:36:38.867 INFO:teuthology.orchestra.run.smithi055.stdout: ceph telemetry on 2024-04-15T17:36:38.867 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:36:38.868 INFO:teuthology.orchestra.run.smithi055.stdout:For more information see: 2024-04-15T17:36:38.868 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:36:38.868 INFO:teuthology.orchestra.run.smithi055.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-04-15T17:36:38.868 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:36:38.868 INFO:teuthology.orchestra.run.smithi055.stdout:Bootstrap complete. 2024-04-15T17:36:38.910 INFO:tasks.cephadm:Fetching config... 2024-04-15T17:36:38.910 DEBUG:teuthology.orchestra.run.smithi055:> set -ex 2024-04-15T17:36:38.911 DEBUG:teuthology.orchestra.run.smithi055:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-04-15T17:36:38.926 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-04-15T17:36:38.927 DEBUG:teuthology.orchestra.run.smithi055:> set -ex 2024-04-15T17:36:38.927 DEBUG:teuthology.orchestra.run.smithi055:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-04-15T17:36:38.981 INFO:tasks.cephadm:Fetching mon keyring... 2024-04-15T17:36:38.981 DEBUG:teuthology.orchestra.run.smithi055:> set -ex 2024-04-15T17:36:38.981 DEBUG:teuthology.orchestra.run.smithi055:> sudo dd if=/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/keyring of=/dev/stdout 2024-04-15T17:36:39.049 INFO:tasks.cephadm:Fetching pub ssh key... 2024-04-15T17:36:39.049 DEBUG:teuthology.orchestra.run.smithi055:> set -ex 2024-04-15T17:36:39.049 DEBUG:teuthology.orchestra.run.smithi055:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-04-15T17:36:39.104 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-04-15T17:36:39.105 DEBUG:teuthology.orchestra.run.smithi055:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDASxmfpGpV4lwr0cFVGZ5ZfSTiYsQMPT5xHj0ZCD4yk2Dz7xMIV5GX+aEZqhgBRjyfapm+T20fu8DcVfMslZ/zQrEwHl7f/il5aZkQu49ZUI1HBItDgGeOHSdv1w5KoX/U62Oz4fEAzfSnDdtlkP5mwlZb9qgXeVxE/5lpN81qmKav6V470bolAmSkybdEDc0ZJmysAukys54zpc1DuC6wwduFVtgYKdHc+io98eZ8NV9a63rNALRJJ67DaMSCtlzfJGQ0CAk8pU3VkVr5OXn4uY36QDvfqiLVSqv+rOkXF1w2pUgBTdqcZ53pBcGku2O2QHjbdfPvGSJU2MlybaIGNhHLtHnff7wbTsX5IdW6cBIylDRDa4jNGCnp0he7JQx3JPj95RYFyNOu1hrRLasVavPTSOe0h0LDqjJfP/v/edY80HCn8zZamusPujWzaGdW45Nh4Jcf4XidXj5dcaelNZrBiCQkGqOEMWroRQy/lnOL6+S1K/hw2djN+WQy98M= ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-04-15T17:36:39.185 INFO:teuthology.orchestra.run.smithi055.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDASxmfpGpV4lwr0cFVGZ5ZfSTiYsQMPT5xHj0ZCD4yk2Dz7xMIV5GX+aEZqhgBRjyfapm+T20fu8DcVfMslZ/zQrEwHl7f/il5aZkQu49ZUI1HBItDgGeOHSdv1w5KoX/U62Oz4fEAzfSnDdtlkP5mwlZb9qgXeVxE/5lpN81qmKav6V470bolAmSkybdEDc0ZJmysAukys54zpc1DuC6wwduFVtgYKdHc+io98eZ8NV9a63rNALRJJ67DaMSCtlzfJGQ0CAk8pU3VkVr5OXn4uY36QDvfqiLVSqv+rOkXF1w2pUgBTdqcZ53pBcGku2O2QHjbdfPvGSJU2MlybaIGNhHLtHnff7wbTsX5IdW6cBIylDRDa4jNGCnp0he7JQx3JPj95RYFyNOu1hrRLasVavPTSOe0h0LDqjJfP/v/edY80HCn8zZamusPujWzaGdW45Nh4Jcf4XidXj5dcaelNZrBiCQkGqOEMWroRQy/lnOL6+S1K/hw2djN+WQy98M= ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:36:39.203 DEBUG:teuthology.orchestra.run.smithi092:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDASxmfpGpV4lwr0cFVGZ5ZfSTiYsQMPT5xHj0ZCD4yk2Dz7xMIV5GX+aEZqhgBRjyfapm+T20fu8DcVfMslZ/zQrEwHl7f/il5aZkQu49ZUI1HBItDgGeOHSdv1w5KoX/U62Oz4fEAzfSnDdtlkP5mwlZb9qgXeVxE/5lpN81qmKav6V470bolAmSkybdEDc0ZJmysAukys54zpc1DuC6wwduFVtgYKdHc+io98eZ8NV9a63rNALRJJ67DaMSCtlzfJGQ0CAk8pU3VkVr5OXn4uY36QDvfqiLVSqv+rOkXF1w2pUgBTdqcZ53pBcGku2O2QHjbdfPvGSJU2MlybaIGNhHLtHnff7wbTsX5IdW6cBIylDRDa4jNGCnp0he7JQx3JPj95RYFyNOu1hrRLasVavPTSOe0h0LDqjJfP/v/edY80HCn8zZamusPujWzaGdW45Nh4Jcf4XidXj5dcaelNZrBiCQkGqOEMWroRQy/lnOL6+S1K/hw2djN+WQy98M= ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-04-15T17:36:39.251 INFO:teuthology.orchestra.run.smithi092.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDASxmfpGpV4lwr0cFVGZ5ZfSTiYsQMPT5xHj0ZCD4yk2Dz7xMIV5GX+aEZqhgBRjyfapm+T20fu8DcVfMslZ/zQrEwHl7f/il5aZkQu49ZUI1HBItDgGeOHSdv1w5KoX/U62Oz4fEAzfSnDdtlkP5mwlZb9qgXeVxE/5lpN81qmKav6V470bolAmSkybdEDc0ZJmysAukys54zpc1DuC6wwduFVtgYKdHc+io98eZ8NV9a63rNALRJJ67DaMSCtlzfJGQ0CAk8pU3VkVr5OXn4uY36QDvfqiLVSqv+rOkXF1w2pUgBTdqcZ53pBcGku2O2QHjbdfPvGSJU2MlybaIGNhHLtHnff7wbTsX5IdW6cBIylDRDa4jNGCnp0he7JQx3JPj95RYFyNOu1hrRLasVavPTSOe0h0LDqjJfP/v/edY80HCn8zZamusPujWzaGdW45Nh4Jcf4XidXj5dcaelNZrBiCQkGqOEMWroRQy/lnOL6+S1K/hw2djN+WQy98M= ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:36:39.266 DEBUG:teuthology.orchestra.run.smithi118:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDASxmfpGpV4lwr0cFVGZ5ZfSTiYsQMPT5xHj0ZCD4yk2Dz7xMIV5GX+aEZqhgBRjyfapm+T20fu8DcVfMslZ/zQrEwHl7f/il5aZkQu49ZUI1HBItDgGeOHSdv1w5KoX/U62Oz4fEAzfSnDdtlkP5mwlZb9qgXeVxE/5lpN81qmKav6V470bolAmSkybdEDc0ZJmysAukys54zpc1DuC6wwduFVtgYKdHc+io98eZ8NV9a63rNALRJJ67DaMSCtlzfJGQ0CAk8pU3VkVr5OXn4uY36QDvfqiLVSqv+rOkXF1w2pUgBTdqcZ53pBcGku2O2QHjbdfPvGSJU2MlybaIGNhHLtHnff7wbTsX5IdW6cBIylDRDa4jNGCnp0he7JQx3JPj95RYFyNOu1hrRLasVavPTSOe0h0LDqjJfP/v/edY80HCn8zZamusPujWzaGdW45Nh4Jcf4XidXj5dcaelNZrBiCQkGqOEMWroRQy/lnOL6+S1K/hw2djN+WQy98M= ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-04-15T17:36:39.314 INFO:teuthology.orchestra.run.smithi118.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDASxmfpGpV4lwr0cFVGZ5ZfSTiYsQMPT5xHj0ZCD4yk2Dz7xMIV5GX+aEZqhgBRjyfapm+T20fu8DcVfMslZ/zQrEwHl7f/il5aZkQu49ZUI1HBItDgGeOHSdv1w5KoX/U62Oz4fEAzfSnDdtlkP5mwlZb9qgXeVxE/5lpN81qmKav6V470bolAmSkybdEDc0ZJmysAukys54zpc1DuC6wwduFVtgYKdHc+io98eZ8NV9a63rNALRJJ67DaMSCtlzfJGQ0CAk8pU3VkVr5OXn4uY36QDvfqiLVSqv+rOkXF1w2pUgBTdqcZ53pBcGku2O2QHjbdfPvGSJU2MlybaIGNhHLtHnff7wbTsX5IdW6cBIylDRDa4jNGCnp0he7JQx3JPj95RYFyNOu1hrRLasVavPTSOe0h0LDqjJfP/v/edY80HCn8zZamusPujWzaGdW45Nh4Jcf4XidXj5dcaelNZrBiCQkGqOEMWroRQy/lnOL6+S1K/hw2djN+WQy98M= ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:36:39.330 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-04-15T17:36:39.426 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:39 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/2097387305' entity='client.admin' 2024-04-15T17:36:39.575 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:36:41.953 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:41 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:36:41.953 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:41 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:36:41.953 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:41 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi055", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:36:41.954 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:41 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:36:41.954 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:41 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:36:41.954 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:41 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:36:43.163 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-04-15T17:36:43.164 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-04-15T17:36:43.742 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:36:43.861 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:43 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/2359660875' entity='client.admin' 2024-04-15T17:36:43.861 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:43 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:36:43.862 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:43 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:36:46.181 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi092 2024-04-15T17:36:46.181 DEBUG:teuthology.orchestra.run.smithi092:> set -ex 2024-04-15T17:36:46.181 DEBUG:teuthology.orchestra.run.smithi092:> dd of=/etc/ceph/ceph.conf 2024-04-15T17:36:46.201 DEBUG:teuthology.orchestra.run.smithi092:> set -ex 2024-04-15T17:36:46.202 DEBUG:teuthology.orchestra.run.smithi092:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-15T17:36:46.260 INFO:tasks.cephadm:Adding host smithi092 to orchestrator... 2024-04-15T17:36:46.260 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph orch host add smithi092 2024-04-15T17:36:46.513 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:36:46.756 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:46 smithi055 ceph-mon[29592]: from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:36:46.756 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:46 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:36:46.756 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:46 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:36:46.756 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:46 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:36:46.756 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:46 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:36:46.756 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:46 smithi055 ceph-mon[29592]: Updating smithi055:/etc/ceph/ceph.conf 2024-04-15T17:36:46.756 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:46 smithi055 ceph-mon[29592]: Updating smithi055:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T17:36:46.756 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:46 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:36:46.756 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:46 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:36:46.756 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:46 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:36:47.741 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:47 smithi055 ceph-mon[29592]: Updating smithi055:/etc/ceph/ceph.client.admin.keyring 2024-04-15T17:36:47.741 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:47 smithi055 ceph-mon[29592]: Updating smithi055:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.client.admin.keyring 2024-04-15T17:36:49.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:48 smithi055 ceph-mon[29592]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi092", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:36:50.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:49 smithi055 ceph-mon[29592]: Deploying cephadm binary to smithi092 2024-04-15T17:36:51.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:50 smithi055 ceph-mon[29592]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:36:52.862 INFO:teuthology.orchestra.run.smithi055.stdout:Added host 'smithi092' with addr '172.21.15.92' 2024-04-15T17:36:53.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:52 smithi055 ceph-mon[29592]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:36:53.673 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph orch host ls --format=json 2024-04-15T17:36:53.923 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:36:54.045 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:53 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:36:54.045 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:53 smithi055 ceph-mon[29592]: Added host smithi092 2024-04-15T17:36:54.045 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:53 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:36:54.045 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:53 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:36:55.011 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:54 smithi055 ceph-mon[29592]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:36:55.011 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:54 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:36:55.666 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:36:55.667 INFO:teuthology.orchestra.run.smithi055.stdout:[{"addr": "172.21.15.55", "hostname": "smithi055", "labels": [], "status": ""}, {"addr": "172.21.15.92", "hostname": "smithi092", "labels": [], "status": ""}] 2024-04-15T17:36:56.254 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi118 2024-04-15T17:36:56.255 DEBUG:teuthology.orchestra.run.smithi118:> set -ex 2024-04-15T17:36:56.255 DEBUG:teuthology.orchestra.run.smithi118:> dd of=/etc/ceph/ceph.conf 2024-04-15T17:36:56.274 DEBUG:teuthology.orchestra.run.smithi118:> set -ex 2024-04-15T17:36:56.274 DEBUG:teuthology.orchestra.run.smithi118:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-15T17:36:56.333 INFO:tasks.cephadm:Adding host smithi118 to orchestrator... 2024-04-15T17:36:56.333 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph orch host add smithi118 2024-04-15T17:36:56.579 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:36:56.804 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:56 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:36:56.805 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:56 smithi055 ceph-mon[29592]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T17:36:57.773 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:57 smithi055 ceph-mon[29592]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:36:59.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:59 smithi055 ceph-mon[29592]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:36:59.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:59 smithi055 ceph-mon[29592]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi118", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:36:59.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:59 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:36:59.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:59 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:36:59.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:59 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:36:59.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:59 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:36:59.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:59 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi092", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:36:59.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:59 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:36:59.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:59 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:36:59.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:36:59 smithi055 ceph-mon[29592]: Updating smithi092:/etc/ceph/ceph.conf 2024-04-15T17:37:00.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:00 smithi055 ceph-mon[29592]: Updating smithi092:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T17:37:00.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:00 smithi055 ceph-mon[29592]: Updating smithi092:/etc/ceph/ceph.client.admin.keyring 2024-04-15T17:37:00.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:00 smithi055 ceph-mon[29592]: Deploying cephadm binary to smithi118 2024-04-15T17:37:00.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:00 smithi055 ceph-mon[29592]: Updating smithi092:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.client.admin.keyring 2024-04-15T17:37:00.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:00 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:00.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:00 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:00.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:00 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:01.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:01 smithi055 ceph-mon[29592]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:02.816 INFO:teuthology.orchestra.run.smithi055.stdout:Added host 'smithi118' with addr '172.21.15.118' 2024-04-15T17:37:03.398 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph orch host ls --format=json 2024-04-15T17:37:03.647 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:37:03.769 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:03 smithi055 ceph-mon[29592]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:03.769 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:03 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:03.770 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:03 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:37:03.770 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:03 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:04.811 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:04 smithi055 ceph-mon[29592]: Added host smithi118 2024-04-15T17:37:04.812 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:04 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:05.536 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:37:05.536 INFO:teuthology.orchestra.run.smithi055.stdout:[{"addr": "172.21.15.55", "hostname": "smithi055", "labels": [], "status": ""}, {"addr": "172.21.15.92", "hostname": "smithi092", "labels": [], "status": ""}, {"addr": "172.21.15.118", "hostname": "smithi118", "labels": [], "status": ""}] 2024-04-15T17:37:05.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:05 smithi055 ceph-mon[29592]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:05.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:05 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:06.211 INFO:tasks.cephadm:Setting crush tunables to default 2024-04-15T17:37:06.211 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph osd crush tunables default 2024-04-15T17:37:06.460 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:37:06.845 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:06 smithi055 ceph-mon[29592]: from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T17:37:07.726 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:07 smithi055 ceph-mon[29592]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:08.576 INFO:teuthology.orchestra.run.smithi055.stderr:adjusted tunables profile to default 2024-04-15T17:37:08.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:08 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/2473423102' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-04-15T17:37:08.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:08 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:08.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:08 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:08.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:08 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:08.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:08 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:08.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:08 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi118", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:37:08.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:08 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:08.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:08 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:37:09.242 INFO:tasks.cephadm:Adding mon.a on smithi055 2024-04-15T17:37:09.242 INFO:tasks.cephadm:Adding mon.b on smithi092 2024-04-15T17:37:09.242 INFO:tasks.cephadm:Adding mon.c on smithi118 2024-04-15T17:37:09.242 DEBUG:teuthology.orchestra.run.smithi118:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph orch apply mon '3;smithi055:172.21.15.55=a;smithi092:172.21.15.92=b;smithi118:172.21.15.118=c' 2024-04-15T17:37:09.480 INFO:teuthology.orchestra.run.smithi118.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T17:37:09.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:09 smithi055 ceph-mon[29592]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:09.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:09 smithi055 ceph-mon[29592]: Updating smithi118:/etc/ceph/ceph.conf 2024-04-15T17:37:09.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:09 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/2473423102' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-04-15T17:37:09.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:09 smithi055 ceph-mon[29592]: osdmap e4: 0 total, 0 up, 0 in 2024-04-15T17:37:10.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:10 smithi055 ceph-mon[29592]: Updating smithi118:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T17:37:10.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:10 smithi055 ceph-mon[29592]: Updating smithi118:/etc/ceph/ceph.client.admin.keyring 2024-04-15T17:37:10.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:10 smithi055 ceph-mon[29592]: Updating smithi118:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.client.admin.keyring 2024-04-15T17:37:10.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:10 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:10.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:10 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:10.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:10 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:11.198 INFO:teuthology.orchestra.run.smithi118.stdout:Scheduled mon update... 2024-04-15T17:37:11.817 DEBUG:teuthology.orchestra.run.smithi092:mon.b> sudo journalctl -f -n 0 -u ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@mon.b.service 2024-04-15T17:37:11.820 DEBUG:teuthology.orchestra.run.smithi118:mon.c> sudo journalctl -f -n 0 -u ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@mon.c.service 2024-04-15T17:37:11.822 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-04-15T17:37:11.822 DEBUG:teuthology.orchestra.run.smithi118:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph mon dump -f json 2024-04-15T17:37:11.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:11 smithi055 ceph-mon[29592]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:11.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:11 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:11.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:11 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:37:11.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:11 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:11.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:11 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:37:11.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:11 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:11.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:11 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T17:37:11.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:11 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:13.013 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:12 smithi055 ceph-mon[29592]: from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi055:172.21.15.55=a;smithi092:172.21.15.92=b;smithi118:172.21.15.118=c", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:37:13.014 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:12 smithi055 ceph-mon[29592]: Saving service mon spec with placement smithi055:172.21.15.55=a;smithi092:172.21.15.92=b;smithi118:172.21.15.118=c;count:3 2024-04-15T17:37:13.014 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:12 smithi055 ceph-mon[29592]: Deploying daemon mon.c on smithi118 2024-04-15T17:37:13.915 INFO:teuthology.orchestra.run.smithi118.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.c/config 2024-04-15T17:37:14.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:13 smithi055 ceph-mon[29592]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:15.961 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:37:15.961 INFO:teuthology.orchestra.run.smithi118.stdout:{"epoch":1,"fsid":"6c2710cc-fb4e-11ee-bc8f-c7b262605968","modified":"2024-04-15T17:35:22.244997Z","created":"2024-04-15T17:35:22.244997Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:3300","nonce":0},{"type":"v1","addr":"172.21.15.55:6789","nonce":0}]},"addr":"172.21.15.55:6789/0","public_addr":"172.21.15.55:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-15T17:37:15.963 INFO:teuthology.orchestra.run.smithi118.stderr:dumped monmap epoch 1 2024-04-15T17:37:15.999 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: mon.c@-1(???) e0 preinit fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:37:15.999 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: mon.c@-1(synchronizing).mds e1 new map 2024-04-15T17:37:15.999 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: mon.c@-1(synchronizing).mds e1 print_map 2024-04-15T17:37:15.999 INFO:journalctl@ceph.mon.c.smithi118.stdout: e1 2024-04-15T17:37:15.999 INFO:journalctl@ceph.mon.c.smithi118.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-04-15T17:37:15.999 INFO:journalctl@ceph.mon.c.smithi118.stdout: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-04-15T17:37:15.999 INFO:journalctl@ceph.mon.c.smithi118.stdout: legacy client fscid: -1 2024-04-15T17:37:15.999 INFO:journalctl@ceph.mon.c.smithi118.stdout: 2024-04-15T17:37:16.000 INFO:journalctl@ceph.mon.c.smithi118.stdout: No filesystems configured 2024-04-15T17:37:16.000 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: mon.c@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-04-15T17:37:16.000 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: mon.c@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-04-15T17:37:16.000 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: mon.c@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-04-15T17:37:16.000 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: mon.c@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-04-15T17:37:16.000 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: mon.c@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-04-15T17:37:16.000 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: mon.c@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-04-15T17:37:16.000 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: mon.c@-1(synchronizing).osd e4 crush map has features 3314932999778484224, adjusting msgr requires 2024-04-15T17:37:16.000 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-04-15T17:37:16.000 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-04-15T17:37:16.000 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-04-15T17:37:16.000 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:16.000 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:16.000 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:16.001 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: Added host smithi092 2024-04-15T17:37:16.001 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:37:16.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:15 smithi055 ceph-mon[29592]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:16.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:16.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:16.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:16.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:16.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T17:37:16.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:16.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:16.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi118", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:37:16.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:16.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:16.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:16.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:16.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi092", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:37:16.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:16.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:37:16.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: Updating smithi092:/etc/ceph/ceph.conf 2024-04-15T17:37:16.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: Updating smithi092:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T17:37:16.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: Updating smithi092:/etc/ceph/ceph.client.admin.keyring 2024-04-15T17:37:16.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: Deploying cephadm binary to smithi118 2024-04-15T17:37:16.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: Updating smithi092:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.client.admin.keyring 2024-04-15T17:37:16.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:16.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:16.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:16.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:16.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:16.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:16.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:37:16.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:16.353 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: Added host smithi118 2024-04-15T17:37:16.353 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:16.353 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:16.353 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:16.353 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T17:37:16.353 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:16.353 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='client.? 172.21.15.55:0/2473423102' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-04-15T17:37:16.353 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:16.353 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:16.353 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:16.353 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:16.353 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi118", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:37:16.353 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:16.353 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:37:16.354 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:16.354 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: Updating smithi118:/etc/ceph/ceph.conf 2024-04-15T17:37:16.354 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='client.? 172.21.15.55:0/2473423102' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-04-15T17:37:16.354 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: osdmap e4: 0 total, 0 up, 0 in 2024-04-15T17:37:16.354 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: Updating smithi118:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T17:37:16.354 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: Updating smithi118:/etc/ceph/ceph.client.admin.keyring 2024-04-15T17:37:16.354 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: Updating smithi118:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.client.admin.keyring 2024-04-15T17:37:16.354 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:16.354 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:16.354 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:16.354 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:16.354 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:16.355 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:37:16.355 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:16.355 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:37:16.355 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:16.355 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T17:37:16.355 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:16.355 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi055:172.21.15.55=a;smithi092:172.21.15.92=b;smithi118:172.21.15.118=c", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:37:16.355 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: Saving service mon spec with placement smithi055:172.21.15.55=a;smithi092:172.21.15.92=b;smithi118:172.21.15.118=c;count:3 2024-04-15T17:37:16.355 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: Deploying daemon mon.c on smithi118 2024-04-15T17:37:16.355 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:16.355 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:16.355 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:15 smithi118 ceph-mon[33587]: mon.c@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2024-04-15T17:37:16.355 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:16 smithi118 bash[33548]: 729fb3aa329004a857e6dfe5a158a8f7aa8d1233587f9a558796b0968787a302 2024-04-15T17:37:16.356 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:16 smithi118 systemd[1]: Started Ceph mon.c for 6c2710cc-fb4e-11ee-bc8f-c7b262605968. 2024-04-15T17:37:17.576 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-04-15T17:37:17.576 DEBUG:teuthology.orchestra.run.smithi118:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph mon dump -f json 2024-04-15T17:37:17.837 INFO:teuthology.orchestra.run.smithi118.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.c/config 2024-04-15T17:37:21.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:21.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T17:37:21.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: mon.a calling monitor election 2024-04-15T17:37:21.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T17:37:21.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T17:37:21.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:21.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T17:37:21.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: mon.c calling monitor election 2024-04-15T17:37:21.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T17:37:21.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:21.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T17:37:21.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T17:37:21.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-15T17:37:21.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: monmap epoch 2 2024-04-15T17:37:21.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:37:21.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: last_changed 2024-04-15T17:37:16.000564+0000 2024-04-15T17:37:21.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: created 2024-04-15T17:35:22.244997+0000 2024-04-15T17:37:21.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: min_mon_release 19 (squid) 2024-04-15T17:37:21.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: election_strategy: 1 2024-04-15T17:37:21.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: 0: [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] mon.a 2024-04-15T17:37:21.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: 1: [v2:172.21.15.118:3300/0,v1:172.21.15.118:6789/0] mon.c 2024-04-15T17:37:21.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: fsmap 2024-04-15T17:37:21.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: osdmap e4: 0 total, 0 up, 0 in 2024-04-15T17:37:21.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: mgrmap e13: a(active, since 51s) 2024-04-15T17:37:21.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: overall HEALTH_OK 2024-04-15T17:37:21.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:21.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:21.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:21.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T17:37:21.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:21 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:21.374 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:21.374 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T17:37:21.374 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: mon.a calling monitor election 2024-04-15T17:37:21.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T17:37:21.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T17:37:21.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:21.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T17:37:21.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: mon.c calling monitor election 2024-04-15T17:37:21.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T17:37:21.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:21.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T17:37:21.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T17:37:21.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-15T17:37:21.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: monmap epoch 2 2024-04-15T17:37:21.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:37:21.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: last_changed 2024-04-15T17:37:16.000564+0000 2024-04-15T17:37:21.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: created 2024-04-15T17:35:22.244997+0000 2024-04-15T17:37:21.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: min_mon_release 19 (squid) 2024-04-15T17:37:21.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: election_strategy: 1 2024-04-15T17:37:21.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: 0: [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] mon.a 2024-04-15T17:37:21.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: 1: [v2:172.21.15.118:3300/0,v1:172.21.15.118:6789/0] mon.c 2024-04-15T17:37:21.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: fsmap 2024-04-15T17:37:21.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: osdmap e4: 0 total, 0 up, 0 in 2024-04-15T17:37:21.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: mgrmap e13: a(active, since 51s) 2024-04-15T17:37:21.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: overall HEALTH_OK 2024-04-15T17:37:21.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:21.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:21.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:21.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T17:37:21.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:21 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:22.349 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:22 smithi118 ceph-mon[33587]: Deploying daemon mon.b on smithi092 2024-04-15T17:37:22.349 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:22 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T17:37:22.374 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:22 smithi055 ceph-mon[29592]: Deploying daemon mon.b on smithi092 2024-04-15T17:37:22.374 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:22 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T17:37:22.491 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:37:22.491 INFO:teuthology.orchestra.run.smithi118.stdout:{"epoch":2,"fsid":"6c2710cc-fb4e-11ee-bc8f-c7b262605968","modified":"2024-04-15T17:37:16.000564Z","created":"2024-04-15T17:35:22.244997Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:3300","nonce":0},{"type":"v1","addr":"172.21.15.55:6789","nonce":0}]},"addr":"172.21.15.55:6789/0","public_addr":"172.21.15.55:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.118:3300","nonce":0},{"type":"v1","addr":"172.21.15.118:6789","nonce":0}]},"addr":"172.21.15.118:6789/0","public_addr":"172.21.15.118:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-04-15T17:37:22.494 INFO:teuthology.orchestra.run.smithi118.stderr:dumped monmap epoch 2 2024-04-15T17:37:23.349 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:23 smithi118 ceph-mon[33587]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:23.349 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:23 smithi118 ceph-mon[33587]: from='client.? 172.21.15.118:0/961883862' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-15T17:37:23.374 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:23 smithi055 ceph-mon[29592]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:23.374 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:23 smithi055 ceph-mon[29592]: from='client.? 172.21.15.118:0/961883862' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-15T17:37:24.079 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-04-15T17:37:24.079 DEBUG:teuthology.orchestra.run.smithi118:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph mon dump -f json 2024-04-15T17:37:24.337 INFO:teuthology.orchestra.run.smithi118.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.c/config 2024-04-15T17:37:25.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:25 smithi092 systemd[1]: Started Ceph mon.b for 6c2710cc-fb4e-11ee-bc8f-c7b262605968. 2024-04-15T17:37:25.349 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:25 smithi118 ceph-mon[33587]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:25.374 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:25 smithi055 ceph-mon[29592]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:30.455 INFO:teuthology.orchestra.run.smithi118.stdout: 2024-04-15T17:37:30.455 INFO:teuthology.orchestra.run.smithi118.stdout:{"epoch":3,"fsid":"6c2710cc-fb4e-11ee-bc8f-c7b262605968","modified":"2024-04-15T17:37:25.092449Z","created":"2024-04-15T17:35:22.244997Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:3300","nonce":0},{"type":"v1","addr":"172.21.15.55:6789","nonce":0}]},"addr":"172.21.15.55:6789/0","public_addr":"172.21.15.55:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.118:3300","nonce":0},{"type":"v1","addr":"172.21.15.118:6789","nonce":0}]},"addr":"172.21.15.118:6789/0","public_addr":"172.21.15.118:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.92:3300","nonce":0},{"type":"v1","addr":"172.21.15.92:6789","nonce":0}]},"addr":"172.21.15.92:6789/0","public_addr":"172.21.15.92:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-04-15T17:37:30.456 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T17:37:30.456 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: mon.c calling monitor election 2024-04-15T17:37:30.456 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: mon.a calling monitor election 2024-04-15T17:37:30.456 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:37:30.456 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T17:37:30.456 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:30.456 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:37:30.456 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:37:30.457 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:30.457 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:37:30.457 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:37:30.457 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:37:30.457 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-15T17:37:30.457 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: monmap epoch 3 2024-04-15T17:37:30.457 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:37:30.457 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: last_changed 2024-04-15T17:37:25.092449+0000 2024-04-15T17:37:30.457 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: created 2024-04-15T17:35:22.244997+0000 2024-04-15T17:37:30.457 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: min_mon_release 19 (squid) 2024-04-15T17:37:30.457 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: election_strategy: 1 2024-04-15T17:37:30.457 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: 0: [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] mon.a 2024-04-15T17:37:30.457 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: 1: [v2:172.21.15.118:3300/0,v1:172.21.15.118:6789/0] mon.c 2024-04-15T17:37:30.457 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: 2: [v2:172.21.15.92:3300/0,v1:172.21.15.92:6789/0] mon.b 2024-04-15T17:37:30.458 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: fsmap 2024-04-15T17:37:30.458 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: osdmap e4: 0 total, 0 up, 0 in 2024-04-15T17:37:30.458 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: mgrmap e13: a(active, since 60s) 2024-04-15T17:37:30.458 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-04-15T17:37:30.458 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-04-15T17:37:30.458 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-04-15T17:37:30.458 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: mon.b (rank 2) addr [v2:172.21.15.92:3300/0,v1:172.21.15.92:6789/0] is down (out of quorum) 2024-04-15T17:37:30.458 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:30.458 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:30 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:30.458 INFO:teuthology.orchestra.run.smithi118.stderr:dumped monmap epoch 3 2024-04-15T17:37:30.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T17:37:30.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: mon.c calling monitor election 2024-04-15T17:37:30.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: mon.a calling monitor election 2024-04-15T17:37:30.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:37:30.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T17:37:30.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:30.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:37:30.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:37:30.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:30.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:37:30.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:37:30.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:37:30.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-15T17:37:30.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: monmap epoch 3 2024-04-15T17:37:30.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:37:30.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: last_changed 2024-04-15T17:37:25.092449+0000 2024-04-15T17:37:30.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: created 2024-04-15T17:35:22.244997+0000 2024-04-15T17:37:30.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: min_mon_release 19 (squid) 2024-04-15T17:37:30.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: election_strategy: 1 2024-04-15T17:37:30.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: 0: [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] mon.a 2024-04-15T17:37:30.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: 1: [v2:172.21.15.118:3300/0,v1:172.21.15.118:6789/0] mon.c 2024-04-15T17:37:30.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: 2: [v2:172.21.15.92:3300/0,v1:172.21.15.92:6789/0] mon.b 2024-04-15T17:37:30.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: fsmap 2024-04-15T17:37:30.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: osdmap e4: 0 total, 0 up, 0 in 2024-04-15T17:37:30.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: mgrmap e13: a(active, since 60s) 2024-04-15T17:37:30.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-04-15T17:37:30.627 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-04-15T17:37:30.627 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-04-15T17:37:30.627 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: mon.b (rank 2) addr [v2:172.21.15.92:3300/0,v1:172.21.15.92:6789/0] is down (out of quorum) 2024-04-15T17:37:30.627 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:30.627 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:30 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:31.091 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-04-15T17:37:31.091 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph config generate-minimal-conf 2024-04-15T17:37:31.349 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:31 smithi118 ceph-mon[33587]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:31.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:31 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:31.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:31 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:31.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:31 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:37:31.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:31 smithi118 ceph-mon[33587]: from='client.? 172.21.15.118:0/1323673508' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-15T17:37:31.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:31 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:37:31.350 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:37:31.374 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:31 smithi055 ceph-mon[29592]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:31.374 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:31 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:31.374 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:31 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:31.374 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:31 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:37:31.374 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:31 smithi055 ceph-mon[29592]: from='client.? 172.21.15.118:0/1323673508' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-15T17:37:31.374 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:31 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:37:32.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:32.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T17:37:32.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: mon.c calling monitor election 2024-04-15T17:37:32.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: mon.a calling monitor election 2024-04-15T17:37:32.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:37:32.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T17:37:32.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:32.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:37:32.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:37:32.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:32.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:37:32.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:37:32.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:37:32.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-15T17:37:32.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: monmap epoch 3 2024-04-15T17:37:32.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:37:32.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: last_changed 2024-04-15T17:37:25.092449+0000 2024-04-15T17:37:32.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: created 2024-04-15T17:35:22.244997+0000 2024-04-15T17:37:32.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: min_mon_release 19 (squid) 2024-04-15T17:37:32.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: election_strategy: 1 2024-04-15T17:37:32.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: 0: [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] mon.a 2024-04-15T17:37:32.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: 1: [v2:172.21.15.118:3300/0,v1:172.21.15.118:6789/0] mon.c 2024-04-15T17:37:32.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: 2: [v2:172.21.15.92:3300/0,v1:172.21.15.92:6789/0] mon.b 2024-04-15T17:37:32.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: fsmap 2024-04-15T17:37:32.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: osdmap e4: 0 total, 0 up, 0 in 2024-04-15T17:37:32.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: mgrmap e13: a(active, since 60s) 2024-04-15T17:37:32.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-04-15T17:37:32.386 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-04-15T17:37:32.386 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-04-15T17:37:32.386 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: mon.b (rank 2) addr [v2:172.21.15.92:3300/0,v1:172.21.15.92:6789/0] is down (out of quorum) 2024-04-15T17:37:32.386 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:32.386 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:32.386 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:32.386 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:32.386 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:32.386 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:37:32.386 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='client.? 172.21.15.118:0/1323673508' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-15T17:37:32.386 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:37:33.331 INFO:teuthology.orchestra.run.smithi055.stdout:# minimal ceph.conf for 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:37:33.331 INFO:teuthology.orchestra.run.smithi055.stdout:[global] 2024-04-15T17:37:33.331 INFO:teuthology.orchestra.run.smithi055.stdout: fsid = 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:37:33.331 INFO:teuthology.orchestra.run.smithi055.stdout: mon_host = [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] [v2:172.21.15.92:3300/0,v1:172.21.15.92:6789/0] [v2:172.21.15.118:3300/0,v1:172.21.15.118:6789/0] 2024-04-15T17:37:33.331 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: mon.b calling monitor election 2024-04-15T17:37:33.331 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:33.332 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: Updating smithi055:/etc/ceph/ceph.conf 2024-04-15T17:37:33.332 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: Updating smithi092:/etc/ceph/ceph.conf 2024-04-15T17:37:33.332 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: Updating smithi118:/etc/ceph/ceph.conf 2024-04-15T17:37:33.332 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: mon.b calling monitor election 2024-04-15T17:37:33.332 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: mon.c calling monitor election 2024-04-15T17:37:33.332 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: mon.a calling monitor election 2024-04-15T17:37:33.332 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-04-15T17:37:33.332 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: monmap epoch 3 2024-04-15T17:37:33.332 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:37:33.332 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: last_changed 2024-04-15T17:37:25.092449+0000 2024-04-15T17:37:33.332 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: created 2024-04-15T17:35:22.244997+0000 2024-04-15T17:37:33.332 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: min_mon_release 19 (squid) 2024-04-15T17:37:33.332 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: election_strategy: 1 2024-04-15T17:37:33.332 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: 0: [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] mon.a 2024-04-15T17:37:33.333 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: 1: [v2:172.21.15.118:3300/0,v1:172.21.15.118:6789/0] mon.c 2024-04-15T17:37:33.333 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: 2: [v2:172.21.15.92:3300/0,v1:172.21.15.92:6789/0] mon.b 2024-04-15T17:37:33.333 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: fsmap 2024-04-15T17:37:33.333 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: osdmap e4: 0 total, 0 up, 0 in 2024-04-15T17:37:33.333 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: mgrmap e13: a(active, since 62s) 2024-04-15T17:37:33.333 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-04-15T17:37:33.333 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: Cluster is now healthy 2024-04-15T17:37:33.333 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: overall HEALTH_OK 2024-04-15T17:37:33.333 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: Updating smithi118:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T17:37:33.333 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: Updating smithi055:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T17:37:33.333 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: Updating smithi092:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T17:37:33.333 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.333 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.333 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.334 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.334 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.334 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.334 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.334 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.334 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.334 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.334 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.334 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T17:37:33.334 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T17:37:33.334 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:32 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:33.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: mon.b calling monitor election 2024-04-15T17:37:33.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:33.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: Updating smithi055:/etc/ceph/ceph.conf 2024-04-15T17:37:33.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: Updating smithi092:/etc/ceph/ceph.conf 2024-04-15T17:37:33.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: Updating smithi118:/etc/ceph/ceph.conf 2024-04-15T17:37:33.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: mon.b calling monitor election 2024-04-15T17:37:33.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: mon.c calling monitor election 2024-04-15T17:37:33.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: mon.a calling monitor election 2024-04-15T17:37:33.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-04-15T17:37:33.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: monmap epoch 3 2024-04-15T17:37:33.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:37:33.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: last_changed 2024-04-15T17:37:25.092449+0000 2024-04-15T17:37:33.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: created 2024-04-15T17:35:22.244997+0000 2024-04-15T17:37:33.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: min_mon_release 19 (squid) 2024-04-15T17:37:33.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: election_strategy: 1 2024-04-15T17:37:33.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: 0: [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] mon.a 2024-04-15T17:37:33.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: 1: [v2:172.21.15.118:3300/0,v1:172.21.15.118:6789/0] mon.c 2024-04-15T17:37:33.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: 2: [v2:172.21.15.92:3300/0,v1:172.21.15.92:6789/0] mon.b 2024-04-15T17:37:33.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: fsmap 2024-04-15T17:37:33.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: osdmap e4: 0 total, 0 up, 0 in 2024-04-15T17:37:33.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: mgrmap e13: a(active, since 62s) 2024-04-15T17:37:33.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-04-15T17:37:33.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: Cluster is now healthy 2024-04-15T17:37:33.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: overall HEALTH_OK 2024-04-15T17:37:33.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: Updating smithi118:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T17:37:33.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: Updating smithi055:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T17:37:33.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: Updating smithi092:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T17:37:33.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.352 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.353 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.353 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.353 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.353 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T17:37:33.353 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T17:37:33.353 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:32 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:33.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: mon.b calling monitor election 2024-04-15T17:37:33.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:33.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: Updating smithi055:/etc/ceph/ceph.conf 2024-04-15T17:37:33.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: Updating smithi092:/etc/ceph/ceph.conf 2024-04-15T17:37:33.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: Updating smithi118:/etc/ceph/ceph.conf 2024-04-15T17:37:33.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: mon.b calling monitor election 2024-04-15T17:37:33.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: mon.c calling monitor election 2024-04-15T17:37:33.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: mon.a calling monitor election 2024-04-15T17:37:33.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-04-15T17:37:33.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: monmap epoch 3 2024-04-15T17:37:33.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:37:33.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: last_changed 2024-04-15T17:37:25.092449+0000 2024-04-15T17:37:33.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: created 2024-04-15T17:35:22.244997+0000 2024-04-15T17:37:33.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: min_mon_release 19 (squid) 2024-04-15T17:37:33.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: election_strategy: 1 2024-04-15T17:37:33.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: 0: [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] mon.a 2024-04-15T17:37:33.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: 1: [v2:172.21.15.118:3300/0,v1:172.21.15.118:6789/0] mon.c 2024-04-15T17:37:33.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: 2: [v2:172.21.15.92:3300/0,v1:172.21.15.92:6789/0] mon.b 2024-04-15T17:37:33.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: fsmap 2024-04-15T17:37:33.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: osdmap e4: 0 total, 0 up, 0 in 2024-04-15T17:37:33.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: mgrmap e13: a(active, since 62s) 2024-04-15T17:37:33.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-04-15T17:37:33.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: Cluster is now healthy 2024-04-15T17:37:33.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: overall HEALTH_OK 2024-04-15T17:37:33.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: Updating smithi118:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T17:37:33.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: Updating smithi055:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T17:37:33.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: Updating smithi092:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T17:37:33.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.385 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.386 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.386 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.386 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.386 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:33.386 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T17:37:33.386 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T17:37:33.386 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:34.093 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:33 smithi055 ceph-mon[29592]: Reconfiguring mon.a (unknown last config time)... 2024-04-15T17:37:34.093 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:33 smithi055 ceph-mon[29592]: Reconfiguring daemon mon.a on smithi055 2024-04-15T17:37:34.093 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:33 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:37:34.093 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:33 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/1179974454' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:34.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:33 smithi118 ceph-mon[33587]: Reconfiguring mon.a (unknown last config time)... 2024-04-15T17:37:34.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:33 smithi118 ceph-mon[33587]: Reconfiguring daemon mon.a on smithi055 2024-04-15T17:37:34.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:33 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:37:34.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:33 smithi118 ceph-mon[33587]: from='client.? 172.21.15.55:0/1179974454' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:34.374 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:37:34 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:37:34.088+0000 7fa7e4e5b700 -1 mgr.server handle_report got status from non-daemon mon.b 2024-04-15T17:37:34.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:33 smithi092 ceph-mon[33096]: Reconfiguring mon.a (unknown last config time)... 2024-04-15T17:37:34.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:33 smithi092 ceph-mon[33096]: Reconfiguring daemon mon.a on smithi055 2024-04-15T17:37:34.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:33 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:37:34.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:33 smithi092 ceph-mon[33096]: from='client.? 172.21.15.55:0/1179974454' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:34.533 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-04-15T17:37:34.533 DEBUG:teuthology.orchestra.run.smithi055:> set -ex 2024-04-15T17:37:34.533 DEBUG:teuthology.orchestra.run.smithi055:> sudo dd of=/etc/ceph/ceph.conf 2024-04-15T17:37:34.568 DEBUG:teuthology.orchestra.run.smithi055:> set -ex 2024-04-15T17:37:34.568 DEBUG:teuthology.orchestra.run.smithi055:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-15T17:37:34.637 DEBUG:teuthology.orchestra.run.smithi092:> set -ex 2024-04-15T17:37:34.638 DEBUG:teuthology.orchestra.run.smithi092:> sudo dd of=/etc/ceph/ceph.conf 2024-04-15T17:37:34.675 DEBUG:teuthology.orchestra.run.smithi092:> set -ex 2024-04-15T17:37:34.676 DEBUG:teuthology.orchestra.run.smithi092:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-15T17:37:34.747 DEBUG:teuthology.orchestra.run.smithi118:> set -ex 2024-04-15T17:37:34.747 DEBUG:teuthology.orchestra.run.smithi118:> sudo dd of=/etc/ceph/ceph.conf 2024-04-15T17:37:34.782 DEBUG:teuthology.orchestra.run.smithi118:> set -ex 2024-04-15T17:37:34.783 DEBUG:teuthology.orchestra.run.smithi118:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-15T17:37:34.855 INFO:tasks.cephadm:Adding mgr.a on smithi055 2024-04-15T17:37:34.855 INFO:tasks.cephadm:Adding mgr.b on smithi092 2024-04-15T17:37:34.855 DEBUG:teuthology.orchestra.run.smithi118:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph orch apply mgr '2;smithi055=a;smithi092=b' 2024-04-15T17:37:35.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:34 smithi118 ceph-mon[33587]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:35.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:34 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:35.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:34 smithi055 ceph-mon[29592]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:35.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:34 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:35.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:34 smithi092 ceph-mon[33096]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:35.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:34 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:35.134 INFO:teuthology.orchestra.run.smithi118.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.c/config 2024-04-15T17:37:36.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:35 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:36.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:35 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:36.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:35 smithi092 ceph-mon[33096]: Reconfiguring mon.b (monmap changed)... 2024-04-15T17:37:36.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:35 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T17:37:36.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:35 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T17:37:36.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:35 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:36.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:35 smithi092 ceph-mon[33096]: Reconfiguring daemon mon.b on smithi092 2024-04-15T17:37:36.248 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:35 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:36.248 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:35 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:36.248 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:35 smithi118 ceph-mon[33587]: Reconfiguring mon.b (monmap changed)... 2024-04-15T17:37:36.248 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:35 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T17:37:36.248 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:35 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T17:37:36.248 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:35 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:36.248 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:35 smithi118 ceph-mon[33587]: Reconfiguring daemon mon.b on smithi092 2024-04-15T17:37:36.272 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:35 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:36.272 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:35 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:36.272 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:35 smithi055 ceph-mon[29592]: Reconfiguring mon.b (monmap changed)... 2024-04-15T17:37:36.272 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:35 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T17:37:36.272 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:35 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T17:37:36.272 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:35 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:36.272 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:35 smithi055 ceph-mon[29592]: Reconfiguring daemon mon.b on smithi092 2024-04-15T17:37:36.866 INFO:teuthology.orchestra.run.smithi118.stdout:Scheduled mgr update... 2024-04-15T17:37:37.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:37 smithi118 ceph-mon[33587]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:37.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:37 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:37.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:37 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:37.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:37 smithi118 ceph-mon[33587]: Reconfiguring mon.c (monmap changed)... 2024-04-15T17:37:37.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:37 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T17:37:37.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:37 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T17:37:37.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:37 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:37.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:37 smithi118 ceph-mon[33587]: Reconfiguring daemon mon.c on smithi118 2024-04-15T17:37:37.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:37 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:37.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:37 smithi055 ceph-mon[29592]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:37.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:37 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:37.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:37 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:37.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:37 smithi055 ceph-mon[29592]: Reconfiguring mon.c (monmap changed)... 2024-04-15T17:37:37.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:37 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T17:37:37.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:37 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T17:37:37.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:37 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:37.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:37 smithi055 ceph-mon[29592]: Reconfiguring daemon mon.c on smithi118 2024-04-15T17:37:37.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:37 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:37.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:37 smithi092 ceph-mon[33096]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:37.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:37 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:37.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:37 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:37.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:37 smithi092 ceph-mon[33096]: Reconfiguring mon.c (monmap changed)... 2024-04-15T17:37:37.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:37 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T17:37:37.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:37 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T17:37:37.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:37 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:37.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:37 smithi092 ceph-mon[33096]: Reconfiguring daemon mon.c on smithi118 2024-04-15T17:37:37.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:37 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:38.122 DEBUG:teuthology.orchestra.run.smithi092:mgr.b> sudo journalctl -f -n 0 -u ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@mgr.b.service 2024-04-15T17:37:38.124 INFO:tasks.cephadm:Deploying OSDs... 2024-04-15T17:37:38.125 DEBUG:teuthology.orchestra.run.smithi055:> set -ex 2024-04-15T17:37:38.125 DEBUG:teuthology.orchestra.run.smithi055:> dd if=/scratch_devs of=/dev/stdout 2024-04-15T17:37:38.145 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-04-15T17:37:38.145 DEBUG:teuthology.orchestra.run.smithi055:> stat /dev/vg_nvme/lv_1 2024-04-15T17:37:38.203 INFO:teuthology.orchestra.run.smithi055.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-15T17:37:38.203 INFO:teuthology.orchestra.run.smithi055.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T17:37:38.203 INFO:teuthology.orchestra.run.smithi055.stdout:Device: 5h/5d Inode: 668 Links: 1 2024-04-15T17:37:38.203 INFO:teuthology.orchestra.run.smithi055.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T17:37:38.203 INFO:teuthology.orchestra.run.smithi055.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T17:37:38.204 INFO:teuthology.orchestra.run.smithi055.stdout:Access: 2024-04-15 17:36:42.112664232 +0000 2024-04-15T17:37:38.204 INFO:teuthology.orchestra.run.smithi055.stdout:Modify: 2024-04-15 17:31:13.398178855 +0000 2024-04-15T17:37:38.204 INFO:teuthology.orchestra.run.smithi055.stdout:Change: 2024-04-15 17:31:13.398178855 +0000 2024-04-15T17:37:38.204 INFO:teuthology.orchestra.run.smithi055.stdout: Birth: 2024-04-15 17:31:13.398178855 +0000 2024-04-15T17:37:38.204 DEBUG:teuthology.orchestra.run.smithi055:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-15T17:37:38.276 INFO:teuthology.orchestra.run.smithi055.stderr:1+0 records in 2024-04-15T17:37:38.276 INFO:teuthology.orchestra.run.smithi055.stderr:1+0 records out 2024-04-15T17:37:38.276 INFO:teuthology.orchestra.run.smithi055.stderr:512 bytes copied, 0.000308314 s, 1.7 MB/s 2024-04-15T17:37:38.278 DEBUG:teuthology.orchestra.run.smithi055:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-15T17:37:38.337 DEBUG:teuthology.orchestra.run.smithi055:> stat /dev/vg_nvme/lv_2 2024-04-15T17:37:38.349 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:38 smithi118 ceph-mon[33587]: from='client.14211 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi055=a;smithi092=b", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:37:38.349 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:38 smithi118 ceph-mon[33587]: Saving service mgr spec with placement smithi055=a;smithi092=b;count:2 2024-04-15T17:37:38.395 INFO:teuthology.orchestra.run.smithi055.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-15T17:37:38.395 INFO:teuthology.orchestra.run.smithi055.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T17:37:38.395 INFO:teuthology.orchestra.run.smithi055.stdout:Device: 5h/5d Inode: 684 Links: 1 2024-04-15T17:37:38.395 INFO:teuthology.orchestra.run.smithi055.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T17:37:38.395 INFO:teuthology.orchestra.run.smithi055.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T17:37:38.395 INFO:teuthology.orchestra.run.smithi055.stdout:Access: 2024-04-15 17:36:42.141663665 +0000 2024-04-15T17:37:38.395 INFO:teuthology.orchestra.run.smithi055.stdout:Modify: 2024-04-15 17:31:13.757171784 +0000 2024-04-15T17:37:38.395 INFO:teuthology.orchestra.run.smithi055.stdout:Change: 2024-04-15 17:31:13.757171784 +0000 2024-04-15T17:37:38.395 INFO:teuthology.orchestra.run.smithi055.stdout: Birth: 2024-04-15 17:31:13.757171784 +0000 2024-04-15T17:37:38.396 DEBUG:teuthology.orchestra.run.smithi055:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-15T17:37:38.465 INFO:teuthology.orchestra.run.smithi055.stderr:1+0 records in 2024-04-15T17:37:38.465 INFO:teuthology.orchestra.run.smithi055.stderr:1+0 records out 2024-04-15T17:37:38.465 INFO:teuthology.orchestra.run.smithi055.stderr:512 bytes copied, 0.000359806 s, 1.4 MB/s 2024-04-15T17:37:38.466 DEBUG:teuthology.orchestra.run.smithi055:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-15T17:37:38.525 DEBUG:teuthology.orchestra.run.smithi055:> stat /dev/vg_nvme/lv_3 2024-04-15T17:37:38.583 INFO:teuthology.orchestra.run.smithi055.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-15T17:37:38.583 INFO:teuthology.orchestra.run.smithi055.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T17:37:38.583 INFO:teuthology.orchestra.run.smithi055.stdout:Device: 5h/5d Inode: 703 Links: 1 2024-04-15T17:37:38.583 INFO:teuthology.orchestra.run.smithi055.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T17:37:38.583 INFO:teuthology.orchestra.run.smithi055.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T17:37:38.583 INFO:teuthology.orchestra.run.smithi055.stdout:Access: 2024-04-15 17:36:42.169663118 +0000 2024-04-15T17:37:38.583 INFO:teuthology.orchestra.run.smithi055.stdout:Modify: 2024-04-15 17:31:14.124164555 +0000 2024-04-15T17:37:38.583 INFO:teuthology.orchestra.run.smithi055.stdout:Change: 2024-04-15 17:31:14.124164555 +0000 2024-04-15T17:37:38.584 INFO:teuthology.orchestra.run.smithi055.stdout: Birth: 2024-04-15 17:31:14.124164555 +0000 2024-04-15T17:37:38.584 DEBUG:teuthology.orchestra.run.smithi055:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-15T17:37:38.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:38 smithi055 ceph-mon[29592]: from='client.14211 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi055=a;smithi092=b", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:37:38.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:38 smithi055 ceph-mon[29592]: Saving service mgr spec with placement smithi055=a;smithi092=b;count:2 2024-04-15T17:37:38.632 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:38 smithi092 ceph-mon[33096]: from='client.14211 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi055=a;smithi092=b", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:37:38.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:38 smithi092 ceph-mon[33096]: Saving service mgr spec with placement smithi055=a;smithi092=b;count:2 2024-04-15T17:37:38.652 INFO:teuthology.orchestra.run.smithi055.stderr:1+0 records in 2024-04-15T17:37:38.652 INFO:teuthology.orchestra.run.smithi055.stderr:1+0 records out 2024-04-15T17:37:38.652 INFO:teuthology.orchestra.run.smithi055.stderr:512 bytes copied, 0.000267094 s, 1.9 MB/s 2024-04-15T17:37:38.653 DEBUG:teuthology.orchestra.run.smithi055:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-15T17:37:38.709 DEBUG:teuthology.orchestra.run.smithi055:> stat /dev/vg_nvme/lv_4 2024-04-15T17:37:38.765 INFO:teuthology.orchestra.run.smithi055.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-15T17:37:38.765 INFO:teuthology.orchestra.run.smithi055.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T17:37:38.765 INFO:teuthology.orchestra.run.smithi055.stdout:Device: 5h/5d Inode: 722 Links: 1 2024-04-15T17:37:38.765 INFO:teuthology.orchestra.run.smithi055.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T17:37:38.765 INFO:teuthology.orchestra.run.smithi055.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T17:37:38.765 INFO:teuthology.orchestra.run.smithi055.stdout:Access: 2024-04-15 17:36:42.198662551 +0000 2024-04-15T17:37:38.765 INFO:teuthology.orchestra.run.smithi055.stdout:Modify: 2024-04-15 17:31:14.468157780 +0000 2024-04-15T17:37:38.766 INFO:teuthology.orchestra.run.smithi055.stdout:Change: 2024-04-15 17:31:14.468157780 +0000 2024-04-15T17:37:38.766 INFO:teuthology.orchestra.run.smithi055.stdout: Birth: 2024-04-15 17:31:14.468157780 +0000 2024-04-15T17:37:38.766 DEBUG:teuthology.orchestra.run.smithi055:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-15T17:37:38.832 INFO:teuthology.orchestra.run.smithi055.stderr:1+0 records in 2024-04-15T17:37:38.832 INFO:teuthology.orchestra.run.smithi055.stderr:1+0 records out 2024-04-15T17:37:38.832 INFO:teuthology.orchestra.run.smithi055.stderr:512 bytes copied, 0.000270865 s, 1.9 MB/s 2024-04-15T17:37:38.833 DEBUG:teuthology.orchestra.run.smithi055:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-15T17:37:38.890 DEBUG:teuthology.orchestra.run.smithi092:> set -ex 2024-04-15T17:37:38.890 DEBUG:teuthology.orchestra.run.smithi092:> dd if=/scratch_devs of=/dev/stdout 2024-04-15T17:37:38.910 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-04-15T17:37:38.910 DEBUG:teuthology.orchestra.run.smithi092:> stat /dev/vg_nvme/lv_1 2024-04-15T17:37:38.969 INFO:teuthology.orchestra.run.smithi092.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-15T17:37:38.970 INFO:teuthology.orchestra.run.smithi092.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T17:37:38.970 INFO:teuthology.orchestra.run.smithi092.stdout:Device: 5h/5d Inode: 668 Links: 1 2024-04-15T17:37:38.970 INFO:teuthology.orchestra.run.smithi092.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T17:37:38.970 INFO:teuthology.orchestra.run.smithi092.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T17:37:38.970 INFO:teuthology.orchestra.run.smithi092.stdout:Access: 2024-04-15 17:37:24.573292409 +0000 2024-04-15T17:37:38.970 INFO:teuthology.orchestra.run.smithi092.stdout:Modify: 2024-04-15 17:31:25.811944296 +0000 2024-04-15T17:37:38.970 INFO:teuthology.orchestra.run.smithi092.stdout:Change: 2024-04-15 17:31:25.811944296 +0000 2024-04-15T17:37:38.970 INFO:teuthology.orchestra.run.smithi092.stdout: Birth: 2024-04-15 17:31:25.811944296 +0000 2024-04-15T17:37:38.970 DEBUG:teuthology.orchestra.run.smithi092:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-15T17:37:39.042 INFO:teuthology.orchestra.run.smithi092.stderr:1+0 records in 2024-04-15T17:37:39.042 INFO:teuthology.orchestra.run.smithi092.stderr:1+0 records out 2024-04-15T17:37:39.042 INFO:teuthology.orchestra.run.smithi092.stderr:512 bytes copied, 0.000298691 s, 1.7 MB/s 2024-04-15T17:37:39.043 DEBUG:teuthology.orchestra.run.smithi092:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-15T17:37:39.103 DEBUG:teuthology.orchestra.run.smithi092:> stat /dev/vg_nvme/lv_2 2024-04-15T17:37:39.162 INFO:teuthology.orchestra.run.smithi092.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-15T17:37:39.162 INFO:teuthology.orchestra.run.smithi092.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T17:37:39.162 INFO:teuthology.orchestra.run.smithi092.stdout:Device: 5h/5d Inode: 684 Links: 1 2024-04-15T17:37:39.162 INFO:teuthology.orchestra.run.smithi092.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T17:37:39.162 INFO:teuthology.orchestra.run.smithi092.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T17:37:39.162 INFO:teuthology.orchestra.run.smithi092.stdout:Access: 2024-04-15 17:37:24.573292409 +0000 2024-04-15T17:37:39.163 INFO:teuthology.orchestra.run.smithi092.stdout:Modify: 2024-04-15 17:31:26.148934482 +0000 2024-04-15T17:37:39.163 INFO:teuthology.orchestra.run.smithi092.stdout:Change: 2024-04-15 17:31:26.148934482 +0000 2024-04-15T17:37:39.163 INFO:teuthology.orchestra.run.smithi092.stdout: Birth: 2024-04-15 17:31:26.148934482 +0000 2024-04-15T17:37:39.163 DEBUG:teuthology.orchestra.run.smithi092:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-15T17:37:39.233 INFO:teuthology.orchestra.run.smithi092.stderr:1+0 records in 2024-04-15T17:37:39.234 INFO:teuthology.orchestra.run.smithi092.stderr:1+0 records out 2024-04-15T17:37:39.234 INFO:teuthology.orchestra.run.smithi092.stderr:512 bytes copied, 0.000198828 s, 2.6 MB/s 2024-04-15T17:37:39.235 DEBUG:teuthology.orchestra.run.smithi092:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-15T17:37:39.293 DEBUG:teuthology.orchestra.run.smithi092:> stat /dev/vg_nvme/lv_3 2024-04-15T17:37:39.349 INFO:teuthology.orchestra.run.smithi092.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-15T17:37:39.349 INFO:teuthology.orchestra.run.smithi092.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T17:37:39.350 INFO:teuthology.orchestra.run.smithi092.stdout:Device: 5h/5d Inode: 705 Links: 1 2024-04-15T17:37:39.350 INFO:teuthology.orchestra.run.smithi092.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T17:37:39.350 INFO:teuthology.orchestra.run.smithi092.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T17:37:39.350 INFO:teuthology.orchestra.run.smithi092.stdout:Access: 2024-04-15 17:37:24.573292409 +0000 2024-04-15T17:37:39.350 INFO:teuthology.orchestra.run.smithi092.stdout:Modify: 2024-04-15 17:31:26.485924668 +0000 2024-04-15T17:37:39.350 INFO:teuthology.orchestra.run.smithi092.stdout:Change: 2024-04-15 17:31:26.485924668 +0000 2024-04-15T17:37:39.350 INFO:teuthology.orchestra.run.smithi092.stdout: Birth: 2024-04-15 17:31:26.485924668 +0000 2024-04-15T17:37:39.350 DEBUG:teuthology.orchestra.run.smithi092:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-15T17:37:39.416 INFO:teuthology.orchestra.run.smithi092.stderr:1+0 records in 2024-04-15T17:37:39.417 INFO:teuthology.orchestra.run.smithi092.stderr:1+0 records out 2024-04-15T17:37:39.417 INFO:teuthology.orchestra.run.smithi092.stderr:512 bytes copied, 0.000258859 s, 2.0 MB/s 2024-04-15T17:37:39.418 DEBUG:teuthology.orchestra.run.smithi092:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-15T17:37:39.475 DEBUG:teuthology.orchestra.run.smithi092:> stat /dev/vg_nvme/lv_4 2024-04-15T17:37:39.531 INFO:teuthology.orchestra.run.smithi092.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-15T17:37:39.531 INFO:teuthology.orchestra.run.smithi092.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T17:37:39.531 INFO:teuthology.orchestra.run.smithi092.stdout:Device: 5h/5d Inode: 724 Links: 1 2024-04-15T17:37:39.531 INFO:teuthology.orchestra.run.smithi092.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T17:37:39.532 INFO:teuthology.orchestra.run.smithi092.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T17:37:39.532 INFO:teuthology.orchestra.run.smithi092.stdout:Access: 2024-04-15 17:37:24.574292380 +0000 2024-04-15T17:37:39.532 INFO:teuthology.orchestra.run.smithi092.stdout:Modify: 2024-04-15 17:31:26.826914738 +0000 2024-04-15T17:37:39.532 INFO:teuthology.orchestra.run.smithi092.stdout:Change: 2024-04-15 17:31:26.826914738 +0000 2024-04-15T17:37:39.532 INFO:teuthology.orchestra.run.smithi092.stdout: Birth: 2024-04-15 17:31:26.826914738 +0000 2024-04-15T17:37:39.532 DEBUG:teuthology.orchestra.run.smithi092:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-15T17:37:39.598 INFO:teuthology.orchestra.run.smithi092.stderr:1+0 records in 2024-04-15T17:37:39.598 INFO:teuthology.orchestra.run.smithi092.stderr:1+0 records out 2024-04-15T17:37:39.599 INFO:teuthology.orchestra.run.smithi092.stderr:512 bytes copied, 0.00020401 s, 2.5 MB/s 2024-04-15T17:37:39.600 DEBUG:teuthology.orchestra.run.smithi092:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-15T17:37:39.656 DEBUG:teuthology.orchestra.run.smithi118:> set -ex 2024-04-15T17:37:39.656 DEBUG:teuthology.orchestra.run.smithi118:> dd if=/scratch_devs of=/dev/stdout 2024-04-15T17:37:39.676 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-04-15T17:37:39.676 DEBUG:teuthology.orchestra.run.smithi118:> stat /dev/vg_nvme/lv_1 2024-04-15T17:37:39.735 INFO:teuthology.orchestra.run.smithi118.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-15T17:37:39.735 INFO:teuthology.orchestra.run.smithi118.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T17:37:39.735 INFO:teuthology.orchestra.run.smithi118.stdout:Device: 5h/5d Inode: 666 Links: 1 2024-04-15T17:37:39.735 INFO:teuthology.orchestra.run.smithi118.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T17:37:39.735 INFO:teuthology.orchestra.run.smithi118.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T17:37:39.735 INFO:teuthology.orchestra.run.smithi118.stdout:Access: 2024-04-15 17:37:14.803996816 +0000 2024-04-15T17:37:39.735 INFO:teuthology.orchestra.run.smithi118.stdout:Modify: 2024-04-15 17:31:13.161551776 +0000 2024-04-15T17:37:39.735 INFO:teuthology.orchestra.run.smithi118.stdout:Change: 2024-04-15 17:31:13.161551776 +0000 2024-04-15T17:37:39.736 INFO:teuthology.orchestra.run.smithi118.stdout: Birth: 2024-04-15 17:31:13.161551776 +0000 2024-04-15T17:37:39.736 DEBUG:teuthology.orchestra.run.smithi118:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-15T17:37:39.809 INFO:teuthology.orchestra.run.smithi118.stderr:1+0 records in 2024-04-15T17:37:39.809 INFO:teuthology.orchestra.run.smithi118.stderr:1+0 records out 2024-04-15T17:37:39.809 INFO:teuthology.orchestra.run.smithi118.stderr:512 bytes copied, 0.000128177 s, 4.0 MB/s 2024-04-15T17:37:39.809 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:39 smithi118 ceph-mon[33587]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:39.809 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:39 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:39.809 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:39 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:39.810 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:39 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:37:39.810 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:39 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:39.810 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:39 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:37:39.810 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:39 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:39.810 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:39 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T17:37:39.810 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:39 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-15T17:37:39.810 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:39 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T17:37:39.810 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:39 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:39.811 DEBUG:teuthology.orchestra.run.smithi118:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-15T17:37:39.862 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:39 smithi092 ceph-mon[33096]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:39.862 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:39 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:39.862 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:39 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:39.862 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:39 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:37:39.862 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:39 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:39.862 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:39 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:37:39.862 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:39 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:39.863 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:39 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T17:37:39.863 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:39 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-15T17:37:39.863 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:39 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T17:37:39.863 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:39 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:39.868 DEBUG:teuthology.orchestra.run.smithi118:> stat /dev/vg_nvme/lv_2 2024-04-15T17:37:39.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:39 smithi055 ceph-mon[29592]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:39.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:39 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:39.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:39 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:39.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:39 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:37:39.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:39 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:39.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:39 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:37:39.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:39 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:39.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:39 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T17:37:39.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:39 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-15T17:37:39.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:39 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T17:37:39.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:39 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:39.924 INFO:teuthology.orchestra.run.smithi118.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-15T17:37:39.925 INFO:teuthology.orchestra.run.smithi118.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T17:37:39.925 INFO:teuthology.orchestra.run.smithi118.stdout:Device: 5h/5d Inode: 686 Links: 1 2024-04-15T17:37:39.925 INFO:teuthology.orchestra.run.smithi118.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T17:37:39.925 INFO:teuthology.orchestra.run.smithi118.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T17:37:39.925 INFO:teuthology.orchestra.run.smithi118.stdout:Access: 2024-04-15 17:37:14.803996816 +0000 2024-04-15T17:37:39.925 INFO:teuthology.orchestra.run.smithi118.stdout:Modify: 2024-04-15 17:31:13.502544027 +0000 2024-04-15T17:37:39.925 INFO:teuthology.orchestra.run.smithi118.stdout:Change: 2024-04-15 17:31:13.502544027 +0000 2024-04-15T17:37:39.925 INFO:teuthology.orchestra.run.smithi118.stdout: Birth: 2024-04-15 17:31:13.502544027 +0000 2024-04-15T17:37:39.925 DEBUG:teuthology.orchestra.run.smithi118:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-15T17:37:39.991 INFO:teuthology.orchestra.run.smithi118.stderr:1+0 records in 2024-04-15T17:37:39.992 INFO:teuthology.orchestra.run.smithi118.stderr:1+0 records out 2024-04-15T17:37:39.992 INFO:teuthology.orchestra.run.smithi118.stderr:512 bytes copied, 0.000111918 s, 4.6 MB/s 2024-04-15T17:37:39.993 DEBUG:teuthology.orchestra.run.smithi118:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-15T17:37:40.050 DEBUG:teuthology.orchestra.run.smithi118:> stat /dev/vg_nvme/lv_3 2024-04-15T17:37:40.106 INFO:teuthology.orchestra.run.smithi118.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-15T17:37:40.106 INFO:teuthology.orchestra.run.smithi118.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T17:37:40.106 INFO:teuthology.orchestra.run.smithi118.stdout:Device: 5h/5d Inode: 703 Links: 1 2024-04-15T17:37:40.106 INFO:teuthology.orchestra.run.smithi118.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T17:37:40.106 INFO:teuthology.orchestra.run.smithi118.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T17:37:40.106 INFO:teuthology.orchestra.run.smithi118.stdout:Access: 2024-04-15 17:37:14.803996816 +0000 2024-04-15T17:37:40.106 INFO:teuthology.orchestra.run.smithi118.stdout:Modify: 2024-04-15 17:31:13.834536481 +0000 2024-04-15T17:37:40.107 INFO:teuthology.orchestra.run.smithi118.stdout:Change: 2024-04-15 17:31:13.834536481 +0000 2024-04-15T17:37:40.107 INFO:teuthology.orchestra.run.smithi118.stdout: Birth: 2024-04-15 17:31:13.834536481 +0000 2024-04-15T17:37:40.107 DEBUG:teuthology.orchestra.run.smithi118:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-15T17:37:40.173 INFO:teuthology.orchestra.run.smithi118.stderr:1+0 records in 2024-04-15T17:37:40.173 INFO:teuthology.orchestra.run.smithi118.stderr:1+0 records out 2024-04-15T17:37:40.174 INFO:teuthology.orchestra.run.smithi118.stderr:512 bytes copied, 0.000111701 s, 4.6 MB/s 2024-04-15T17:37:40.175 DEBUG:teuthology.orchestra.run.smithi118:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-15T17:37:40.232 DEBUG:teuthology.orchestra.run.smithi118:> stat /dev/vg_nvme/lv_4 2024-04-15T17:37:40.288 INFO:teuthology.orchestra.run.smithi118.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-15T17:37:40.288 INFO:teuthology.orchestra.run.smithi118.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T17:37:40.288 INFO:teuthology.orchestra.run.smithi118.stdout:Device: 5h/5d Inode: 724 Links: 1 2024-04-15T17:37:40.288 INFO:teuthology.orchestra.run.smithi118.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T17:37:40.288 INFO:teuthology.orchestra.run.smithi118.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T17:37:40.288 INFO:teuthology.orchestra.run.smithi118.stdout:Access: 2024-04-15 17:37:14.804996794 +0000 2024-04-15T17:37:40.288 INFO:teuthology.orchestra.run.smithi118.stdout:Modify: 2024-04-15 17:31:14.155529186 +0000 2024-04-15T17:37:40.288 INFO:teuthology.orchestra.run.smithi118.stdout:Change: 2024-04-15 17:31:14.155529186 +0000 2024-04-15T17:37:40.288 INFO:teuthology.orchestra.run.smithi118.stdout: Birth: 2024-04-15 17:31:14.155529186 +0000 2024-04-15T17:37:40.289 DEBUG:teuthology.orchestra.run.smithi118:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-15T17:37:40.355 INFO:teuthology.orchestra.run.smithi118.stderr:1+0 records in 2024-04-15T17:37:40.355 INFO:teuthology.orchestra.run.smithi118.stderr:1+0 records out 2024-04-15T17:37:40.355 INFO:teuthology.orchestra.run.smithi118.stderr:512 bytes copied, 9.0335e-05 s, 5.7 MB/s 2024-04-15T17:37:40.357 DEBUG:teuthology.orchestra.run.smithi118:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-15T17:37:40.414 INFO:tasks.cephadm:Deploying osd.0 on smithi055 with /dev/vg_nvme/lv_4... 2024-04-15T17:37:40.414 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-04-15T17:37:40.666 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:37:40.788 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:40 smithi055 ceph-mon[29592]: Deploying daemon mgr.b on smithi092 2024-04-15T17:37:40.845 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:40 smithi092 ceph-mon[33096]: Deploying daemon mgr.b on smithi092 2024-04-15T17:37:40.849 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:40 smithi118 ceph-mon[33587]: Deploying daemon mgr.b on smithi092 2024-04-15T17:37:41.133 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:41 smithi092 systemd[1]: Starting Ceph mgr.b for 6c2710cc-fb4e-11ee-bc8f-c7b262605968... 2024-04-15T17:37:41.546 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:41 smithi092 podman[34457]: 2024-04-15 17:37:41.257719005 +0000 UTC m=+0.103755613 container create 5483aea1cc2e50c228729f761145627f5f72df5c117ccb4c15f64e96b14bfb8e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b, org.label-schema.name=CentOS Stream 8 Base Image, GIT_CLEAN=True, GIT_BRANCH=HEAD, RELEASE=main-c2d8c31, org.label-schema.build-date=20240409, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, io.buildah.version=1.33.5, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS) 2024-04-15T17:37:41.546 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:41 smithi092 podman[34457]: 2024-04-15 17:37:41.17192141 +0000 UTC m=+0.017958025 image pull 259793512b732efd8e04a33aa28c6de3675c47d120bc226206521425d246003e quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163 2024-04-15T17:37:41.546 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:41 smithi092 podman[34457]: 2024-04-15 17:37:41.468538762 +0000 UTC m=+0.314575370 container init 5483aea1cc2e50c228729f761145627f5f72df5c117ccb4c15f64e96b14bfb8e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.build-date=20240409, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, RELEASE=main-c2d8c31, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, io.buildah.version=1.33.5, org.label-schema.vendor=CentOS) 2024-04-15T17:37:41.546 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:41 smithi092 podman[34457]: 2024-04-15 17:37:41.471176739 +0000 UTC m=+0.317213348 container start 5483aea1cc2e50c228729f761145627f5f72df5c117ccb4c15f64e96b14bfb8e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b, org.label-schema.name=CentOS Stream 8 Base Image, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, GIT_CLEAN=True, org.label-schema.schema-version=1.0, ceph=True, org.label-schema.build-date=20240409, io.buildah.version=1.33.5, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, RELEASE=main-c2d8c31) 2024-04-15T17:37:41.546 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:41 smithi092 ceph-mgr[34475]: -- 172.21.15.92:0/2507325712 <== mon.2 v2:172.21.15.92:3300/0 4 ==== auth_reply(proto 2 0 (0) Success) ==== 194+0+0 (secure 0 0 0) 0x55a92a59e5a0 con 0x55a92a572800 2024-04-15T17:37:41.546 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:41 smithi092 bash[34457]: 5483aea1cc2e50c228729f761145627f5f72df5c117ccb4c15f64e96b14bfb8e 2024-04-15T17:37:41.849 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:41 smithi118 ceph-mon[33587]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:41.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:41 smithi055 ceph-mon[29592]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:41.882 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:41 smithi092 ceph-mon[33096]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:41.883 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:41 smithi092 systemd[1]: Started Ceph mgr.b for 6c2710cc-fb4e-11ee-bc8f-c7b262605968. 2024-04-15T17:37:42.383 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:42 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b[34471]: 2024-04-15T17:37:42.038+0000 7f0988063200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-04-15T17:37:42.383 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:42 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b[34471]: 2024-04-15T17:37:42.135+0000 7f0988063200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-04-15T17:37:42.599 INFO:teuthology.orchestra.run.smithi055.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-04-15T17:37:42.599 INFO:teuthology.orchestra.run.smithi055.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-04-15T17:37:42.600 INFO:teuthology.orchestra.run.smithi055.stderr: stderr: 10+0 records in 2024-04-15T17:37:42.600 INFO:teuthology.orchestra.run.smithi055.stderr:10+0 records out 2024-04-15T17:37:42.600 INFO:teuthology.orchestra.run.smithi055.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0165453 s, 634 MB/s 2024-04-15T17:37:42.600 INFO:teuthology.orchestra.run.smithi055.stderr:--> Zapping successful for: 2024-04-15T17:37:42.723 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:42 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:42.723 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:42 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:42.723 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:42 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:42.723 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:42 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:42.723 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:42 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:37:42.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:42 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:42.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:42 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:42.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:42 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:42.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:42 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:42.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:42 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:37:43.062 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:42 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b[34471]: 2024-04-15T17:37:42.849+0000 7f0988063200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-04-15T17:37:43.062 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:42 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b[34471]: 2024-04-15T17:37:42.942+0000 7f0988063200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-04-15T17:37:43.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:42 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:43.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:42 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:43.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:42 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:43.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:42 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:43.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:42 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:37:43.194 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph orch daemon add osd smithi055:vg_nvme/lv_4 2024-04-15T17:37:43.318 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:43 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b[34471]: 2024-04-15T17:37:43.092+0000 7f0988063200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-04-15T17:37:43.318 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:43 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b[34471]: 2024-04-15T17:37:43.195+0000 7f0988063200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-04-15T17:37:43.319 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:43 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b[34471]: 2024-04-15T17:37:43.281+0000 7f0988063200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-04-15T17:37:43.451 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:37:43.633 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:43 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b[34471]: 2024-04-15T17:37:43.558+0000 7f0988063200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-04-15T17:37:43.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:43 smithi055 ceph-mon[29592]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:43.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:43 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:43.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:43 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:43.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:43 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:43.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:43 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:37:43.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:43 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:43.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:43 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T17:37:43.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:43 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T17:37:43.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:43 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:44.034 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:43 smithi092 ceph-mon[33096]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:44.035 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:43 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:44.035 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:43 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:44.035 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:43 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:44.035 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:43 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:37:44.035 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:43 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:44.035 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:43 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T17:37:44.036 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:43 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T17:37:44.036 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:43 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:44.036 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:43 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b[34471]: 2024-04-15T17:37:43.670+0000 7f0988063200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-04-15T17:37:44.036 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:43 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b[34471]: 2024-04-15T17:37:43.758+0000 7f0988063200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-04-15T17:37:44.037 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:43 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b[34471]: 2024-04-15T17:37:43.853+0000 7f0988063200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-04-15T17:37:44.037 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:44 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b[34471]: 2024-04-15T17:37:44.030+0000 7f0988063200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-04-15T17:37:44.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:43 smithi118 ceph-mon[33587]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:44.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:43 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:44.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:43 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:44.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:43 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:44.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:43 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:37:44.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:43 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:44.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:43 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T17:37:44.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:43 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T17:37:44.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:43 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:44.834 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:44 smithi055 ceph-mon[29592]: Reconfiguring mgr.a (unknown last config time)... 2024-04-15T17:37:44.835 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:44 smithi055 ceph-mon[29592]: Reconfiguring daemon mgr.a on smithi055 2024-04-15T17:37:45.004 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:44 smithi092 ceph-mon[33096]: Reconfiguring mgr.a (unknown last config time)... 2024-04-15T17:37:45.004 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:44 smithi092 ceph-mon[33096]: Reconfiguring daemon mgr.a on smithi055 2024-04-15T17:37:45.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:44 smithi118 ceph-mon[33587]: Reconfiguring mgr.a (unknown last config time)... 2024-04-15T17:37:45.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:44 smithi118 ceph-mon[33587]: Reconfiguring daemon mgr.a on smithi055 2024-04-15T17:37:45.386 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:45 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b[34471]: 2024-04-15T17:37:45.000+0000 7f0988063200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-04-15T17:37:45.386 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:45 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b[34471]: 2024-04-15T17:37:45.131+0000 7f0988063200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-04-15T17:37:45.754 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:45 smithi092 ceph-mon[33096]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:45.754 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:45 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:45.754 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:45 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:45.754 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:45 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:45.754 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:45 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:37:45.754 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:45 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:45.754 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:45 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:37:45.754 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:45 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:45.754 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:45 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b[34471]: 2024-04-15T17:37:45.461+0000 7f0988063200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-04-15T17:37:45.755 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:45 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b[34471]: 2024-04-15T17:37:45.550+0000 7f0988063200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-04-15T17:37:45.755 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:45 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b[34471]: 2024-04-15T17:37:45.749+0000 7f0988063200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-04-15T17:37:45.776 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:45 smithi055 ceph-mon[29592]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:45.776 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:45 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:45.776 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:45 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:45.776 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:45 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:45.776 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:45 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:37:45.776 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:45 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:45.777 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:45 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:37:45.777 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:45 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:46.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:45 smithi118 ceph-mon[33587]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:46.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:45 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:46.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:45 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:46.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:45 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:46.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:45 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:37:46.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:45 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:46.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:45 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:37:46.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:45 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:37:46.133 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:45 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b[34471]: 2024-04-15T17:37:45.934+0000 7f0988063200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-04-15T17:37:46.480 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:46 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b[34471]: 2024-04-15T17:37:46.219+0000 7f0988063200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-04-15T17:37:46.480 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:46 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b[34471]: 2024-04-15T17:37:46.476+0000 7f0988063200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-04-15T17:37:46.883 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:46 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b[34471]: 2024-04-15T17:37:46.714+0000 7f0988063200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-04-15T17:37:46.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:46 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T17:37:46.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:46 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T17:37:46.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:46 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:46.985 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:46 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T17:37:46.985 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:46 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T17:37:46.985 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:46 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:47.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:46 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T17:37:47.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:46 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T17:37:47.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:46 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:47.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:47 smithi092 ceph-mon[33096]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:47.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:47 smithi092 ceph-mon[33096]: from='client.14223 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi055:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:37:47.883 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:47 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b[34471]: 2024-04-15T17:37:47.514+0000 7f0988063200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-04-15T17:37:47.940 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:47 smithi055 ceph-mon[29592]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:47.940 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:47 smithi055 ceph-mon[29592]: from='client.14223 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi055:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:37:48.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:47 smithi118 ceph-mon[33587]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:48.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:47 smithi118 ceph-mon[33587]: from='client.14223 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi055:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:37:48.383 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:48 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b[34471]: 2024-04-15T17:37:48.108+0000 7f0988063200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-04-15T17:37:48.383 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:48 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b[34471]: 2024-04-15T17:37:48.205+0000 7f0988063200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-04-15T17:37:48.690 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:37:48 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b[34471]: 2024-04-15T17:37:48.421+0000 7f0988063200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-04-15T17:37:49.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:48 smithi118 ceph-mon[33587]: Standby manager daemon b started 2024-04-15T17:37:49.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:48 smithi118 ceph-mon[33587]: from='mgr.? 172.21.15.92:0/2473885167' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-04-15T17:37:49.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:48 smithi118 ceph-mon[33587]: from='mgr.? 172.21.15.92:0/2473885167' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-15T17:37:49.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:48 smithi118 ceph-mon[33587]: from='mgr.? 172.21.15.92:0/2473885167' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-04-15T17:37:49.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:48 smithi118 ceph-mon[33587]: from='mgr.? 172.21.15.92:0/2473885167' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-15T17:37:49.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:48 smithi055 ceph-mon[29592]: Standby manager daemon b started 2024-04-15T17:37:49.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:48 smithi055 ceph-mon[29592]: from='mgr.? 172.21.15.92:0/2473885167' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-04-15T17:37:49.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:48 smithi055 ceph-mon[29592]: from='mgr.? 172.21.15.92:0/2473885167' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-15T17:37:49.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:48 smithi055 ceph-mon[29592]: from='mgr.? 172.21.15.92:0/2473885167' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-04-15T17:37:49.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:48 smithi055 ceph-mon[29592]: from='mgr.? 172.21.15.92:0/2473885167' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-15T17:37:49.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:48 smithi092 ceph-mon[33096]: Standby manager daemon b started 2024-04-15T17:37:49.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:48 smithi092 ceph-mon[33096]: from='mgr.? 172.21.15.92:0/2473885167' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-04-15T17:37:49.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:48 smithi092 ceph-mon[33096]: from='mgr.? 172.21.15.92:0/2473885167' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-15T17:37:49.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:48 smithi092 ceph-mon[33096]: from='mgr.? 172.21.15.92:0/2473885167' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-04-15T17:37:49.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:48 smithi092 ceph-mon[33096]: from='mgr.? 172.21.15.92:0/2473885167' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-15T17:37:50.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:49 smithi118 ceph-mon[33587]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:50.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:49 smithi118 ceph-mon[33587]: mgrmap e14: a(active, since 78s), standbys: b 2024-04-15T17:37:50.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:49 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-04-15T17:37:50.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:49 smithi118 ceph-mon[33587]: from='client.? 172.21.15.55:0/770225500' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "094af296-7b4a-4730-a438-68828dea4601"}]: dispatch 2024-04-15T17:37:50.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:49 smithi118 ceph-mon[33587]: from='client.? 172.21.15.55:0/770225500' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "094af296-7b4a-4730-a438-68828dea4601"}]': finished 2024-04-15T17:37:50.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:49 smithi118 ceph-mon[33587]: osdmap e5: 1 total, 0 up, 1 in 2024-04-15T17:37:50.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:49 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T17:37:50.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:49 smithi118 ceph-mon[33587]: from='client.? 172.21.15.55:0/3712232796' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T17:37:50.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:49 smithi055 ceph-mon[29592]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:50.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:49 smithi055 ceph-mon[29592]: mgrmap e14: a(active, since 78s), standbys: b 2024-04-15T17:37:50.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:49 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-04-15T17:37:50.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:49 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/770225500' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "094af296-7b4a-4730-a438-68828dea4601"}]: dispatch 2024-04-15T17:37:50.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:49 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/770225500' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "094af296-7b4a-4730-a438-68828dea4601"}]': finished 2024-04-15T17:37:50.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:49 smithi055 ceph-mon[29592]: osdmap e5: 1 total, 0 up, 1 in 2024-04-15T17:37:50.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:49 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T17:37:50.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:49 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/3712232796' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T17:37:50.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:49 smithi092 ceph-mon[33096]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:50.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:49 smithi092 ceph-mon[33096]: mgrmap e14: a(active, since 78s), standbys: b 2024-04-15T17:37:50.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:49 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-04-15T17:37:50.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:49 smithi092 ceph-mon[33096]: from='client.? 172.21.15.55:0/770225500' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "094af296-7b4a-4730-a438-68828dea4601"}]: dispatch 2024-04-15T17:37:50.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:49 smithi092 ceph-mon[33096]: from='client.? 172.21.15.55:0/770225500' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "094af296-7b4a-4730-a438-68828dea4601"}]': finished 2024-04-15T17:37:50.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:49 smithi092 ceph-mon[33096]: osdmap e5: 1 total, 0 up, 1 in 2024-04-15T17:37:50.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:49 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T17:37:50.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:49 smithi092 ceph-mon[33096]: from='client.? 172.21.15.55:0/3712232796' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T17:37:52.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:51 smithi118 ceph-mon[33587]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:52.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:51 smithi055 ceph-mon[29592]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:52.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:51 smithi092 ceph-mon[33096]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:54.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:53 smithi118 ceph-mon[33587]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:54.111 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:53 smithi055 ceph-mon[29592]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:54.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:53 smithi092 ceph-mon[33096]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:56.091 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:55 smithi055 ceph-mon[29592]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:56.092 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:55 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-15T17:37:56.092 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:55 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:56.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:55 smithi118 ceph-mon[33587]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:56.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:55 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-15T17:37:56.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:55 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:56.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:55 smithi092 ceph-mon[33096]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:56.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:55 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-15T17:37:56.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:55 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:37:57.000 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:56 smithi055 ceph-mon[29592]: Deploying daemon osd.0 on smithi055 2024-04-15T17:37:57.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:56 smithi118 ceph-mon[33587]: Deploying daemon osd.0 on smithi055 2024-04-15T17:37:57.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:56 smithi092 ceph-mon[33096]: Deploying daemon osd.0 on smithi055 2024-04-15T17:37:57.973 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:57 smithi055 ceph-mon[29592]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:58.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:57 smithi118 ceph-mon[33587]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:58.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:57 smithi092 ceph-mon[33096]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:37:59.956 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:37:59 smithi055 ceph-mon[29592]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:38:00.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:37:59 smithi118 ceph-mon[33587]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:38:00.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:37:59 smithi092 ceph-mon[33096]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:38:01.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:00 smithi118 ceph-mon[33587]: pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:38:01.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:00 smithi055 ceph-mon[29592]: pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:38:01.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:00 smithi092 ceph-mon[33096]: pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:38:02.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:01 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:02.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:01 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:02.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:01 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:38:02.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:01 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:02.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:01 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:02.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:01 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:38:02.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:01 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:02.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:01 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:02.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:01 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:38:03.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:02 smithi118 ceph-mon[33587]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:38:03.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:02 smithi055 ceph-mon[29592]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:38:03.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:02 smithi092 ceph-mon[33096]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:38:04.445 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:04 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:04.446 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:04 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:04.446 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:04 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:04.446 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:04 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:38:04.446 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:04 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:04.446 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:04 smithi055 ceph-mon[29592]: from='osd.0 [v2:172.21.15.55:6802/3386140023,v1:172.21.15.55:6803/3386140023]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-04-15T17:38:04.518 INFO:teuthology.orchestra.run.smithi055.stdout:Created osd(s) 0 on host 'smithi055' 2024-04-15T17:38:04.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:04 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:04.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:04 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:04.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:04 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:04.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:04 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:38:04.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:04 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:04.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:04 smithi118 ceph-mon[33587]: from='osd.0 [v2:172.21.15.55:6802/3386140023,v1:172.21.15.55:6803/3386140023]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-04-15T17:38:04.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:04 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:04.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:04 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:04.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:04 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:04.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:04 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:38:04.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:04 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:04.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:04 smithi092 ceph-mon[33096]: from='osd.0 [v2:172.21.15.55:6802/3386140023,v1:172.21.15.55:6803/3386140023]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-04-15T17:38:05.148 DEBUG:teuthology.orchestra.run.smithi055:osd.0> sudo journalctl -f -n 0 -u ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@osd.0.service 2024-04-15T17:38:05.150 INFO:tasks.cephadm:Deploying osd.1 on smithi055 with /dev/vg_nvme/lv_3... 2024-04-15T17:38:05.151 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-04-15T17:38:05.374 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:05 smithi055 ceph-mon[29592]: pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:38:05.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:05 smithi055 ceph-mon[29592]: from='osd.0 [v2:172.21.15.55:6802/3386140023,v1:172.21.15.55:6803/3386140023]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-04-15T17:38:05.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:05 smithi055 ceph-mon[29592]: osdmap e6: 1 total, 0 up, 1 in 2024-04-15T17:38:05.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:05 smithi055 ceph-mon[29592]: from='osd.0 [v2:172.21.15.55:6802/3386140023,v1:172.21.15.55:6803/3386140023]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]: dispatch 2024-04-15T17:38:05.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:05 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T17:38:05.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:05 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:05.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:05 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:05.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:05 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:38:05.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:05 smithi118 ceph-mon[33587]: pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:38:05.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:05 smithi118 ceph-mon[33587]: from='osd.0 [v2:172.21.15.55:6802/3386140023,v1:172.21.15.55:6803/3386140023]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-04-15T17:38:05.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:05 smithi118 ceph-mon[33587]: osdmap e6: 1 total, 0 up, 1 in 2024-04-15T17:38:05.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:05 smithi118 ceph-mon[33587]: from='osd.0 [v2:172.21.15.55:6802/3386140023,v1:172.21.15.55:6803/3386140023]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]: dispatch 2024-04-15T17:38:05.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:05 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T17:38:05.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:05 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:05.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:05 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:05.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:05 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:38:05.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:05 smithi092 ceph-mon[33096]: pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:38:05.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:05 smithi092 ceph-mon[33096]: from='osd.0 [v2:172.21.15.55:6802/3386140023,v1:172.21.15.55:6803/3386140023]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-04-15T17:38:05.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:05 smithi092 ceph-mon[33096]: osdmap e6: 1 total, 0 up, 1 in 2024-04-15T17:38:05.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:05 smithi092 ceph-mon[33096]: from='osd.0 [v2:172.21.15.55:6802/3386140023,v1:172.21.15.55:6803/3386140023]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]: dispatch 2024-04-15T17:38:05.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:05 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T17:38:05.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:05 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:05.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:05 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:05.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:05 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:38:05.874 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:38:05 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-0[43547]: 2024-04-15T17:38:05.650+0000 7f975964f700 -1 osd.0 0 waiting for initial osdmap 2024-04-15T17:38:05.875 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:38:05 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-0[43547]: 2024-04-15T17:38:05.653+0000 7f975143a700 -1 osd.0 7 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-04-15T17:38:06.321 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:06 smithi055 ceph-mon[29592]: from='osd.0 [v2:172.21.15.55:6802/3386140023,v1:172.21.15.55:6803/3386140023]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]': finished 2024-04-15T17:38:06.321 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:06 smithi055 ceph-mon[29592]: osdmap e7: 1 total, 0 up, 1 in 2024-04-15T17:38:06.321 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:06 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T17:38:06.321 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:06 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T17:38:06.321 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:06 smithi055 ceph-mon[29592]: from='osd.0 [v2:172.21.15.55:6802/3386140023,v1:172.21.15.55:6803/3386140023]' entity='osd.0' 2024-04-15T17:38:06.321 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:06 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T17:38:06.403 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:38:06.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:06 smithi118 ceph-mon[33587]: from='osd.0 [v2:172.21.15.55:6802/3386140023,v1:172.21.15.55:6803/3386140023]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]': finished 2024-04-15T17:38:06.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:06 smithi118 ceph-mon[33587]: osdmap e7: 1 total, 0 up, 1 in 2024-04-15T17:38:06.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:06 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T17:38:06.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:06 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T17:38:06.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:06 smithi118 ceph-mon[33587]: from='osd.0 [v2:172.21.15.55:6802/3386140023,v1:172.21.15.55:6803/3386140023]' entity='osd.0' 2024-04-15T17:38:06.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:06 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T17:38:06.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:06 smithi092 ceph-mon[33096]: from='osd.0 [v2:172.21.15.55:6802/3386140023,v1:172.21.15.55:6803/3386140023]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]': finished 2024-04-15T17:38:06.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:06 smithi092 ceph-mon[33096]: osdmap e7: 1 total, 0 up, 1 in 2024-04-15T17:38:06.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:06 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T17:38:06.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:06 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T17:38:06.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:06 smithi092 ceph-mon[33096]: from='osd.0 [v2:172.21.15.55:6802/3386140023,v1:172.21.15.55:6803/3386140023]' entity='osd.0' 2024-04-15T17:38:06.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:06 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T17:38:07.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:07 smithi055 ceph-mon[29592]: purged_snaps scrub starts 2024-04-15T17:38:07.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:07 smithi055 ceph-mon[29592]: purged_snaps scrub ok 2024-04-15T17:38:07.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:07 smithi055 ceph-mon[29592]: pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:38:07.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:07 smithi055 ceph-mon[29592]: osd.0 [v2:172.21.15.55:6802/3386140023,v1:172.21.15.55:6803/3386140023] boot 2024-04-15T17:38:07.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:07 smithi055 ceph-mon[29592]: osdmap e8: 1 total, 1 up, 1 in 2024-04-15T17:38:07.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:07 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T17:38:08.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:07 smithi118 ceph-mon[33587]: purged_snaps scrub starts 2024-04-15T17:38:08.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:07 smithi118 ceph-mon[33587]: purged_snaps scrub ok 2024-04-15T17:38:08.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:07 smithi118 ceph-mon[33587]: pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:38:08.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:07 smithi118 ceph-mon[33587]: osd.0 [v2:172.21.15.55:6802/3386140023,v1:172.21.15.55:6803/3386140023] boot 2024-04-15T17:38:08.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:07 smithi118 ceph-mon[33587]: osdmap e8: 1 total, 1 up, 1 in 2024-04-15T17:38:08.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:07 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T17:38:08.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:07 smithi092 ceph-mon[33096]: purged_snaps scrub starts 2024-04-15T17:38:08.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:07 smithi092 ceph-mon[33096]: purged_snaps scrub ok 2024-04-15T17:38:08.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:07 smithi092 ceph-mon[33096]: pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T17:38:08.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:07 smithi092 ceph-mon[33096]: osd.0 [v2:172.21.15.55:6802/3386140023,v1:172.21.15.55:6803/3386140023] boot 2024-04-15T17:38:08.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:07 smithi092 ceph-mon[33096]: osdmap e8: 1 total, 1 up, 1 in 2024-04-15T17:38:08.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:07 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T17:38:08.860 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:08 smithi055 ceph-mon[29592]: osdmap e9: 1 total, 1 up, 1 in 2024-04-15T17:38:08.860 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:08 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:08.860 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:08 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:08.861 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:08 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:38:08.861 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:08 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:08.861 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:08 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:08.861 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:08 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:38:08.861 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:08 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:09.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:08 smithi118 ceph-mon[33587]: osdmap e9: 1 total, 1 up, 1 in 2024-04-15T17:38:09.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:08 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:09.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:08 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:09.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:08 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:38:09.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:08 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:09.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:08 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:09.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:08 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:38:09.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:08 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:09.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:08 smithi092 ceph-mon[33096]: osdmap e9: 1 total, 1 up, 1 in 2024-04-15T17:38:09.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:08 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:09.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:08 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:09.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:08 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:38:09.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:08 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:09.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:08 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:09.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:08 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:38:09.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:08 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:09.464 INFO:teuthology.orchestra.run.smithi055.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-04-15T17:38:09.464 INFO:teuthology.orchestra.run.smithi055.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-04-15T17:38:09.464 INFO:teuthology.orchestra.run.smithi055.stderr: stderr: 10+0 records in 2024-04-15T17:38:09.464 INFO:teuthology.orchestra.run.smithi055.stderr:10+0 records out 2024-04-15T17:38:09.464 INFO:teuthology.orchestra.run.smithi055.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0160823 s, 652 MB/s 2024-04-15T17:38:09.464 INFO:teuthology.orchestra.run.smithi055.stderr:--> Zapping successful for: 2024-04-15T17:38:09.732 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:09 smithi055 ceph-mon[29592]: pgmap v48: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:09.732 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:09 smithi055 ceph-mon[29592]: Detected new or changed devices on smithi055 2024-04-15T17:38:09.732 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:09 smithi055 ceph-mon[29592]: Adjusting osd_memory_target on smithi055 to 17093M 2024-04-15T17:38:10.001 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:09 smithi118 ceph-mon[33587]: pgmap v48: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:10.001 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:09 smithi118 ceph-mon[33587]: Detected new or changed devices on smithi055 2024-04-15T17:38:10.001 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:09 smithi118 ceph-mon[33587]: Adjusting osd_memory_target on smithi055 to 17093M 2024-04-15T17:38:10.087 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph orch daemon add osd smithi055:vg_nvme/lv_3 2024-04-15T17:38:10.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:09 smithi092 ceph-mon[33096]: pgmap v48: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:10.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:09 smithi092 ceph-mon[33096]: Detected new or changed devices on smithi055 2024-04-15T17:38:10.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:09 smithi092 ceph-mon[33096]: Adjusting osd_memory_target on smithi055 to 17093M 2024-04-15T17:38:10.335 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:38:11.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:11 smithi055 ceph-mon[29592]: pgmap v49: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:12.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:11 smithi118 ceph-mon[33587]: pgmap v49: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:12.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:11 smithi092 ceph-mon[33096]: pgmap v49: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:12.987 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:12 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T17:38:12.987 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:12 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T17:38:12.987 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:12 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:13.034 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:12 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T17:38:13.034 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:12 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T17:38:13.035 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:12 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:13.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:12 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T17:38:13.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:12 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T17:38:13.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:12 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:14.018 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:13 smithi055 ceph-mon[29592]: pgmap v50: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:14.018 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:13 smithi055 ceph-mon[29592]: from='client.14250 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi055:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:38:14.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:13 smithi118 ceph-mon[33587]: pgmap v50: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:14.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:13 smithi118 ceph-mon[33587]: from='client.14250 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi055:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:38:14.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:13 smithi092 ceph-mon[33096]: pgmap v50: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:14.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:13 smithi092 ceph-mon[33096]: from='client.14250 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi055:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:38:15.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:14 smithi118 ceph-mon[33587]: from='client.? 172.21.15.55:0/3298610469' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "69bef924-e879-4dab-843d-3bf832bb9127"}]: dispatch 2024-04-15T17:38:15.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:14 smithi118 ceph-mon[33587]: from='client.? 172.21.15.55:0/3298610469' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "69bef924-e879-4dab-843d-3bf832bb9127"}]': finished 2024-04-15T17:38:15.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:14 smithi118 ceph-mon[33587]: osdmap e10: 2 total, 1 up, 2 in 2024-04-15T17:38:15.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:14 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T17:38:15.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:14 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/3298610469' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "69bef924-e879-4dab-843d-3bf832bb9127"}]: dispatch 2024-04-15T17:38:15.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:14 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/3298610469' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "69bef924-e879-4dab-843d-3bf832bb9127"}]': finished 2024-04-15T17:38:15.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:14 smithi055 ceph-mon[29592]: osdmap e10: 2 total, 1 up, 2 in 2024-04-15T17:38:15.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:14 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T17:38:15.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:14 smithi092 ceph-mon[33096]: from='client.? 172.21.15.55:0/3298610469' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "69bef924-e879-4dab-843d-3bf832bb9127"}]: dispatch 2024-04-15T17:38:15.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:14 smithi092 ceph-mon[33096]: from='client.? 172.21.15.55:0/3298610469' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "69bef924-e879-4dab-843d-3bf832bb9127"}]': finished 2024-04-15T17:38:15.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:14 smithi092 ceph-mon[33096]: osdmap e10: 2 total, 1 up, 2 in 2024-04-15T17:38:15.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:14 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T17:38:16.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:15 smithi118 ceph-mon[33587]: pgmap v51: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:16.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:15 smithi118 ceph-mon[33587]: from='client.? 172.21.15.55:0/3635049551' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T17:38:16.126 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:15 smithi055 ceph-mon[29592]: pgmap v51: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:16.126 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:15 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/3635049551' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T17:38:16.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:15 smithi092 ceph-mon[33096]: pgmap v51: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:16.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:15 smithi092 ceph-mon[33096]: from='client.? 172.21.15.55:0/3635049551' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T17:38:17.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:17 smithi055 ceph-mon[29592]: pgmap v53: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:18.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:17 smithi118 ceph-mon[33587]: pgmap v53: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:18.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:17 smithi092 ceph-mon[33096]: pgmap v53: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:20.016 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:19 smithi055 ceph-mon[29592]: pgmap v54: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:20.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:19 smithi118 ceph-mon[33587]: pgmap v54: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:20.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:19 smithi092 ceph-mon[33096]: pgmap v54: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:20.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:20 smithi055 ceph-mon[29592]: pgmap v55: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:21.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:20 smithi118 ceph-mon[33587]: pgmap v55: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:21.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:20 smithi092 ceph-mon[33096]: pgmap v55: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:22.098 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:21 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-15T17:38:22.098 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:21 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:22.098 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:21 smithi055 ceph-mon[29592]: Deploying daemon osd.1 on smithi055 2024-04-15T17:38:22.102 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:21 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-15T17:38:22.102 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:21 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:22.102 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:21 smithi118 ceph-mon[33587]: Deploying daemon osd.1 on smithi055 2024-04-15T17:38:22.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:21 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-15T17:38:22.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:21 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:22.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:21 smithi092 ceph-mon[33096]: Deploying daemon osd.1 on smithi055 2024-04-15T17:38:22.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:22 smithi055 ceph-mon[29592]: pgmap v56: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:23.099 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:22 smithi118 ceph-mon[33587]: pgmap v56: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:23.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:22 smithi092 ceph-mon[33096]: pgmap v56: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:24.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:24 smithi055 ceph-mon[29592]: pgmap v57: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:25.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:24 smithi118 ceph-mon[33587]: pgmap v57: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:25.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:24 smithi092 ceph-mon[33096]: pgmap v57: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:28.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:27 smithi118 ceph-mon[33587]: pgmap v58: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:28.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:27 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:28.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:27 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:28.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:27 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:38:28.124 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:27 smithi055 ceph-mon[29592]: pgmap v58: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:28.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:27 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:28.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:27 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:28.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:27 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:38:28.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:27 smithi092 ceph-mon[33096]: pgmap v58: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:28.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:27 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:28.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:27 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:28.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:27 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:38:29.801 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:29 smithi055 ceph-mon[29592]: pgmap v59: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:30.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:29 smithi118 ceph-mon[33587]: pgmap v59: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:30.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:29 smithi092 ceph-mon[33096]: pgmap v59: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:30.460 INFO:teuthology.orchestra.run.smithi055.stdout:Created osd(s) 1 on host 'smithi055' 2024-04-15T17:38:31.048 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:30 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:31.049 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:30 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:31.049 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:30 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:31.049 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:30 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:38:31.049 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:30 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:31.049 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:30 smithi055 ceph-mon[29592]: from='osd.1 [v2:172.21.15.55:6810/710486852,v1:172.21.15.55:6811/710486852]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-04-15T17:38:31.049 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:30 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:31.049 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:30 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:31.049 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:30 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:38:31.077 DEBUG:teuthology.orchestra.run.smithi055:osd.1> sudo journalctl -f -n 0 -u ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@osd.1.service 2024-04-15T17:38:31.079 INFO:tasks.cephadm:Deploying osd.2 on smithi092 with /dev/vg_nvme/lv_4... 2024-04-15T17:38:31.079 DEBUG:teuthology.orchestra.run.smithi092:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-04-15T17:38:31.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:30 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:31.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:30 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:31.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:30 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:31.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:30 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:38:31.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:30 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:31.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:30 smithi118 ceph-mon[33587]: from='osd.1 [v2:172.21.15.55:6810/710486852,v1:172.21.15.55:6811/710486852]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-04-15T17:38:31.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:30 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:31.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:30 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:31.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:30 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:38:31.111 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:30 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:31.111 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:30 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:31.111 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:30 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:31.111 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:30 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:38:31.111 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:30 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:31.111 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:30 smithi092 ceph-mon[33096]: from='osd.1 [v2:172.21.15.55:6810/710486852,v1:172.21.15.55:6811/710486852]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-04-15T17:38:31.111 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:30 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:31.111 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:30 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:31.111 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:30 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:38:31.336 INFO:teuthology.orchestra.run.smithi092.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.b/config 2024-04-15T17:38:32.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:31 smithi118 ceph-mon[33587]: pgmap v60: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:32.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:31 smithi118 ceph-mon[33587]: from='osd.1 [v2:172.21.15.55:6810/710486852,v1:172.21.15.55:6811/710486852]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-04-15T17:38:32.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:31 smithi118 ceph-mon[33587]: osdmap e11: 2 total, 1 up, 2 in 2024-04-15T17:38:32.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:31 smithi118 ceph-mon[33587]: from='osd.1 [v2:172.21.15.55:6810/710486852,v1:172.21.15.55:6811/710486852]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]: dispatch 2024-04-15T17:38:32.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:31 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T17:38:32.118 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:31 smithi055 ceph-mon[29592]: pgmap v60: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:32.118 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:31 smithi055 ceph-mon[29592]: from='osd.1 [v2:172.21.15.55:6810/710486852,v1:172.21.15.55:6811/710486852]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-04-15T17:38:32.118 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:31 smithi055 ceph-mon[29592]: osdmap e11: 2 total, 1 up, 2 in 2024-04-15T17:38:32.118 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:31 smithi055 ceph-mon[29592]: from='osd.1 [v2:172.21.15.55:6810/710486852,v1:172.21.15.55:6811/710486852]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]: dispatch 2024-04-15T17:38:32.118 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:31 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T17:38:32.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:31 smithi092 ceph-mon[33096]: pgmap v60: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:32.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:31 smithi092 ceph-mon[33096]: from='osd.1 [v2:172.21.15.55:6810/710486852,v1:172.21.15.55:6811/710486852]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-04-15T17:38:32.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:31 smithi092 ceph-mon[33096]: osdmap e11: 2 total, 1 up, 2 in 2024-04-15T17:38:32.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:31 smithi092 ceph-mon[33096]: from='osd.1 [v2:172.21.15.55:6810/710486852,v1:172.21.15.55:6811/710486852]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]: dispatch 2024-04-15T17:38:32.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:31 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T17:38:32.375 INFO:journalctl@ceph.osd.1.smithi055.stdout:Apr 15 17:38:32 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-1[49055]: 2024-04-15T17:38:32.113+0000 7f50c06a1700 -1 osd.1 0 waiting for initial osdmap 2024-04-15T17:38:32.375 INFO:journalctl@ceph.osd.1.smithi055.stdout:Apr 15 17:38:32 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-1[49055]: 2024-04-15T17:38:32.120+0000 7f50b848c700 -1 osd.1 12 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-04-15T17:38:33.016 INFO:teuthology.orchestra.run.smithi092.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-04-15T17:38:33.017 INFO:teuthology.orchestra.run.smithi092.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-04-15T17:38:33.017 INFO:teuthology.orchestra.run.smithi092.stderr: stderr: 10+0 records in 2024-04-15T17:38:33.017 INFO:teuthology.orchestra.run.smithi092.stderr:10+0 records out 2024-04-15T17:38:33.017 INFO:teuthology.orchestra.run.smithi092.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0130456 s, 804 MB/s 2024-04-15T17:38:33.017 INFO:teuthology.orchestra.run.smithi092.stderr:--> Zapping successful for: 2024-04-15T17:38:33.017 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:32 smithi092 ceph-mon[33096]: from='osd.1 [v2:172.21.15.55:6810/710486852,v1:172.21.15.55:6811/710486852]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]': finished 2024-04-15T17:38:33.017 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:32 smithi092 ceph-mon[33096]: osdmap e12: 2 total, 1 up, 2 in 2024-04-15T17:38:33.017 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T17:38:33.017 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:32 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T17:38:33.018 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:32 smithi092 ceph-mon[33096]: pgmap v63: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:33.018 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:32 smithi092 ceph-mon[33096]: from='osd.1 [v2:172.21.15.55:6810/710486852,v1:172.21.15.55:6811/710486852]' entity='osd.1' 2024-04-15T17:38:33.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:32 smithi118 ceph-mon[33587]: from='osd.1 [v2:172.21.15.55:6810/710486852,v1:172.21.15.55:6811/710486852]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]': finished 2024-04-15T17:38:33.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:32 smithi118 ceph-mon[33587]: osdmap e12: 2 total, 1 up, 2 in 2024-04-15T17:38:33.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:32 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T17:38:33.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:32 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T17:38:33.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:32 smithi118 ceph-mon[33587]: pgmap v63: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:33.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:32 smithi118 ceph-mon[33587]: from='osd.1 [v2:172.21.15.55:6810/710486852,v1:172.21.15.55:6811/710486852]' entity='osd.1' 2024-04-15T17:38:33.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:32 smithi055 ceph-mon[29592]: from='osd.1 [v2:172.21.15.55:6810/710486852,v1:172.21.15.55:6811/710486852]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi055", "root=default"]}]': finished 2024-04-15T17:38:33.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:32 smithi055 ceph-mon[29592]: osdmap e12: 2 total, 1 up, 2 in 2024-04-15T17:38:33.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:32 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T17:38:33.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:32 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T17:38:33.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:32 smithi055 ceph-mon[29592]: pgmap v63: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-15T17:38:33.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:32 smithi055 ceph-mon[29592]: from='osd.1 [v2:172.21.15.55:6810/710486852,v1:172.21.15.55:6811/710486852]' entity='osd.1' 2024-04-15T17:38:33.641 DEBUG:teuthology.orchestra.run.smithi092:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph orch daemon add osd smithi092:vg_nvme/lv_4 2024-04-15T17:38:33.920 INFO:teuthology.orchestra.run.smithi092.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.b/config 2024-04-15T17:38:34.031 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:33 smithi092 ceph-mon[33096]: purged_snaps scrub starts 2024-04-15T17:38:34.031 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:33 smithi092 ceph-mon[33096]: purged_snaps scrub ok 2024-04-15T17:38:34.031 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:33 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T17:38:34.031 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:33 smithi092 ceph-mon[33096]: osd.1 [v2:172.21.15.55:6810/710486852,v1:172.21.15.55:6811/710486852] boot 2024-04-15T17:38:34.031 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:33 smithi092 ceph-mon[33096]: osdmap e13: 2 total, 2 up, 2 in 2024-04-15T17:38:34.031 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:33 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T17:38:34.045 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:33 smithi055 ceph-mon[29592]: purged_snaps scrub starts 2024-04-15T17:38:34.045 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:33 smithi055 ceph-mon[29592]: purged_snaps scrub ok 2024-04-15T17:38:34.045 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:33 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T17:38:34.045 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:33 smithi055 ceph-mon[29592]: osd.1 [v2:172.21.15.55:6810/710486852,v1:172.21.15.55:6811/710486852] boot 2024-04-15T17:38:34.045 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:33 smithi055 ceph-mon[29592]: osdmap e13: 2 total, 2 up, 2 in 2024-04-15T17:38:34.046 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:33 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T17:38:34.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:33 smithi118 ceph-mon[33587]: purged_snaps scrub starts 2024-04-15T17:38:34.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:33 smithi118 ceph-mon[33587]: purged_snaps scrub ok 2024-04-15T17:38:34.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:33 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T17:38:34.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:33 smithi118 ceph-mon[33587]: osd.1 [v2:172.21.15.55:6810/710486852,v1:172.21.15.55:6811/710486852] boot 2024-04-15T17:38:34.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:33 smithi118 ceph-mon[33587]: osdmap e13: 2 total, 2 up, 2 in 2024-04-15T17:38:34.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:33 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T17:38:35.238 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:35 smithi092 ceph-mon[33096]: pgmap v65: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:35.239 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:35 smithi092 ceph-mon[33096]: Detected new or changed devices on smithi055 2024-04-15T17:38:35.239 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:35 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:35.239 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:35 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:35.239 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:35 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:38:35.239 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:35 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:38:35.239 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:35 smithi092 ceph-mon[33096]: Adjusting osd_memory_target on smithi055 to 8546M 2024-04-15T17:38:35.239 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:35 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:35.239 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:35 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:35.239 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:35 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:38:35.239 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:35 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:35.239 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:35 smithi092 ceph-mon[33096]: osdmap e14: 2 total, 2 up, 2 in 2024-04-15T17:38:35.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:35 smithi055 ceph-mon[29592]: pgmap v65: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:35.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:35 smithi055 ceph-mon[29592]: Detected new or changed devices on smithi055 2024-04-15T17:38:35.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:35 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:35.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:35 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:35.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:35 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:38:35.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:35 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:38:35.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:35 smithi055 ceph-mon[29592]: Adjusting osd_memory_target on smithi055 to 8546M 2024-04-15T17:38:35.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:35 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:35.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:35 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:35.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:35 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:38:35.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:35 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:35.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:35 smithi055 ceph-mon[29592]: osdmap e14: 2 total, 2 up, 2 in 2024-04-15T17:38:35.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:35 smithi118 ceph-mon[33587]: pgmap v65: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:35.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:35 smithi118 ceph-mon[33587]: Detected new or changed devices on smithi055 2024-04-15T17:38:35.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:35 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:35.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:35 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:35.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:35 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:38:35.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:35 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:38:35.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:35 smithi118 ceph-mon[33587]: Adjusting osd_memory_target on smithi055 to 8546M 2024-04-15T17:38:35.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:35 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:35.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:35 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:35.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:35 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:38:35.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:35 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:35.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:35 smithi118 ceph-mon[33587]: osdmap e14: 2 total, 2 up, 2 in 2024-04-15T17:38:36.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:36 smithi092 ceph-mon[33096]: from='client.24158 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi092:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:38:36.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:36 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T17:38:36.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:36 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T17:38:36.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:36 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:36.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:36 smithi118 ceph-mon[33587]: from='client.24158 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi092:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:38:36.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:36 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T17:38:36.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:36 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T17:38:36.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:36 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:36.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:36 smithi055 ceph-mon[29592]: from='client.24158 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi092:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:38:36.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:36 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T17:38:36.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:36 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T17:38:36.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:36 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:37.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:37 smithi092 ceph-mon[33096]: pgmap v67: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:37.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:37 smithi118 ceph-mon[33587]: pgmap v67: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:37.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:37 smithi055 ceph-mon[29592]: pgmap v67: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:39.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:39 smithi092 ceph-mon[33096]: pgmap v68: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:39.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:39 smithi092 ceph-mon[33096]: from='client.? 172.21.15.92:0/77094430' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "21fd878f-a998-4d35-a233-91271bb42d99"}]: dispatch 2024-04-15T17:38:39.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:39 smithi092 ceph-mon[33096]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "21fd878f-a998-4d35-a233-91271bb42d99"}]: dispatch 2024-04-15T17:38:39.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:39 smithi092 ceph-mon[33096]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "21fd878f-a998-4d35-a233-91271bb42d99"}]': finished 2024-04-15T17:38:39.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:39 smithi092 ceph-mon[33096]: osdmap e15: 3 total, 2 up, 3 in 2024-04-15T17:38:39.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:39 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T17:38:39.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:39 smithi092 ceph-mon[33096]: from='client.? 172.21.15.92:0/848363929' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T17:38:39.402 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:39 smithi118 ceph-mon[33587]: pgmap v68: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:39.402 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:39 smithi118 ceph-mon[33587]: from='client.? 172.21.15.92:0/77094430' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "21fd878f-a998-4d35-a233-91271bb42d99"}]: dispatch 2024-04-15T17:38:39.402 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:39 smithi118 ceph-mon[33587]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "21fd878f-a998-4d35-a233-91271bb42d99"}]: dispatch 2024-04-15T17:38:39.402 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:39 smithi118 ceph-mon[33587]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "21fd878f-a998-4d35-a233-91271bb42d99"}]': finished 2024-04-15T17:38:39.402 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:39 smithi118 ceph-mon[33587]: osdmap e15: 3 total, 2 up, 3 in 2024-04-15T17:38:39.403 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:39 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T17:38:39.403 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:39 smithi118 ceph-mon[33587]: from='client.? 172.21.15.92:0/848363929' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T17:38:39.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:39 smithi055 ceph-mon[29592]: pgmap v68: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:39.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:39 smithi055 ceph-mon[29592]: from='client.? 172.21.15.92:0/77094430' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "21fd878f-a998-4d35-a233-91271bb42d99"}]: dispatch 2024-04-15T17:38:39.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:39 smithi055 ceph-mon[29592]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "21fd878f-a998-4d35-a233-91271bb42d99"}]: dispatch 2024-04-15T17:38:39.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:39 smithi055 ceph-mon[29592]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "21fd878f-a998-4d35-a233-91271bb42d99"}]': finished 2024-04-15T17:38:39.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:39 smithi055 ceph-mon[29592]: osdmap e15: 3 total, 2 up, 3 in 2024-04-15T17:38:39.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:39 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T17:38:39.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:39 smithi055 ceph-mon[29592]: from='client.? 172.21.15.92:0/848363929' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T17:38:41.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:41 smithi092 ceph-mon[33096]: pgmap v70: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:41.427 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:41 smithi055 ceph-mon[29592]: pgmap v70: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:41.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:41 smithi118 ceph-mon[33587]: pgmap v70: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:43.411 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:43 smithi092 ceph-mon[33096]: pgmap v71: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:43.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:43 smithi118 ceph-mon[33587]: pgmap v71: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:43.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:43 smithi055 ceph-mon[29592]: pgmap v71: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:45.427 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:45 smithi092 ceph-mon[33096]: pgmap v72: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:45.427 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:45 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-15T17:38:45.427 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:45 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:45.427 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:45 smithi092 ceph-mon[33096]: Deploying daemon osd.2 on smithi092 2024-04-15T17:38:45.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:45 smithi118 ceph-mon[33587]: pgmap v72: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:45.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:45 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-15T17:38:45.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:45 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:45.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:45 smithi118 ceph-mon[33587]: Deploying daemon osd.2 on smithi092 2024-04-15T17:38:45.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:45 smithi055 ceph-mon[29592]: pgmap v72: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:45.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:45 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-15T17:38:45.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:45 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:45.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:45 smithi055 ceph-mon[29592]: Deploying daemon osd.2 on smithi092 2024-04-15T17:38:47.371 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:47 smithi092 ceph-mon[33096]: pgmap v73: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:47.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:47 smithi118 ceph-mon[33587]: pgmap v73: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:47.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:47 smithi055 ceph-mon[29592]: pgmap v73: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:49.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:49 smithi092 ceph-mon[33096]: pgmap v74: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:49.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:49 smithi118 ceph-mon[33587]: pgmap v74: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:49.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:49 smithi055 ceph-mon[29592]: pgmap v74: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:51.213 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:50 smithi092 ceph-mon[33096]: pgmap v75: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:51.214 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:50 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:51.214 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:50 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:51.214 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:50 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:38:51.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:50 smithi118 ceph-mon[33587]: pgmap v75: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:51.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:50 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:51.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:50 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:51.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:50 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:38:51.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:50 smithi055 ceph-mon[29592]: pgmap v75: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:51.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:50 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:51.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:50 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:51.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:50 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:38:53.026 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:52 smithi092 ceph-mon[33096]: pgmap v76: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:53.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:52 smithi055 ceph-mon[29592]: pgmap v76: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:53.326 INFO:teuthology.orchestra.run.smithi092.stdout:Created osd(s) 2 on host 'smithi092' 2024-04-15T17:38:53.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:52 smithi118 ceph-mon[33587]: pgmap v76: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:53.928 DEBUG:teuthology.orchestra.run.smithi092:osd.2> sudo journalctl -f -n 0 -u ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@osd.2.service 2024-04-15T17:38:53.930 INFO:tasks.cephadm:Deploying osd.3 on smithi092 with /dev/vg_nvme/lv_3... 2024-04-15T17:38:53.931 DEBUG:teuthology.orchestra.run.smithi092:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-04-15T17:38:54.162 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:54 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:54.162 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:54 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:54.162 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:54 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:54.162 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:54 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:38:54.162 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:54 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:54.162 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:54 smithi092 ceph-mon[33096]: from='osd.2 [v2:172.21.15.92:6800/11860028,v1:172.21.15.92:6801/11860028]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-15T17:38:54.162 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:54 smithi092 ceph-mon[33096]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-15T17:38:54.162 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:54 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:54.162 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:54 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:54.162 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:54 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:38:54.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:54 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:54.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:54 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:54.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:54 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:54.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:54 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:38:54.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:54 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:54.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:54 smithi118 ceph-mon[33587]: from='osd.2 [v2:172.21.15.92:6800/11860028,v1:172.21.15.92:6801/11860028]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-15T17:38:54.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:54 smithi118 ceph-mon[33587]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-15T17:38:54.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:54 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:54.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:54 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:54.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:54 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:38:54.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:54 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:54.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:54 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:54.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:54 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:54.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:54 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:38:54.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:54 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:54.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:54 smithi055 ceph-mon[29592]: from='osd.2 [v2:172.21.15.92:6800/11860028,v1:172.21.15.92:6801/11860028]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-15T17:38:54.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:54 smithi055 ceph-mon[29592]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-15T17:38:54.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:54 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:54.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:54 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:54.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:54 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:38:55.253 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:55 smithi092 ceph-mon[33096]: pgmap v77: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:55.253 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:55 smithi092 ceph-mon[33096]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-04-15T17:38:55.253 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:55 smithi092 ceph-mon[33096]: from='osd.2 [v2:172.21.15.92:6800/11860028,v1:172.21.15.92:6801/11860028]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi092", "root=default"]}]: dispatch 2024-04-15T17:38:55.253 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:55 smithi092 ceph-mon[33096]: osdmap e16: 3 total, 2 up, 3 in 2024-04-15T17:38:55.253 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:55 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T17:38:55.254 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:55 smithi092 ceph-mon[33096]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi092", "root=default"]}]: dispatch 2024-04-15T17:38:55.254 INFO:journalctl@ceph.osd.2.smithi092.stdout:Apr 15 17:38:55 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-2[37402]: 2024-04-15T17:38:55.030+0000 7f3eccd2e700 -1 osd.2 0 waiting for initial osdmap 2024-04-15T17:38:55.254 INFO:journalctl@ceph.osd.2.smithi092.stdout:Apr 15 17:38:55 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-2[37402]: 2024-04-15T17:38:55.033+0000 7f3ec8b21700 -1 osd.2 17 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-04-15T17:38:55.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:55 smithi118 ceph-mon[33587]: pgmap v77: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:55.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:55 smithi118 ceph-mon[33587]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-04-15T17:38:55.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:55 smithi118 ceph-mon[33587]: from='osd.2 [v2:172.21.15.92:6800/11860028,v1:172.21.15.92:6801/11860028]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi092", "root=default"]}]: dispatch 2024-04-15T17:38:55.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:55 smithi118 ceph-mon[33587]: osdmap e16: 3 total, 2 up, 3 in 2024-04-15T17:38:55.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:55 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T17:38:55.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:55 smithi118 ceph-mon[33587]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi092", "root=default"]}]: dispatch 2024-04-15T17:38:55.374 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:55 smithi055 ceph-mon[29592]: pgmap v77: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:55.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:55 smithi055 ceph-mon[29592]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-04-15T17:38:55.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:55 smithi055 ceph-mon[29592]: from='osd.2 [v2:172.21.15.92:6800/11860028,v1:172.21.15.92:6801/11860028]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi092", "root=default"]}]: dispatch 2024-04-15T17:38:55.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:55 smithi055 ceph-mon[29592]: osdmap e16: 3 total, 2 up, 3 in 2024-04-15T17:38:55.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:55 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T17:38:55.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:55 smithi055 ceph-mon[29592]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi092", "root=default"]}]: dispatch 2024-04-15T17:38:55.471 INFO:teuthology.orchestra.run.smithi092.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.b/config 2024-04-15T17:38:56.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:56 smithi092 ceph-mon[33096]: purged_snaps scrub starts 2024-04-15T17:38:56.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:56 smithi092 ceph-mon[33096]: purged_snaps scrub ok 2024-04-15T17:38:56.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:56 smithi092 ceph-mon[33096]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi092", "root=default"]}]': finished 2024-04-15T17:38:56.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:56 smithi092 ceph-mon[33096]: osdmap e17: 3 total, 2 up, 3 in 2024-04-15T17:38:56.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:56 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T17:38:56.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:56 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T17:38:56.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:56 smithi118 ceph-mon[33587]: purged_snaps scrub starts 2024-04-15T17:38:56.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:56 smithi118 ceph-mon[33587]: purged_snaps scrub ok 2024-04-15T17:38:56.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:56 smithi118 ceph-mon[33587]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi092", "root=default"]}]': finished 2024-04-15T17:38:56.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:56 smithi118 ceph-mon[33587]: osdmap e17: 3 total, 2 up, 3 in 2024-04-15T17:38:56.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:56 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T17:38:56.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:56 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T17:38:56.374 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:56 smithi055 ceph-mon[29592]: purged_snaps scrub starts 2024-04-15T17:38:56.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:56 smithi055 ceph-mon[29592]: purged_snaps scrub ok 2024-04-15T17:38:56.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:56 smithi055 ceph-mon[29592]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi092", "root=default"]}]': finished 2024-04-15T17:38:56.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:56 smithi055 ceph-mon[29592]: osdmap e17: 3 total, 2 up, 3 in 2024-04-15T17:38:56.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:56 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T17:38:56.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:56 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T17:38:57.239 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:57 smithi092 ceph-mon[33096]: pgmap v80: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:57.239 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:57 smithi092 ceph-mon[33096]: osd.2 [v2:172.21.15.92:6800/11860028,v1:172.21.15.92:6801/11860028] boot 2024-04-15T17:38:57.239 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:57 smithi092 ceph-mon[33096]: osdmap e18: 3 total, 3 up, 3 in 2024-04-15T17:38:57.240 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:57 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T17:38:57.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:57 smithi118 ceph-mon[33587]: pgmap v80: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:57.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:57 smithi118 ceph-mon[33587]: osd.2 [v2:172.21.15.92:6800/11860028,v1:172.21.15.92:6801/11860028] boot 2024-04-15T17:38:57.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:57 smithi118 ceph-mon[33587]: osdmap e18: 3 total, 3 up, 3 in 2024-04-15T17:38:57.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:57 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T17:38:57.374 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:57 smithi055 ceph-mon[29592]: pgmap v80: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-04-15T17:38:57.374 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:57 smithi055 ceph-mon[29592]: osd.2 [v2:172.21.15.92:6800/11860028,v1:172.21.15.92:6801/11860028] boot 2024-04-15T17:38:57.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:57 smithi055 ceph-mon[29592]: osdmap e18: 3 total, 3 up, 3 in 2024-04-15T17:38:57.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:57 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T17:38:58.075 INFO:teuthology.orchestra.run.smithi092.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-04-15T17:38:58.076 INFO:teuthology.orchestra.run.smithi092.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-04-15T17:38:58.076 INFO:teuthology.orchestra.run.smithi092.stderr: stderr: 10+0 records in 2024-04-15T17:38:58.076 INFO:teuthology.orchestra.run.smithi092.stderr:10+0 records out 2024-04-15T17:38:58.076 INFO:teuthology.orchestra.run.smithi092.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.0136002 s, 771 MB/s 2024-04-15T17:38:58.076 INFO:teuthology.orchestra.run.smithi092.stderr:--> Zapping successful for: 2024-04-15T17:38:58.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:58 smithi118 ceph-mon[33587]: osdmap e19: 3 total, 3 up, 3 in 2024-04-15T17:38:58.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:58 smithi118 ceph-mon[33587]: Detected new or changed devices on smithi092 2024-04-15T17:38:58.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:58 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:58.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:58 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:58.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:58 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:38:58.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:58 smithi118 ceph-mon[33587]: Adjusting osd_memory_target on smithi092 to 17088M 2024-04-15T17:38:58.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:58 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:58.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:58 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:58.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:58 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:38:58.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:58 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:58.351 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:58 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-04-15T17:38:58.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:58 smithi055 ceph-mon[29592]: osdmap e19: 3 total, 3 up, 3 in 2024-04-15T17:38:58.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:58 smithi055 ceph-mon[29592]: Detected new or changed devices on smithi092 2024-04-15T17:38:58.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:58 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:58.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:58 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:58.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:58 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:38:58.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:58 smithi055 ceph-mon[29592]: Adjusting osd_memory_target on smithi092 to 17088M 2024-04-15T17:38:58.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:58 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:58.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:58 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:58.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:58 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:38:58.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:58 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:58.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:58 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-04-15T17:38:58.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:58 smithi092 ceph-mon[33096]: osdmap e19: 3 total, 3 up, 3 in 2024-04-15T17:38:58.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:58 smithi092 ceph-mon[33096]: Detected new or changed devices on smithi092 2024-04-15T17:38:58.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:58 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:58.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:58 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:58.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:58 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:38:58.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:58 smithi092 ceph-mon[33096]: Adjusting osd_memory_target on smithi092 to 17088M 2024-04-15T17:38:58.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:58 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:58.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:58 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:38:58.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:58 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:38:58.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:58 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:38:58.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:58 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-04-15T17:38:58.648 DEBUG:teuthology.orchestra.run.smithi092:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph orch daemon add osd smithi092:vg_nvme/lv_3 2024-04-15T17:38:58.888 INFO:teuthology.orchestra.run.smithi092.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.b/config 2024-04-15T17:38:59.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:59 smithi055 ceph-mon[29592]: pgmap v83: 0 pgs: ; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:38:59.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:59 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-04-15T17:38:59.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:59 smithi055 ceph-mon[29592]: osdmap e20: 3 total, 3 up, 3 in 2024-04-15T17:38:59.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:59 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-04-15T17:38:59.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:59 smithi092 ceph-mon[33096]: pgmap v83: 0 pgs: ; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:38:59.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:59 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-04-15T17:38:59.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:59 smithi092 ceph-mon[33096]: osdmap e20: 3 total, 3 up, 3 in 2024-04-15T17:38:59.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:38:59 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-04-15T17:38:59.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:59 smithi118 ceph-mon[33587]: pgmap v83: 0 pgs: ; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:38:59.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:59 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-04-15T17:38:59.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:59 smithi118 ceph-mon[33587]: osdmap e20: 3 total, 3 up, 3 in 2024-04-15T17:38:59.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:38:59 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-04-15T17:39:00.091 INFO:journalctl@ceph.osd.2.smithi092.stdout:Apr 15 17:38:59 smithi092 sudo[41442]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-04-15T17:39:00.091 INFO:journalctl@ceph.osd.2.smithi092.stdout:Apr 15 17:38:59 smithi092 sudo[41442]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-15T17:39:00.091 INFO:journalctl@ceph.osd.2.smithi092.stdout:Apr 15 17:38:59 smithi092 sudo[41442]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-15T17:39:00.091 INFO:journalctl@ceph.osd.2.smithi092.stdout:Apr 15 17:38:59 smithi092 sudo[41442]: pam_unix(sudo:session): session closed for user root 2024-04-15T17:39:00.091 INFO:journalctl@ceph.osd.2.smithi092.stdout:Apr 15 17:38:59 smithi092 sudo[41445]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-04-15T17:39:00.091 INFO:journalctl@ceph.osd.2.smithi092.stdout:Apr 15 17:38:59 smithi092 sudo[41445]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-15T17:39:00.092 INFO:journalctl@ceph.osd.2.smithi092.stdout:Apr 15 17:38:59 smithi092 sudo[41445]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-15T17:39:00.092 INFO:journalctl@ceph.osd.2.smithi092.stdout:Apr 15 17:38:59 smithi092 sudo[41445]: pam_unix(sudo:session): session closed for user root 2024-04-15T17:39:00.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:59 smithi055 sudo[52963]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-04-15T17:39:00.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:59 smithi055 sudo[52963]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-15T17:39:00.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:59 smithi055 sudo[52963]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-15T17:39:00.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:38:59 smithi055 sudo[52963]: pam_unix(sudo:session): session closed for user root 2024-04-15T17:39:00.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:00 smithi055 sudo[52966]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-04-15T17:39:00.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:00 smithi055 sudo[52966]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-15T17:39:00.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:00 smithi055 sudo[52966]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-15T17:39:00.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:00 smithi055 sudo[52966]: pam_unix(sudo:session): session closed for user root 2024-04-15T17:39:00.125 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:38:59 smithi055 sudo[52951]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-04-15T17:39:00.126 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:38:59 smithi055 sudo[52951]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-15T17:39:00.126 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:38:59 smithi055 sudo[52951]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-15T17:39:00.126 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:38:59 smithi055 sudo[52951]: pam_unix(sudo:session): session closed for user root 2024-04-15T17:39:00.126 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:38:59 smithi055 sudo[52954]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-04-15T17:39:00.126 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:38:59 smithi055 sudo[52954]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-15T17:39:00.126 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:38:59 smithi055 sudo[52954]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-15T17:39:00.126 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:38:59 smithi055 sudo[52954]: pam_unix(sudo:session): session closed for user root 2024-04-15T17:39:00.126 INFO:journalctl@ceph.osd.1.smithi055.stdout:Apr 15 17:38:59 smithi055 sudo[52957]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-04-15T17:39:00.126 INFO:journalctl@ceph.osd.1.smithi055.stdout:Apr 15 17:38:59 smithi055 sudo[52957]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-15T17:39:00.126 INFO:journalctl@ceph.osd.1.smithi055.stdout:Apr 15 17:38:59 smithi055 sudo[52957]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-15T17:39:00.127 INFO:journalctl@ceph.osd.1.smithi055.stdout:Apr 15 17:38:59 smithi055 sudo[52957]: pam_unix(sudo:session): session closed for user root 2024-04-15T17:39:00.127 INFO:journalctl@ceph.osd.1.smithi055.stdout:Apr 15 17:38:59 smithi055 sudo[52960]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-04-15T17:39:00.127 INFO:journalctl@ceph.osd.1.smithi055.stdout:Apr 15 17:38:59 smithi055 sudo[52960]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-15T17:39:00.127 INFO:journalctl@ceph.osd.1.smithi055.stdout:Apr 15 17:38:59 smithi055 sudo[52960]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-15T17:39:00.127 INFO:journalctl@ceph.osd.1.smithi055.stdout:Apr 15 17:38:59 smithi055 sudo[52960]: pam_unix(sudo:session): session closed for user root 2024-04-15T17:39:00.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 sudo[35573]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-04-15T17:39:00.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 sudo[35573]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-15T17:39:00.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 sudo[35573]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-15T17:39:00.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 sudo[35573]: pam_unix(sudo:session): session closed for user root 2024-04-15T17:39:00.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 sudo[35576]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-04-15T17:39:00.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 sudo[35576]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-15T17:39:00.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 sudo[35576]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-15T17:39:00.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 sudo[35576]: pam_unix(sudo:session): session closed for user root 2024-04-15T17:39:00.355 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 sudo[41448]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-04-15T17:39:00.356 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 sudo[41448]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-15T17:39:00.356 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 sudo[41448]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-15T17:39:00.356 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 sudo[41448]: pam_unix(sudo:session): session closed for user root 2024-04-15T17:39:00.356 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 sudo[41453]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-04-15T17:39:00.356 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 sudo[41453]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-15T17:39:00.356 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 sudo[41453]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-15T17:39:00.356 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 sudo[41453]: pam_unix(sudo:session): session closed for user root 2024-04-15T17:39:00.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-04-15T17:39:00.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 ceph-mon[33096]: osdmap e21: 3 total, 3 up, 3 in 2024-04-15T17:39:00.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:00.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:00.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 ceph-mon[33096]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T17:39:00.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 ceph-mon[33096]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T17:39:00.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T17:39:00.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:39:00.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T17:39:00.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T17:39:00.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 ceph-mon[33096]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T17:39:00.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:39:00.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T17:39:00.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 ceph-mon[33096]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T17:39:00.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:00.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 ceph-mon[33096]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T17:39:00.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T17:39:00.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:39:00.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T17:39:00.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:00 smithi092 ceph-mon[33096]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T17:39:00.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-04-15T17:39:00.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 ceph-mon[33587]: osdmap e21: 3 total, 3 up, 3 in 2024-04-15T17:39:00.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:00.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:00.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 ceph-mon[33587]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T17:39:00.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 ceph-mon[33587]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T17:39:00.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T17:39:00.852 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:39:00.852 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T17:39:00.852 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T17:39:00.852 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 ceph-mon[33587]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T17:39:00.852 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:39:00.852 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T17:39:00.852 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 ceph-mon[33587]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T17:39:00.852 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:00.852 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 ceph-mon[33587]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T17:39:00.852 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T17:39:00.852 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:39:00.852 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T17:39:00.852 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:00 smithi118 ceph-mon[33587]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T17:39:00.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:00 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-04-15T17:39:00.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:00 smithi055 ceph-mon[29592]: osdmap e21: 3 total, 3 up, 3 in 2024-04-15T17:39:00.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:00 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:00.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:00 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:00.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:00 smithi055 ceph-mon[29592]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T17:39:00.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:00 smithi055 ceph-mon[29592]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T17:39:00.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:00 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T17:39:00.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:00 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:39:00.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:00 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T17:39:00.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:00 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T17:39:00.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:00 smithi055 ceph-mon[29592]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T17:39:00.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:00 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:39:00.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:00 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T17:39:00.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:00 smithi055 ceph-mon[29592]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T17:39:00.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:00 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:00.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:00 smithi055 ceph-mon[29592]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T17:39:00.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:00 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T17:39:00.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:00 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:39:00.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:00 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T17:39:00.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:00 smithi055 ceph-mon[29592]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T17:39:01.459 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:01 smithi092 ceph-mon[33096]: pgmap v86: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:01.459 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:01 smithi092 ceph-mon[33096]: osdmap e22: 3 total, 3 up, 3 in 2024-04-15T17:39:01.459 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:01 smithi092 ceph-mon[33096]: mgrmap e15: a(active, since 2m), standbys: b 2024-04-15T17:39:01.459 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:01 smithi092 ceph-mon[33096]: from='client.24194 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi092:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:39:01.459 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:01 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T17:39:01.459 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:01 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T17:39:01.459 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:01 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:01.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:01 smithi118 ceph-mon[33587]: pgmap v86: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:01.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:01 smithi118 ceph-mon[33587]: osdmap e22: 3 total, 3 up, 3 in 2024-04-15T17:39:01.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:01 smithi118 ceph-mon[33587]: mgrmap e15: a(active, since 2m), standbys: b 2024-04-15T17:39:01.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:01 smithi118 ceph-mon[33587]: from='client.24194 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi092:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:39:01.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:01 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T17:39:01.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:01 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T17:39:01.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:01 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:01.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:01 smithi055 ceph-mon[29592]: pgmap v86: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:01.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:01 smithi055 ceph-mon[29592]: osdmap e22: 3 total, 3 up, 3 in 2024-04-15T17:39:01.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:01 smithi055 ceph-mon[29592]: mgrmap e15: a(active, since 2m), standbys: b 2024-04-15T17:39:01.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:01 smithi055 ceph-mon[29592]: from='client.24194 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi092:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:39:01.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:01 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T17:39:01.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:01 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T17:39:01.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:01 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:03.645 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:03 smithi092 ceph-mon[33096]: pgmap v88: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:03.646 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:03 smithi092 ceph-mon[33096]: from='client.? 172.21.15.92:0/669947349' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0adbb14f-3c10-4c5f-86a3-c8403d1fd06d"}]: dispatch 2024-04-15T17:39:03.646 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:03 smithi092 ceph-mon[33096]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0adbb14f-3c10-4c5f-86a3-c8403d1fd06d"}]: dispatch 2024-04-15T17:39:03.646 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:03 smithi092 ceph-mon[33096]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0adbb14f-3c10-4c5f-86a3-c8403d1fd06d"}]': finished 2024-04-15T17:39:03.646 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:03 smithi092 ceph-mon[33096]: osdmap e23: 4 total, 3 up, 4 in 2024-04-15T17:39:03.646 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:03 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T17:39:03.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:03 smithi118 ceph-mon[33587]: pgmap v88: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:03.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:03 smithi118 ceph-mon[33587]: from='client.? 172.21.15.92:0/669947349' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0adbb14f-3c10-4c5f-86a3-c8403d1fd06d"}]: dispatch 2024-04-15T17:39:03.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:03 smithi118 ceph-mon[33587]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0adbb14f-3c10-4c5f-86a3-c8403d1fd06d"}]: dispatch 2024-04-15T17:39:03.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:03 smithi118 ceph-mon[33587]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0adbb14f-3c10-4c5f-86a3-c8403d1fd06d"}]': finished 2024-04-15T17:39:03.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:03 smithi118 ceph-mon[33587]: osdmap e23: 4 total, 3 up, 4 in 2024-04-15T17:39:03.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:03 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T17:39:03.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:03 smithi055 ceph-mon[29592]: pgmap v88: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:03.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:03 smithi055 ceph-mon[29592]: from='client.? 172.21.15.92:0/669947349' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0adbb14f-3c10-4c5f-86a3-c8403d1fd06d"}]: dispatch 2024-04-15T17:39:03.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:03 smithi055 ceph-mon[29592]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "0adbb14f-3c10-4c5f-86a3-c8403d1fd06d"}]: dispatch 2024-04-15T17:39:03.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:03 smithi055 ceph-mon[29592]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0adbb14f-3c10-4c5f-86a3-c8403d1fd06d"}]': finished 2024-04-15T17:39:03.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:03 smithi055 ceph-mon[29592]: osdmap e23: 4 total, 3 up, 4 in 2024-04-15T17:39:03.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:03 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T17:39:04.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:04 smithi118 ceph-mon[33587]: from='client.? 172.21.15.92:0/2896510965' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T17:39:04.854 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:04 smithi092 ceph-mon[33096]: from='client.? 172.21.15.92:0/2896510965' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T17:39:04.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:04 smithi055 ceph-mon[29592]: from='client.? 172.21.15.92:0/2896510965' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T17:39:05.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:05 smithi118 ceph-mon[33587]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:05.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:05 smithi055 ceph-mon[29592]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:05.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:05 smithi092 ceph-mon[33096]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:07.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:07 smithi092 ceph-mon[33096]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:07.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:07 smithi118 ceph-mon[33587]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:07.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:07 smithi055 ceph-mon[29592]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:09.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:09 smithi092 ceph-mon[33096]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:09.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:09 smithi118 ceph-mon[33587]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:09.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:09 smithi055 ceph-mon[29592]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:10.780 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:10 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-15T17:39:10.780 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:10 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:10.780 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:10 smithi092 ceph-mon[33096]: Deploying daemon osd.3 on smithi092 2024-04-15T17:39:10.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:10 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-15T17:39:10.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:10 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:10.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:10 smithi118 ceph-mon[33587]: Deploying daemon osd.3 on smithi092 2024-04-15T17:39:10.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:10 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-15T17:39:10.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:10 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:10.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:10 smithi055 ceph-mon[29592]: Deploying daemon osd.3 on smithi092 2024-04-15T17:39:11.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:11 smithi092 ceph-mon[33096]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:11.775 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:11 smithi055 ceph-mon[29592]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:11.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:11 smithi118 ceph-mon[33587]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:13.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:13 smithi092 ceph-mon[33096]: pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:13.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:13 smithi118 ceph-mon[33587]: pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:13.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:13 smithi055 ceph-mon[29592]: pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:15.699 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:15 smithi092 ceph-mon[33096]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:15.699 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:15 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:15.699 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:15 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:15.700 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:15 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:39:15.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:15 smithi118 ceph-mon[33587]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:15.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:15.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:15.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:15 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:39:15.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:15 smithi055 ceph-mon[29592]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:15.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:15 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:15.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:15 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:15.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:15 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:39:17.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:17 smithi118 ceph-mon[33587]: pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:17.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:17 smithi055 ceph-mon[29592]: pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:17.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:17 smithi092 ceph-mon[33096]: pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:18.280 INFO:teuthology.orchestra.run.smithi092.stdout:Created osd(s) 3 on host 'smithi092' 2024-04-15T17:39:18.588 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:18 smithi092 ceph-mon[33096]: from='osd.3 [v2:172.21.15.92:6808/3054594230,v1:172.21.15.92:6809/3054594230]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-15T17:39:18.588 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:18 smithi092 ceph-mon[33096]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-15T17:39:18.588 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:18 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:18.589 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:18 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:18.589 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:18 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:18.589 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:18 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:18.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:18 smithi118 ceph-mon[33587]: from='osd.3 [v2:172.21.15.92:6808/3054594230,v1:172.21.15.92:6809/3054594230]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-15T17:39:18.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:18 smithi118 ceph-mon[33587]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-15T17:39:18.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:18 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:18.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:18 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:18.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:18 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:18.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:18 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:18.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:18 smithi055 ceph-mon[29592]: from='osd.3 [v2:172.21.15.92:6808/3054594230,v1:172.21.15.92:6809/3054594230]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-15T17:39:18.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:18 smithi055 ceph-mon[29592]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-15T17:39:18.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:18 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:18.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:18 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:18.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:18 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:18.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:18 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:18.882 DEBUG:teuthology.orchestra.run.smithi092:osd.3> sudo journalctl -f -n 0 -u ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@osd.3.service 2024-04-15T17:39:18.884 INFO:tasks.cephadm:Deploying osd.4 on smithi118 with /dev/vg_nvme/lv_4... 2024-04-15T17:39:18.885 DEBUG:teuthology.orchestra.run.smithi118:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-04-15T17:39:19.132 INFO:teuthology.orchestra.run.smithi118.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.c/config 2024-04-15T17:39:19.526 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:19 smithi118 ceph-mon[33587]: pgmap v97: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:19.526 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:19 smithi118 ceph-mon[33587]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-04-15T17:39:19.526 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:19 smithi118 ceph-mon[33587]: osdmap e24: 4 total, 3 up, 4 in 2024-04-15T17:39:19.526 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:19 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T17:39:19.526 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:19 smithi118 ceph-mon[33587]: from='osd.3 [v2:172.21.15.92:6808/3054594230,v1:172.21.15.92:6809/3054594230]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi092", "root=default"]}]: dispatch 2024-04-15T17:39:19.526 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:19 smithi118 ceph-mon[33587]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi092", "root=default"]}]: dispatch 2024-04-15T17:39:19.747 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:19 smithi092 ceph-mon[33096]: pgmap v97: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:19.747 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:19 smithi092 ceph-mon[33096]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-04-15T17:39:19.747 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:19 smithi092 ceph-mon[33096]: osdmap e24: 4 total, 3 up, 4 in 2024-04-15T17:39:19.747 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:19 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T17:39:19.747 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:19 smithi092 ceph-mon[33096]: from='osd.3 [v2:172.21.15.92:6808/3054594230,v1:172.21.15.92:6809/3054594230]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi092", "root=default"]}]: dispatch 2024-04-15T17:39:19.748 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:19 smithi092 ceph-mon[33096]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi092", "root=default"]}]: dispatch 2024-04-15T17:39:19.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:19 smithi055 ceph-mon[29592]: pgmap v97: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:19.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:19 smithi055 ceph-mon[29592]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-04-15T17:39:19.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:19 smithi055 ceph-mon[29592]: osdmap e24: 4 total, 3 up, 4 in 2024-04-15T17:39:19.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:19 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T17:39:19.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:19 smithi055 ceph-mon[29592]: from='osd.3 [v2:172.21.15.92:6808/3054594230,v1:172.21.15.92:6809/3054594230]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi092", "root=default"]}]: dispatch 2024-04-15T17:39:19.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:19 smithi055 ceph-mon[29592]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi092", "root=default"]}]: dispatch 2024-04-15T17:39:20.133 INFO:journalctl@ceph.osd.3.smithi092.stdout:Apr 15 17:39:19 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-3[43381]: 2024-04-15T17:39:19.882+0000 7ff60fddf700 -1 osd.3 0 waiting for initial osdmap 2024-04-15T17:39:20.133 INFO:journalctl@ceph.osd.3.smithi092.stdout:Apr 15 17:39:19 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-3[43381]: 2024-04-15T17:39:19.886+0000 7ff607bca700 -1 osd.3 25 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-04-15T17:39:20.744 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:20 smithi092 ceph-mon[33096]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi092", "root=default"]}]': finished 2024-04-15T17:39:20.744 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:20 smithi092 ceph-mon[33096]: osdmap e25: 4 total, 3 up, 4 in 2024-04-15T17:39:20.744 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:20 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T17:39:20.744 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:20 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T17:39:20.744 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:20 smithi092 ceph-mon[33096]: from='osd.3 ' entity='osd.3' 2024-04-15T17:39:20.745 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:20 smithi092 ceph-mon[33096]: osd.3 [v2:172.21.15.92:6808/3054594230,v1:172.21.15.92:6809/3054594230] boot 2024-04-15T17:39:20.745 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:20 smithi092 ceph-mon[33096]: osdmap e26: 4 total, 4 up, 4 in 2024-04-15T17:39:20.745 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:20 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T17:39:20.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:20 smithi118 ceph-mon[33587]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi092", "root=default"]}]': finished 2024-04-15T17:39:20.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:20 smithi118 ceph-mon[33587]: osdmap e25: 4 total, 3 up, 4 in 2024-04-15T17:39:20.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:20 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T17:39:20.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:20 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T17:39:20.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:20 smithi118 ceph-mon[33587]: from='osd.3 ' entity='osd.3' 2024-04-15T17:39:20.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:20 smithi118 ceph-mon[33587]: osd.3 [v2:172.21.15.92:6808/3054594230,v1:172.21.15.92:6809/3054594230] boot 2024-04-15T17:39:20.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:20 smithi118 ceph-mon[33587]: osdmap e26: 4 total, 4 up, 4 in 2024-04-15T17:39:20.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:20 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T17:39:20.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:20 smithi055 ceph-mon[29592]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi092", "root=default"]}]': finished 2024-04-15T17:39:20.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:20 smithi055 ceph-mon[29592]: osdmap e25: 4 total, 3 up, 4 in 2024-04-15T17:39:20.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:20 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T17:39:20.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:20 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T17:39:20.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:20 smithi055 ceph-mon[29592]: from='osd.3 ' entity='osd.3' 2024-04-15T17:39:20.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:20 smithi055 ceph-mon[29592]: osd.3 [v2:172.21.15.92:6808/3054594230,v1:172.21.15.92:6809/3054594230] boot 2024-04-15T17:39:20.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:20 smithi055 ceph-mon[29592]: osdmap e26: 4 total, 4 up, 4 in 2024-04-15T17:39:20.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:20 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T17:39:20.917 INFO:teuthology.orchestra.run.smithi118.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-04-15T17:39:20.917 INFO:teuthology.orchestra.run.smithi118.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-04-15T17:39:20.917 INFO:teuthology.orchestra.run.smithi118.stderr: stderr: 10+0 records in 2024-04-15T17:39:20.917 INFO:teuthology.orchestra.run.smithi118.stderr:10+0 records out 2024-04-15T17:39:20.918 INFO:teuthology.orchestra.run.smithi118.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.00846107 s, 1.2 GB/s 2024-04-15T17:39:20.918 INFO:teuthology.orchestra.run.smithi118.stderr:--> Zapping successful for: 2024-04-15T17:39:21.498 DEBUG:teuthology.orchestra.run.smithi118:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph orch daemon add osd smithi118:vg_nvme/lv_4 2024-04-15T17:39:21.509 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:21 smithi118 ceph-mon[33587]: purged_snaps scrub starts 2024-04-15T17:39:21.509 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:21 smithi118 ceph-mon[33587]: purged_snaps scrub ok 2024-04-15T17:39:21.509 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:21 smithi118 ceph-mon[33587]: pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:21.509 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:21 smithi118 ceph-mon[33587]: osdmap e27: 4 total, 4 up, 4 in 2024-04-15T17:39:21.722 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:21 smithi092 ceph-mon[33096]: purged_snaps scrub starts 2024-04-15T17:39:21.722 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:21 smithi092 ceph-mon[33096]: purged_snaps scrub ok 2024-04-15T17:39:21.723 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:21 smithi092 ceph-mon[33096]: pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:21.723 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:21 smithi092 ceph-mon[33096]: osdmap e27: 4 total, 4 up, 4 in 2024-04-15T17:39:21.740 INFO:teuthology.orchestra.run.smithi118.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.c/config 2024-04-15T17:39:21.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:21 smithi055 ceph-mon[29592]: purged_snaps scrub starts 2024-04-15T17:39:21.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:21 smithi055 ceph-mon[29592]: purged_snaps scrub ok 2024-04-15T17:39:21.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:21 smithi055 ceph-mon[29592]: pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 268 GiB / 268 GiB avail 2024-04-15T17:39:21.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:21 smithi055 ceph-mon[29592]: osdmap e27: 4 total, 4 up, 4 in 2024-04-15T17:39:23.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:23 smithi118 ceph-mon[33587]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:39:23.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:23 smithi118 ceph-mon[33587]: Detected new or changed devices on smithi092 2024-04-15T17:39:23.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:23 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:23.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:23 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:23.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:23 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:39:23.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:23 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:39:23.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:23 smithi118 ceph-mon[33587]: Adjusting osd_memory_target on smithi092 to 8544M 2024-04-15T17:39:23.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:23 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:23.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:23 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:23.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:23 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:39:23.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:23 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:23.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:23 smithi118 ceph-mon[33587]: osdmap e28: 4 total, 4 up, 4 in 2024-04-15T17:39:23.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:23 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:39:23.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:23 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:23.852 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:23 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:39:23.852 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:23 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:23.852 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:23 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T17:39:23.852 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:23 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T17:39:23.852 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:23 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:23.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:23 smithi055 ceph-mon[29592]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:39:23.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:23 smithi055 ceph-mon[29592]: Detected new or changed devices on smithi092 2024-04-15T17:39:23.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:23 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:23.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:23 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:23.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:23 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:39:23.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:23 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:39:23.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:23 smithi055 ceph-mon[29592]: Adjusting osd_memory_target on smithi092 to 8544M 2024-04-15T17:39:23.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:23 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:23.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:23 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:23.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:23 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:39:23.877 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:23 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:23.877 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:23 smithi055 ceph-mon[29592]: osdmap e28: 4 total, 4 up, 4 in 2024-04-15T17:39:23.877 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:23 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:39:23.877 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:23 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:23.877 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:23 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:39:23.877 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:23 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:23.877 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:23 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T17:39:23.877 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:23 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T17:39:23.877 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:23 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:23.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:23 smithi092 ceph-mon[33096]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:39:23.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:23 smithi092 ceph-mon[33096]: Detected new or changed devices on smithi092 2024-04-15T17:39:23.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:23 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:23.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:23 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:23.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:23 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:39:23.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:23 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:39:23.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:23 smithi092 ceph-mon[33096]: Adjusting osd_memory_target on smithi092 to 8544M 2024-04-15T17:39:23.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:23 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:23.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:23 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:23.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:23 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:39:23.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:23 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:23.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:23 smithi092 ceph-mon[33096]: osdmap e28: 4 total, 4 up, 4 in 2024-04-15T17:39:23.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:23 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:39:23.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:23 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:23.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:23 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:39:23.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:23 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:23.885 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:23 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T17:39:23.885 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:23 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T17:39:23.885 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:23 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:24.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:24 smithi118 ceph-mon[33587]: from='client.24169 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi118:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:39:24.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:24 smithi118 ceph-mon[33587]: osdmap e29: 4 total, 4 up, 4 in 2024-04-15T17:39:24.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:24 smithi055 ceph-mon[29592]: from='client.24169 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi118:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:39:24.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:24 smithi055 ceph-mon[29592]: osdmap e29: 4 total, 4 up, 4 in 2024-04-15T17:39:24.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:24 smithi092 ceph-mon[33096]: from='client.24169 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi118:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:39:24.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:24 smithi092 ceph-mon[33096]: osdmap e29: 4 total, 4 up, 4 in 2024-04-15T17:39:25.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:25 smithi118 ceph-mon[33587]: pgmap v106: 1 pgs: 1 remapped+peering; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:39:25.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:25 smithi118 ceph-mon[33587]: osdmap e30: 4 total, 4 up, 4 in 2024-04-15T17:39:25.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:25 smithi092 ceph-mon[33096]: pgmap v106: 1 pgs: 1 remapped+peering; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:39:25.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:25 smithi092 ceph-mon[33096]: osdmap e30: 4 total, 4 up, 4 in 2024-04-15T17:39:25.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:25 smithi055 ceph-mon[29592]: pgmap v106: 1 pgs: 1 remapped+peering; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:39:25.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:25 smithi055 ceph-mon[29592]: osdmap e30: 4 total, 4 up, 4 in 2024-04-15T17:39:26.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:26 smithi118 ceph-mon[33587]: from='client.? 172.21.15.118:0/2357593361' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9e7e2276-3cd7-4e5d-b924-05cced71f94c"}]: dispatch 2024-04-15T17:39:26.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:26 smithi118 ceph-mon[33587]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9e7e2276-3cd7-4e5d-b924-05cced71f94c"}]: dispatch 2024-04-15T17:39:26.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:26 smithi118 ceph-mon[33587]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9e7e2276-3cd7-4e5d-b924-05cced71f94c"}]': finished 2024-04-15T17:39:26.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:26 smithi118 ceph-mon[33587]: osdmap e31: 5 total, 4 up, 5 in 2024-04-15T17:39:26.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:26 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T17:39:26.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:26 smithi055 ceph-mon[29592]: from='client.? 172.21.15.118:0/2357593361' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9e7e2276-3cd7-4e5d-b924-05cced71f94c"}]: dispatch 2024-04-15T17:39:26.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:26 smithi055 ceph-mon[29592]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9e7e2276-3cd7-4e5d-b924-05cced71f94c"}]: dispatch 2024-04-15T17:39:26.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:26 smithi055 ceph-mon[29592]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9e7e2276-3cd7-4e5d-b924-05cced71f94c"}]': finished 2024-04-15T17:39:26.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:26 smithi055 ceph-mon[29592]: osdmap e31: 5 total, 4 up, 5 in 2024-04-15T17:39:26.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:26 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T17:39:26.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:26 smithi092 ceph-mon[33096]: from='client.? 172.21.15.118:0/2357593361' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9e7e2276-3cd7-4e5d-b924-05cced71f94c"}]: dispatch 2024-04-15T17:39:26.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:26 smithi092 ceph-mon[33096]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9e7e2276-3cd7-4e5d-b924-05cced71f94c"}]: dispatch 2024-04-15T17:39:26.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:26 smithi092 ceph-mon[33096]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9e7e2276-3cd7-4e5d-b924-05cced71f94c"}]': finished 2024-04-15T17:39:26.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:26 smithi092 ceph-mon[33096]: osdmap e31: 5 total, 4 up, 5 in 2024-04-15T17:39:26.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:26 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T17:39:27.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:27 smithi118 ceph-mon[33587]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail; 133 KiB/s, 0 objects/s recovering 2024-04-15T17:39:27.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:27 smithi118 ceph-mon[33587]: from='client.? 172.21.15.118:0/312120990' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T17:39:27.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:27 smithi055 ceph-mon[29592]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail; 133 KiB/s, 0 objects/s recovering 2024-04-15T17:39:27.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:27 smithi055 ceph-mon[29592]: from='client.? 172.21.15.118:0/312120990' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T17:39:27.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:27 smithi092 ceph-mon[33096]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail; 133 KiB/s, 0 objects/s recovering 2024-04-15T17:39:27.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:27 smithi092 ceph-mon[33096]: from='client.? 172.21.15.118:0/312120990' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T17:39:29.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:29 smithi118 ceph-mon[33587]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail; 108 KiB/s, 0 objects/s recovering 2024-04-15T17:39:29.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:29 smithi055 ceph-mon[29592]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail; 108 KiB/s, 0 objects/s recovering 2024-04-15T17:39:29.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:29 smithi092 ceph-mon[33096]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail; 108 KiB/s, 0 objects/s recovering 2024-04-15T17:39:31.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:31 smithi118 ceph-mon[33587]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 91 KiB/s, 0 objects/s recovering 2024-04-15T17:39:31.874 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:31 smithi055 ceph-mon[29592]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 91 KiB/s, 0 objects/s recovering 2024-04-15T17:39:31.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:31 smithi092 ceph-mon[33096]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 91 KiB/s, 0 objects/s recovering 2024-04-15T17:39:33.716 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:33 smithi118 ceph-mon[33587]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-04-15T17:39:33.716 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:33 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-04-15T17:39:33.717 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:33 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:33.717 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:33 smithi118 ceph-mon[33587]: Deploying daemon osd.4 on smithi118 2024-04-15T17:39:33.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:33 smithi055 ceph-mon[29592]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-04-15T17:39:33.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:33 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-04-15T17:39:33.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:33 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:33.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:33 smithi055 ceph-mon[29592]: Deploying daemon osd.4 on smithi118 2024-04-15T17:39:33.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:33 smithi092 ceph-mon[33096]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-04-15T17:39:33.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:33 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-04-15T17:39:33.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:33 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:33.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:33 smithi092 ceph-mon[33096]: Deploying daemon osd.4 on smithi118 2024-04-15T17:39:35.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:35 smithi118 ceph-mon[33587]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-04-15T17:39:35.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:35 smithi055 ceph-mon[29592]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-04-15T17:39:35.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:35 smithi092 ceph-mon[33096]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 62 KiB/s, 0 objects/s recovering 2024-04-15T17:39:37.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:37 smithi118 ceph-mon[33587]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:39:37.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:37 smithi055 ceph-mon[29592]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:39:37.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:37 smithi092 ceph-mon[33096]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:39:39.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:38 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:39.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:38 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:39:39.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:38 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:39.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:38 smithi118 ceph-mon[33587]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:39:39.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:38 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:39.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:38 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:39:39.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:38 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:39.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:38 smithi055 ceph-mon[29592]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:39:39.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:38 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:39.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:38 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:39:39.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:38 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:39.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:38 smithi092 ceph-mon[33096]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:39:41.094 INFO:teuthology.orchestra.run.smithi118.stdout:Created osd(s) 4 on host 'smithi118' 2024-04-15T17:39:41.651 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:41 smithi118 ceph-mon[33587]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:39:41.651 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:41 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:41.652 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:41 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:41.652 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:41 smithi118 ceph-mon[33587]: from='osd.4 [v2:172.21.15.118:6800/428921847,v1:172.21.15.118:6801/428921847]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-15T17:39:41.652 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:41 smithi118 ceph-mon[33587]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-15T17:39:41.652 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:41 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:41.652 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:41 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:41.678 DEBUG:teuthology.orchestra.run.smithi118:osd.4> sudo journalctl -f -n 0 -u ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@osd.4.service 2024-04-15T17:39:41.720 INFO:tasks.cephadm:Deploying osd.5 on smithi118 with /dev/vg_nvme/lv_3... 2024-04-15T17:39:41.720 DEBUG:teuthology.orchestra.run.smithi118:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-04-15T17:39:41.828 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:41 smithi055 ceph-mon[29592]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:39:41.828 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:41 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:41.829 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:41 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:41.829 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:41 smithi055 ceph-mon[29592]: from='osd.4 [v2:172.21.15.118:6800/428921847,v1:172.21.15.118:6801/428921847]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-15T17:39:41.829 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:41 smithi055 ceph-mon[29592]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-15T17:39:41.829 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:41 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:41.829 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:41 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:41.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:41 smithi092 ceph-mon[33096]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:39:41.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:41 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:41.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:41 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:41.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:41 smithi092 ceph-mon[33096]: from='osd.4 [v2:172.21.15.118:6800/428921847,v1:172.21.15.118:6801/428921847]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-15T17:39:41.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:41 smithi092 ceph-mon[33096]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-15T17:39:41.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:41 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:41.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:41 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:42.687 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:42 smithi118 ceph-mon[33587]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-04-15T17:39:42.688 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:42 smithi118 ceph-mon[33587]: from='osd.4 [v2:172.21.15.118:6800/428921847,v1:172.21.15.118:6801/428921847]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi118", "root=default"]}]: dispatch 2024-04-15T17:39:42.688 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:42 smithi118 ceph-mon[33587]: osdmap e32: 5 total, 4 up, 5 in 2024-04-15T17:39:42.688 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:42 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T17:39:42.688 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:42 smithi118 ceph-mon[33587]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi118", "root=default"]}]: dispatch 2024-04-15T17:39:42.817 INFO:teuthology.orchestra.run.smithi118.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.c/config 2024-04-15T17:39:42.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:42 smithi055 ceph-mon[29592]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-04-15T17:39:42.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:42 smithi055 ceph-mon[29592]: from='osd.4 [v2:172.21.15.118:6800/428921847,v1:172.21.15.118:6801/428921847]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi118", "root=default"]}]: dispatch 2024-04-15T17:39:42.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:42 smithi055 ceph-mon[29592]: osdmap e32: 5 total, 4 up, 5 in 2024-04-15T17:39:42.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:42 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T17:39:42.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:42 smithi055 ceph-mon[29592]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi118", "root=default"]}]: dispatch 2024-04-15T17:39:42.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:42 smithi092 ceph-mon[33096]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-04-15T17:39:42.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:42 smithi092 ceph-mon[33096]: from='osd.4 [v2:172.21.15.118:6800/428921847,v1:172.21.15.118:6801/428921847]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi118", "root=default"]}]: dispatch 2024-04-15T17:39:42.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:42 smithi092 ceph-mon[33096]: osdmap e32: 5 total, 4 up, 5 in 2024-04-15T17:39:42.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:42 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T17:39:42.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:42 smithi092 ceph-mon[33096]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi118", "root=default"]}]: dispatch 2024-04-15T17:39:42.939 INFO:journalctl@ceph.osd.4.smithi118.stdout:Apr 15 17:39:42 smithi118 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-4[37906]: 2024-04-15T17:39:42.682+0000 7f12ddcac700 -1 osd.4 0 waiting for initial osdmap 2024-04-15T17:39:42.940 INFO:journalctl@ceph.osd.4.smithi118.stdout:Apr 15 17:39:42 smithi118 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-4[37906]: 2024-04-15T17:39:42.686+0000 7f12d5296700 -1 osd.4 33 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-04-15T17:39:43.596 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:43 smithi118 ceph-mon[33587]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:39:43.596 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:43 smithi118 ceph-mon[33587]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi118", "root=default"]}]': finished 2024-04-15T17:39:43.596 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:43 smithi118 ceph-mon[33587]: osdmap e33: 5 total, 4 up, 5 in 2024-04-15T17:39:43.596 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:43 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T17:39:43.596 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:43 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T17:39:43.596 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:43 smithi118 ceph-mon[33587]: from='osd.4 ' entity='osd.4' 2024-04-15T17:39:43.785 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:43 smithi092 ceph-mon[33096]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:39:43.785 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:43 smithi092 ceph-mon[33096]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi118", "root=default"]}]': finished 2024-04-15T17:39:43.785 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:43 smithi092 ceph-mon[33096]: osdmap e33: 5 total, 4 up, 5 in 2024-04-15T17:39:43.785 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:43 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T17:39:43.785 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:43 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T17:39:43.785 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:43 smithi092 ceph-mon[33096]: from='osd.4 ' entity='osd.4' 2024-04-15T17:39:43.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:43 smithi055 ceph-mon[29592]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:39:43.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:43 smithi055 ceph-mon[29592]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi118", "root=default"]}]': finished 2024-04-15T17:39:43.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:43 smithi055 ceph-mon[29592]: osdmap e33: 5 total, 4 up, 5 in 2024-04-15T17:39:43.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:43 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T17:39:43.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:43 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T17:39:43.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:43 smithi055 ceph-mon[29592]: from='osd.4 ' entity='osd.4' 2024-04-15T17:39:44.476 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:44 smithi118 ceph-mon[33587]: purged_snaps scrub starts 2024-04-15T17:39:44.476 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:44 smithi118 ceph-mon[33587]: purged_snaps scrub ok 2024-04-15T17:39:44.476 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:44 smithi118 ceph-mon[33587]: osd.4 [v2:172.21.15.118:6800/428921847,v1:172.21.15.118:6801/428921847] boot 2024-04-15T17:39:44.476 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:44 smithi118 ceph-mon[33587]: osdmap e34: 5 total, 5 up, 5 in 2024-04-15T17:39:44.476 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:44 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T17:39:44.477 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:44 smithi118 ceph-mon[33587]: osdmap e35: 5 total, 5 up, 5 in 2024-04-15T17:39:44.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:44 smithi055 ceph-mon[29592]: purged_snaps scrub starts 2024-04-15T17:39:44.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:44 smithi055 ceph-mon[29592]: purged_snaps scrub ok 2024-04-15T17:39:44.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:44 smithi055 ceph-mon[29592]: osd.4 [v2:172.21.15.118:6800/428921847,v1:172.21.15.118:6801/428921847] boot 2024-04-15T17:39:44.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:44 smithi055 ceph-mon[29592]: osdmap e34: 5 total, 5 up, 5 in 2024-04-15T17:39:44.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:44 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T17:39:44.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:44 smithi055 ceph-mon[29592]: osdmap e35: 5 total, 5 up, 5 in 2024-04-15T17:39:44.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:44 smithi092 ceph-mon[33096]: purged_snaps scrub starts 2024-04-15T17:39:44.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:44 smithi092 ceph-mon[33096]: purged_snaps scrub ok 2024-04-15T17:39:44.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:44 smithi092 ceph-mon[33096]: osd.4 [v2:172.21.15.118:6800/428921847,v1:172.21.15.118:6801/428921847] boot 2024-04-15T17:39:44.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:44 smithi092 ceph-mon[33096]: osdmap e34: 5 total, 5 up, 5 in 2024-04-15T17:39:44.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:44 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T17:39:44.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:44 smithi092 ceph-mon[33096]: osdmap e35: 5 total, 5 up, 5 in 2024-04-15T17:39:45.807 INFO:teuthology.orchestra.run.smithi118.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-04-15T17:39:45.808 INFO:teuthology.orchestra.run.smithi118.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-04-15T17:39:45.808 INFO:teuthology.orchestra.run.smithi118.stderr: stderr: 10+0 records in 2024-04-15T17:39:45.808 INFO:teuthology.orchestra.run.smithi118.stderr:10+0 records out 2024-04-15T17:39:45.808 INFO:teuthology.orchestra.run.smithi118.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.00850431 s, 1.2 GB/s 2024-04-15T17:39:45.808 INFO:teuthology.orchestra.run.smithi118.stderr:--> Zapping successful for: 2024-04-15T17:39:45.808 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:45 smithi118 ceph-mon[33587]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:39:45.808 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:45 smithi118 ceph-mon[33587]: Detected new or changed devices on smithi118 2024-04-15T17:39:45.808 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:45 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:45.809 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:45 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:45.809 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:45 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:39:45.809 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:45 smithi118 ceph-mon[33587]: Adjusting osd_memory_target on smithi118 to 21184M 2024-04-15T17:39:45.809 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:45 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:45.809 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:45 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:45.809 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:45 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:39:45.809 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:45 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:45.809 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:45 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:39:45.809 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:45 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:45.809 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:45 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:39:45.809 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:45 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:45.809 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:45 smithi118 ceph-mon[33587]: osdmap e36: 5 total, 5 up, 5 in 2024-04-15T17:39:45.848 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:45 smithi092 ceph-mon[33096]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:39:45.848 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:45 smithi092 ceph-mon[33096]: Detected new or changed devices on smithi118 2024-04-15T17:39:45.848 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:45 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:45.848 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:45 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:45.848 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:45 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:39:45.848 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:45 smithi092 ceph-mon[33096]: Adjusting osd_memory_target on smithi118 to 21184M 2024-04-15T17:39:45.848 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:45 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:45.848 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:45 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:45.848 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:45 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:39:45.848 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:45 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:45.848 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:45 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:39:45.849 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:45 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:45.849 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:45 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:39:45.849 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:45 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:45.849 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:45 smithi092 ceph-mon[33096]: osdmap e36: 5 total, 5 up, 5 in 2024-04-15T17:39:45.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:45 smithi055 ceph-mon[29592]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:39:45.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:45 smithi055 ceph-mon[29592]: Detected new or changed devices on smithi118 2024-04-15T17:39:45.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:45 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:45.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:45 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:45.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:45 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:39:45.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:45 smithi055 ceph-mon[29592]: Adjusting osd_memory_target on smithi118 to 21184M 2024-04-15T17:39:45.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:45 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:45.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:45 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:45.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:45 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:39:45.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:45 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:45.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:45 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:39:45.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:45 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:45.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:45 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:39:45.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:45 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:39:45.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:45 smithi055 ceph-mon[29592]: osdmap e36: 5 total, 5 up, 5 in 2024-04-15T17:39:46.430 DEBUG:teuthology.orchestra.run.smithi118:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph orch daemon add osd smithi118:vg_nvme/lv_3 2024-04-15T17:39:46.667 INFO:teuthology.orchestra.run.smithi118.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.c/config 2024-04-15T17:39:47.451 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:47 smithi118 ceph-mon[33587]: pgmap v124: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-04-15T17:39:47.451 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:47 smithi118 ceph-mon[33587]: osdmap e37: 5 total, 5 up, 5 in 2024-04-15T17:39:47.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:47 smithi055 ceph-mon[29592]: pgmap v124: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-04-15T17:39:47.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:47 smithi055 ceph-mon[29592]: osdmap e37: 5 total, 5 up, 5 in 2024-04-15T17:39:47.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:47 smithi092 ceph-mon[33096]: pgmap v124: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-04-15T17:39:47.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:47 smithi092 ceph-mon[33096]: osdmap e37: 5 total, 5 up, 5 in 2024-04-15T17:39:48.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:48 smithi118 ceph-mon[33587]: osdmap e38: 5 total, 5 up, 5 in 2024-04-15T17:39:48.624 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:48 smithi055 ceph-mon[29592]: osdmap e38: 5 total, 5 up, 5 in 2024-04-15T17:39:48.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:48 smithi092 ceph-mon[33096]: osdmap e38: 5 total, 5 up, 5 in 2024-04-15T17:39:49.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:49 smithi118 ceph-mon[33587]: pgmap v127: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-04-15T17:39:49.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:49 smithi118 ceph-mon[33587]: from='client.24196 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi118:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:39:49.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:49 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T17:39:49.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:49 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T17:39:49.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:49 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:49.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:49 smithi055 ceph-mon[29592]: pgmap v127: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-04-15T17:39:49.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:49 smithi055 ceph-mon[29592]: from='client.24196 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi118:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:39:49.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:49 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T17:39:49.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:49 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T17:39:49.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:49 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:49.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:49 smithi092 ceph-mon[33096]: pgmap v127: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-04-15T17:39:49.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:49 smithi092 ceph-mon[33096]: from='client.24196 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi118:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:39:49.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:49 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T17:39:49.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:49 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T17:39:49.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:49 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:51.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:51 smithi118 ceph-mon[33587]: pgmap v128: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 104 KiB/s, 0 objects/s recovering 2024-04-15T17:39:51.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:51 smithi118 ceph-mon[33587]: from='client.? 172.21.15.118:0/3940187984' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6033b50a-0456-4d83-9df8-607d8c0f2121"}]: dispatch 2024-04-15T17:39:51.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:51 smithi118 ceph-mon[33587]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6033b50a-0456-4d83-9df8-607d8c0f2121"}]: dispatch 2024-04-15T17:39:51.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:51 smithi118 ceph-mon[33587]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "6033b50a-0456-4d83-9df8-607d8c0f2121"}]': finished 2024-04-15T17:39:51.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:51 smithi118 ceph-mon[33587]: osdmap e39: 6 total, 5 up, 6 in 2024-04-15T17:39:51.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:51 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T17:39:51.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:51 smithi055 ceph-mon[29592]: pgmap v128: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 104 KiB/s, 0 objects/s recovering 2024-04-15T17:39:51.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:51 smithi055 ceph-mon[29592]: from='client.? 172.21.15.118:0/3940187984' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6033b50a-0456-4d83-9df8-607d8c0f2121"}]: dispatch 2024-04-15T17:39:51.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:51 smithi055 ceph-mon[29592]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6033b50a-0456-4d83-9df8-607d8c0f2121"}]: dispatch 2024-04-15T17:39:51.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:51 smithi055 ceph-mon[29592]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "6033b50a-0456-4d83-9df8-607d8c0f2121"}]': finished 2024-04-15T17:39:51.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:51 smithi055 ceph-mon[29592]: osdmap e39: 6 total, 5 up, 6 in 2024-04-15T17:39:51.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:51 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T17:39:51.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:51 smithi092 ceph-mon[33096]: pgmap v128: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 104 KiB/s, 0 objects/s recovering 2024-04-15T17:39:51.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:51 smithi092 ceph-mon[33096]: from='client.? 172.21.15.118:0/3940187984' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6033b50a-0456-4d83-9df8-607d8c0f2121"}]: dispatch 2024-04-15T17:39:51.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:51 smithi092 ceph-mon[33096]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6033b50a-0456-4d83-9df8-607d8c0f2121"}]: dispatch 2024-04-15T17:39:51.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:51 smithi092 ceph-mon[33096]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "6033b50a-0456-4d83-9df8-607d8c0f2121"}]': finished 2024-04-15T17:39:51.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:51 smithi092 ceph-mon[33096]: osdmap e39: 6 total, 5 up, 6 in 2024-04-15T17:39:51.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:51 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T17:39:52.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:52 smithi118 ceph-mon[33587]: from='client.? 172.21.15.118:0/1746121933' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T17:39:52.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:52 smithi055 ceph-mon[29592]: from='client.? 172.21.15.118:0/1746121933' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T17:39:52.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:52 smithi092 ceph-mon[33096]: from='client.? 172.21.15.118:0/1746121933' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T17:39:53.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:53 smithi118 ceph-mon[33587]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:39:53.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:53 smithi055 ceph-mon[29592]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:39:53.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:53 smithi092 ceph-mon[33096]: pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:39:55.538 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:55 smithi118 ceph-mon[33587]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:39:55.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:55 smithi055 ceph-mon[29592]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:39:55.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:55 smithi092 ceph-mon[33096]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:39:57.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:57 smithi118 ceph-mon[33587]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:39:57.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:57 smithi055 ceph-mon[29592]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:39:57.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:57 smithi092 ceph-mon[33096]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:39:58.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:58 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-04-15T17:39:58.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:58 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:58.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:58 smithi118 ceph-mon[33587]: Deploying daemon osd.5 on smithi118 2024-04-15T17:39:58.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:58 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-04-15T17:39:58.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:58 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:58.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:58 smithi055 ceph-mon[29592]: Deploying daemon osd.5 on smithi118 2024-04-15T17:39:58.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:58 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-04-15T17:39:58.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:58 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:39:58.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:58 smithi092 ceph-mon[33096]: Deploying daemon osd.5 on smithi118 2024-04-15T17:39:59.339 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:39:59 smithi118 ceph-mon[33587]: pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:39:59.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:39:59 smithi055 ceph-mon[29592]: pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:39:59.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:39:59 smithi092 ceph-mon[33096]: pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:40:00.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:00 smithi118 ceph-mon[33587]: overall HEALTH_OK 2024-04-15T17:40:00.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:00 smithi055 ceph-mon[29592]: overall HEALTH_OK 2024-04-15T17:40:00.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:00 smithi092 ceph-mon[33096]: overall HEALTH_OK 2024-04-15T17:40:01.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:01 smithi118 ceph-mon[33587]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:40:01.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:01 smithi055 ceph-mon[29592]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:40:01.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:01 smithi092 ceph-mon[33096]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:40:03.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:03 smithi118 ceph-mon[33587]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:40:03.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:03 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:03.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:03 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:03.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:03 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:40:03.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:03 smithi055 ceph-mon[29592]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:40:03.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:03 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:03.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:03 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:03.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:03 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:40:03.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:03 smithi092 ceph-mon[33096]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:40:03.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:03 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:03.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:03 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:03.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:03 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:40:05.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:05 smithi118 ceph-mon[33587]: pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:40:05.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:05 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:05.850 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:05 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:05.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:05 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:40:05.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:05 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:40:05.851 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:05 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:05.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:05 smithi055 ceph-mon[29592]: pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:40:05.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:05 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:05.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:05 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:05.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:05 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:40:05.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:05 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:40:05.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:05 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:05.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:05 smithi092 ceph-mon[33096]: pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:40:05.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:05 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:05.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:05 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:05.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:05 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:40:05.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:05 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:40:05.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:05 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:06.377 INFO:teuthology.orchestra.run.smithi118.stdout:Created osd(s) 5 on host 'smithi118' 2024-04-15T17:40:06.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:06 smithi092 ceph-mon[33096]: from='osd.5 [v2:172.21.15.118:6808/1404034565,v1:172.21.15.118:6809/1404034565]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-15T17:40:06.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:06 smithi092 ceph-mon[33096]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-15T17:40:06.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:06 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:06.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:06 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:06.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:06 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:40:06.898 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:06 smithi118 ceph-mon[33587]: from='osd.5 [v2:172.21.15.118:6808/1404034565,v1:172.21.15.118:6809/1404034565]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-15T17:40:06.898 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:06 smithi118 ceph-mon[33587]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-15T17:40:06.898 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:06 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:06.898 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:06 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:06.898 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:06 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:40:06.926 DEBUG:teuthology.orchestra.run.smithi118:osd.5> sudo journalctl -f -n 0 -u ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@osd.5.service 2024-04-15T17:40:06.928 INFO:tasks.cephadm:Waiting for 6 OSDs to come up... 2024-04-15T17:40:06.928 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph osd stat -f json 2024-04-15T17:40:06.959 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:06 smithi055 ceph-mon[29592]: from='osd.5 [v2:172.21.15.118:6808/1404034565,v1:172.21.15.118:6809/1404034565]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-15T17:40:06.959 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:06 smithi055 ceph-mon[29592]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-15T17:40:06.960 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:06 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:06.960 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:06 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:06.960 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:06 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:40:07.186 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:40:07.903 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:07 smithi118 ceph-mon[33587]: pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:40:07.904 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:07 smithi118 ceph-mon[33587]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-04-15T17:40:07.904 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:07 smithi118 ceph-mon[33587]: from='osd.5 [v2:172.21.15.118:6808/1404034565,v1:172.21.15.118:6809/1404034565]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi118", "root=default"]}]: dispatch 2024-04-15T17:40:07.904 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:07 smithi118 ceph-mon[33587]: osdmap e40: 6 total, 5 up, 6 in 2024-04-15T17:40:07.904 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:07 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T17:40:07.904 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:07 smithi118 ceph-mon[33587]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi118", "root=default"]}]: dispatch 2024-04-15T17:40:07.904 INFO:journalctl@ceph.osd.5.smithi118.stdout:Apr 15 17:40:07 smithi118 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-5[43663]: 2024-04-15T17:40:07.640+0000 7f4677f61700 -1 osd.5 0 waiting for initial osdmap 2024-04-15T17:40:07.904 INFO:journalctl@ceph.osd.5.smithi118.stdout:Apr 15 17:40:07 smithi118 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-5[43663]: 2024-04-15T17:40:07.645+0000 7f4673d54700 -1 osd.5 41 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-04-15T17:40:08.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:07 smithi055 ceph-mon[29592]: pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:40:08.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:07 smithi055 ceph-mon[29592]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-04-15T17:40:08.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:07 smithi055 ceph-mon[29592]: from='osd.5 [v2:172.21.15.118:6808/1404034565,v1:172.21.15.118:6809/1404034565]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi118", "root=default"]}]: dispatch 2024-04-15T17:40:08.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:07 smithi055 ceph-mon[29592]: osdmap e40: 6 total, 5 up, 6 in 2024-04-15T17:40:08.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:07 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T17:40:08.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:07 smithi055 ceph-mon[29592]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi118", "root=default"]}]: dispatch 2024-04-15T17:40:08.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:07 smithi092 ceph-mon[33096]: pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:40:08.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:07 smithi092 ceph-mon[33096]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-04-15T17:40:08.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:07 smithi092 ceph-mon[33096]: from='osd.5 [v2:172.21.15.118:6808/1404034565,v1:172.21.15.118:6809/1404034565]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi118", "root=default"]}]: dispatch 2024-04-15T17:40:08.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:07 smithi092 ceph-mon[33096]: osdmap e40: 6 total, 5 up, 6 in 2024-04-15T17:40:08.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:07 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T17:40:08.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:07 smithi092 ceph-mon[33096]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi118", "root=default"]}]: dispatch 2024-04-15T17:40:08.818 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:08 smithi055 ceph-mon[29592]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi118", "root=default"]}]': finished 2024-04-15T17:40:08.819 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:08 smithi055 ceph-mon[29592]: osdmap e41: 6 total, 5 up, 6 in 2024-04-15T17:40:08.819 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:08 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T17:40:08.819 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:08 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T17:40:08.973 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:08 smithi118 ceph-mon[33587]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi118", "root=default"]}]': finished 2024-04-15T17:40:08.973 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:08 smithi118 ceph-mon[33587]: osdmap e41: 6 total, 5 up, 6 in 2024-04-15T17:40:08.973 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:08 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T17:40:08.973 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:08 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T17:40:09.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:08 smithi092 ceph-mon[33096]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi118", "root=default"]}]': finished 2024-04-15T17:40:09.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:08 smithi092 ceph-mon[33096]: osdmap e41: 6 total, 5 up, 6 in 2024-04-15T17:40:09.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:08 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T17:40:09.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:08 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T17:40:09.143 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:40:09.781 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:09 smithi055 ceph-mon[29592]: purged_snaps scrub starts 2024-04-15T17:40:09.781 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:09 smithi055 ceph-mon[29592]: purged_snaps scrub ok 2024-04-15T17:40:09.781 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:09 smithi055 ceph-mon[29592]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:40:09.781 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:09 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T17:40:09.781 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:09 smithi055 ceph-mon[29592]: osd.5 [v2:172.21.15.118:6808/1404034565,v1:172.21.15.118:6809/1404034565] boot 2024-04-15T17:40:09.781 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:09 smithi055 ceph-mon[29592]: osdmap e42: 6 total, 6 up, 6 in 2024-04-15T17:40:09.781 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:09 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T17:40:09.781 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:09 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/1320453700' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-15T17:40:09.781 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:09 smithi055 ceph-mon[29592]: osdmap e43: 6 total, 6 up, 6 in 2024-04-15T17:40:09.806 INFO:teuthology.orchestra.run.smithi055.stdout:{"epoch":42,"num_osds":6,"num_up_osds":6,"osd_up_since":1713202808,"num_in_osds":6,"osd_in_since":1713202791,"num_remapped_pgs":1} 2024-04-15T17:40:09.807 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph osd dump --format=json 2024-04-15T17:40:10.089 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:40:10.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:09 smithi118 ceph-mon[33587]: purged_snaps scrub starts 2024-04-15T17:40:10.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:09 smithi118 ceph-mon[33587]: purged_snaps scrub ok 2024-04-15T17:40:10.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:09 smithi118 ceph-mon[33587]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:40:10.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:09 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T17:40:10.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:09 smithi118 ceph-mon[33587]: osd.5 [v2:172.21.15.118:6808/1404034565,v1:172.21.15.118:6809/1404034565] boot 2024-04-15T17:40:10.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:09 smithi118 ceph-mon[33587]: osdmap e42: 6 total, 6 up, 6 in 2024-04-15T17:40:10.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:09 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T17:40:10.101 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:09 smithi118 ceph-mon[33587]: from='client.? 172.21.15.55:0/1320453700' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-15T17:40:10.101 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:09 smithi118 ceph-mon[33587]: osdmap e43: 6 total, 6 up, 6 in 2024-04-15T17:40:10.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:09 smithi092 ceph-mon[33096]: purged_snaps scrub starts 2024-04-15T17:40:10.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:09 smithi092 ceph-mon[33096]: purged_snaps scrub ok 2024-04-15T17:40:10.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:09 smithi092 ceph-mon[33096]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:40:10.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:09 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T17:40:10.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:09 smithi092 ceph-mon[33096]: osd.5 [v2:172.21.15.118:6808/1404034565,v1:172.21.15.118:6809/1404034565] boot 2024-04-15T17:40:10.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:09 smithi092 ceph-mon[33096]: osdmap e42: 6 total, 6 up, 6 in 2024-04-15T17:40:10.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:09 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T17:40:10.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:09 smithi092 ceph-mon[33096]: from='client.? 172.21.15.55:0/1320453700' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-15T17:40:10.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:09 smithi092 ceph-mon[33096]: osdmap e43: 6 total, 6 up, 6 in 2024-04-15T17:40:10.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:10 smithi055 ceph-mon[29592]: Detected new or changed devices on smithi118 2024-04-15T17:40:10.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:10 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:10.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:10 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:10.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:10 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:40:10.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:10 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:40:10.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:10 smithi055 ceph-mon[29592]: Adjusting osd_memory_target on smithi118 to 10592M 2024-04-15T17:40:10.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:10 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:10.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:10 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:40:10.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:10 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:40:10.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:10 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:10.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:10 smithi055 ceph-mon[29592]: osdmap e44: 6 total, 6 up, 6 in 2024-04-15T17:40:11.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:10 smithi118 ceph-mon[33587]: Detected new or changed devices on smithi118 2024-04-15T17:40:11.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:10 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:11.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:10 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:11.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:10 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:40:11.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:10 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:40:11.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:10 smithi118 ceph-mon[33587]: Adjusting osd_memory_target on smithi118 to 10592M 2024-04-15T17:40:11.101 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:10 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:11.101 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:10 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:40:11.101 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:10 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:40:11.101 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:10 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:11.101 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:10 smithi118 ceph-mon[33587]: osdmap e44: 6 total, 6 up, 6 in 2024-04-15T17:40:11.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:10 smithi092 ceph-mon[33096]: Detected new or changed devices on smithi118 2024-04-15T17:40:11.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:10 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:11.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:10 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:11.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:10 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:40:11.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:10 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-04-15T17:40:11.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:10 smithi092 ceph-mon[33096]: Adjusting osd_memory_target on smithi118 to 10592M 2024-04-15T17:40:11.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:10 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:11.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:10 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:40:11.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:10 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:40:11.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:10 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:40:11.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:10 smithi092 ceph-mon[33096]: osdmap e44: 6 total, 6 up, 6 in 2024-04-15T17:40:11.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:11 smithi055 ceph-mon[29592]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:11.971 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:40:11.972 INFO:teuthology.orchestra.run.smithi055.stdout:{"epoch":45,"fsid":"6c2710cc-fb4e-11ee-bc8f-c7b262605968","created":"2024-04-15T17:35:28.743293+0000","modified":"2024-04-15T17:40:11.708769+0000","last_up_change":"2024-04-15T17:40:08.637832+0000","last_in_change":"2024-04-15T17:39:51.004140+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":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-04-15T17:38:57.864797+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":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"094af296-7b4a-4730-a438-68828dea4601","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":28,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6802","nonce":3386140023},{"type":"v1","addr":"172.21.15.55:6803","nonce":3386140023}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6804","nonce":3386140023},{"type":"v1","addr":"172.21.15.55:6805","nonce":3386140023}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6808","nonce":3386140023},{"type":"v1","addr":"172.21.15.55:6809","nonce":3386140023}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6806","nonce":3386140023},{"type":"v1","addr":"172.21.15.55:6807","nonce":3386140023}]},"public_addr":"172.21.15.55:6803/3386140023","cluster_addr":"172.21.15.55:6805/3386140023","heartbeat_back_addr":"172.21.15.55:6809/3386140023","heartbeat_front_addr":"172.21.15.55:6807/3386140023","state":["exists","up"]},{"osd":1,"uuid":"69bef924-e879-4dab-843d-3bf832bb9127","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.55:6810","nonce":710486852},{"type":"v1","addr":"172.21.15.55:6811","nonce":710486852}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6812","nonce":710486852},{"type":"v1","addr":"172.21.15.55:6813","nonce":710486852}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6816","nonce":710486852},{"type":"v1","addr":"172.21.15.55:6817","nonce":710486852}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6814","nonce":710486852},{"type":"v1","addr":"172.21.15.55:6815","nonce":710486852}]},"public_addr":"172.21.15.55:6811/710486852","cluster_addr":"172.21.15.55:6813/710486852","heartbeat_back_addr":"172.21.15.55:6817/710486852","heartbeat_front_addr":"172.21.15.55:6815/710486852","state":["exists","up"]},{"osd":2,"uuid":"21fd878f-a998-4d35-a233-91271bb42d99","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.92:6800","nonce":11860028},{"type":"v1","addr":"172.21.15.92:6801","nonce":11860028}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.92:6802","nonce":11860028},{"type":"v1","addr":"172.21.15.92:6803","nonce":11860028}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.92:6806","nonce":11860028},{"type":"v1","addr":"172.21.15.92:6807","nonce":11860028}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.92:6804","nonce":11860028},{"type":"v1","addr":"172.21.15.92:6805","nonce":11860028}]},"public_addr":"172.21.15.92:6801/11860028","cluster_addr":"172.21.15.92:6803/11860028","heartbeat_back_addr":"172.21.15.92:6807/11860028","heartbeat_front_addr":"172.21.15.92:6805/11860028","state":["exists","up"]},{"osd":3,"uuid":"0adbb14f-3c10-4c5f-86a3-c8403d1fd06d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.92:6808","nonce":3054594230},{"type":"v1","addr":"172.21.15.92:6809","nonce":3054594230}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.92:6810","nonce":3054594230},{"type":"v1","addr":"172.21.15.92:6811","nonce":3054594230}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.92:6814","nonce":3054594230},{"type":"v1","addr":"172.21.15.92:6815","nonce":3054594230}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.92:6812","nonce":3054594230},{"type":"v1","addr":"172.21.15.92:6813","nonce":3054594230}]},"public_addr":"172.21.15.92:6809/3054594230","cluster_addr":"172.21.15.92:6811/3054594230","heartbeat_back_addr":"172.21.15.92:6815/3054594230","heartbeat_front_addr":"172.21.15.92:6813/3054594230","state":["exists","up"]},{"osd":4,"uuid":"9e7e2276-3cd7-4e5d-b924-05cced71f94c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.118:6800","nonce":428921847},{"type":"v1","addr":"172.21.15.118:6801","nonce":428921847}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.118:6802","nonce":428921847},{"type":"v1","addr":"172.21.15.118:6803","nonce":428921847}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.118:6806","nonce":428921847},{"type":"v1","addr":"172.21.15.118:6807","nonce":428921847}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.118:6804","nonce":428921847},{"type":"v1","addr":"172.21.15.118:6805","nonce":428921847}]},"public_addr":"172.21.15.118:6801/428921847","cluster_addr":"172.21.15.118:6803/428921847","heartbeat_back_addr":"172.21.15.118:6807/428921847","heartbeat_front_addr":"172.21.15.118:6805/428921847","state":["exists","up"]},{"osd":5,"uuid":"6033b50a-0456-4d83-9df8-607d8c0f2121","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":42,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.118:6808","nonce":1404034565},{"type":"v1","addr":"172.21.15.118:6809","nonce":1404034565}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.118:6810","nonce":1404034565},{"type":"v1","addr":"172.21.15.118:6811","nonce":1404034565}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.118:6814","nonce":1404034565},{"type":"v1","addr":"172.21.15.118:6815","nonce":1404034565}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.118:6812","nonce":1404034565},{"type":"v1","addr":"172.21.15.118:6813","nonce":1404034565}]},"public_addr":"172.21.15.118:6809/1404034565","cluster_addr":"172.21.15.118:6811/1404034565","heartbeat_back_addr":"172.21.15.118:6815/1404034565","heartbeat_front_addr":"172.21.15.118:6813/1404034565","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T17:38:04.952911+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T17:38:30.863680+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T17:38:54.042173+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T17:39:19.063906+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T17:39:41.847098+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T17:40:06.810132+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.55:0/2090230953":"2024-04-16T17:36:29.767094+0000","172.21.15.55:6801/2138495580":"2024-04-16T17:36:29.767094+0000","172.21.15.55:6800/2138495580":"2024-04-16T17:36:29.767094+0000","172.21.15.55:0/373564568":"2024-04-16T17:36:29.767094+0000","172.21.15.55:6801/2925703698":"2024-04-16T17:36:02.369579+0000","172.21.15.55:6800/2925703698":"2024-04-16T17:36:02.369579+0000","172.21.15.55:0/4008873471":"2024-04-16T17:36:02.369579+0000","172.21.15.55:0/1611415603":"2024-04-16T17:36:02.369579+0000","172.21.15.55:0/1652946086":"2024-04-16T17:36:02.369579+0000","172.21.15.55:0/629282077":"2024-04-16T17:36:29.767094+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-04-15T17:40:12.069 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:11 smithi118 ceph-mon[33587]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:12.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:11 smithi092 ceph-mon[33096]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:12.673 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-04-15T17:38:57.864797+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': {}}, 'read_balance': {'score_type': 'Fair distribution', 'score_acting': 6, 'score_stable': 6, 'optimal_score': 0.5, 'raw_score_acting': 3, 'raw_score_stable': 3, 'primary_affinity_weighted': 1, 'average_primary_affinity': 1, 'average_primary_affinity_weighted': 1}}] 2024-04-15T17:40:12.673 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-04-15T17:40:12.919 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:40:13.034 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:12 smithi092 ceph-mon[33096]: osdmap e45: 6 total, 6 up, 6 in 2024-04-15T17:40:13.035 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:12 smithi092 ceph-mon[33096]: from='client.? 172.21.15.55:0/2969307381' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T17:40:13.040 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:12 smithi055 ceph-mon[29592]: osdmap e45: 6 total, 6 up, 6 in 2024-04-15T17:40:13.040 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:12 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/2969307381' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T17:40:13.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:12 smithi118 ceph-mon[33587]: osdmap e45: 6 total, 6 up, 6 in 2024-04-15T17:40:13.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:12 smithi118 ceph-mon[33587]: from='client.? 172.21.15.55:0/2969307381' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T17:40:14.065 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:13 smithi055 ceph-mon[29592]: pgmap v146: 1 pgs: 1 activating+undersized+degraded+remapped; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 2/6 objects degraded (33.333%) 2024-04-15T17:40:14.065 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:13 smithi055 ceph-mon[29592]: Health check failed: Degraded data redundancy: 2/6 objects degraded (33.333%), 1 pg degraded (PG_DEGRADED) 2024-04-15T17:40:14.065 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:13 smithi055 ceph-mon[29592]: osdmap e46: 6 total, 6 up, 6 in 2024-04-15T17:40:14.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:13 smithi118 ceph-mon[33587]: pgmap v146: 1 pgs: 1 activating+undersized+degraded+remapped; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 2/6 objects degraded (33.333%) 2024-04-15T17:40:14.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:13 smithi118 ceph-mon[33587]: Health check failed: Degraded data redundancy: 2/6 objects degraded (33.333%), 1 pg degraded (PG_DEGRADED) 2024-04-15T17:40:14.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:13 smithi118 ceph-mon[33587]: osdmap e46: 6 total, 6 up, 6 in 2024-04-15T17:40:14.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:13 smithi092 ceph-mon[33096]: pgmap v146: 1 pgs: 1 activating+undersized+degraded+remapped; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 2/6 objects degraded (33.333%) 2024-04-15T17:40:14.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:13 smithi092 ceph-mon[33096]: Health check failed: Degraded data redundancy: 2/6 objects degraded (33.333%), 1 pg degraded (PG_DEGRADED) 2024-04-15T17:40:14.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:13 smithi092 ceph-mon[33096]: osdmap e46: 6 total, 6 up, 6 in 2024-04-15T17:40:14.684 INFO:teuthology.orchestra.run.smithi055.stdout:pg_num: 1 2024-04-15T17:40:15.065 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:14 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/994867627' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-04-15T17:40:15.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:14 smithi118 ceph-mon[33587]: from='client.? 172.21.15.55:0/994867627' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-04-15T17:40:15.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:14 smithi092 ceph-mon[33096]: from='client.? 172.21.15.55:0/994867627' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-04-15T17:40:15.369 INFO:tasks.cephadm:Setting up client nodes... 2024-04-15T17:40:15.370 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-04-15T17:40:15.370 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-04-15T17:40:15.370 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph mgr dump --format=json 2024-04-15T17:40:15.615 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:40:16.052 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:15 smithi055 ceph-mon[29592]: pgmap v148: 1 pgs: 1 activating+undersized+degraded+remapped; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 2/6 objects degraded (33.333%) 2024-04-15T17:40:16.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:15 smithi118 ceph-mon[33587]: pgmap v148: 1 pgs: 1 activating+undersized+degraded+remapped; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 2/6 objects degraded (33.333%) 2024-04-15T17:40:16.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:15 smithi092 ceph-mon[33096]: pgmap v148: 1 pgs: 1 activating+undersized+degraded+remapped; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 2/6 objects degraded (33.333%) 2024-04-15T17:40:16.982 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:16 smithi055 ceph-mon[29592]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-15T17:40:17.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:16 smithi118 ceph-mon[33587]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-15T17:40:17.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:16 smithi092 ceph-mon[33096]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-15T17:40:17.505 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:40:17.821 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:17 smithi055 ceph-mon[29592]: Health check cleared: PG_DEGRADED (was: Degraded data redundancy: 2/6 objects degraded (33.333%), 1 pg degraded) 2024-04-15T17:40:17.821 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:17 smithi055 ceph-mon[29592]: Cluster is now healthy 2024-04-15T17:40:17.821 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:17 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/2390003170' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-04-15T17:40:18.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:17 smithi118 ceph-mon[33587]: Health check cleared: PG_DEGRADED (was: Degraded data redundancy: 2/6 objects degraded (33.333%), 1 pg degraded) 2024-04-15T17:40:18.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:17 smithi118 ceph-mon[33587]: Cluster is now healthy 2024-04-15T17:40:18.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:17 smithi118 ceph-mon[33587]: from='client.? 172.21.15.55:0/2390003170' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-04-15T17:40:18.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:17 smithi092 ceph-mon[33096]: Health check cleared: PG_DEGRADED (was: Degraded data redundancy: 2/6 objects degraded (33.333%), 1 pg degraded) 2024-04-15T17:40:18.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:17 smithi092 ceph-mon[33096]: Cluster is now healthy 2024-04-15T17:40:18.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:17 smithi092 ceph-mon[33096]: from='client.? 172.21.15.55:0/2390003170' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-04-15T17:40:18.158 INFO:teuthology.orchestra.run.smithi055.stdout:{"epoch":15,"flags":0,"active_gid":14152,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6800","nonce":4069223055},{"type":"v1","addr":"172.21.15.55:6801","nonce":4069223055}]},"active_addr":"172.21.15.55:6801/4069223055","active_change":"2024-04-15T17:36:29.767205+0000","active_mgr_features":4540701547738038271,"available":true,"standbys":[{"gid":24110,"name":"b","mgr_features":4540701547738038271,"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":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"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_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:9.4.12","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_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki: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_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.1","min":"","max":"","enum_allowed":[],"desc":"Nvme-of 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_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB 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":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"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":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","type":"str","level":"advanced","flags":0,"default_value":"{}","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"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":[]},"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":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"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":[]},"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":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]},"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":[]}}},{"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":[]}}},{"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":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]},"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":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"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":[]},"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":[]},"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":[]}}},{"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":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"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":[]},"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":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"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":[]}}},{"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":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]}}},{"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":[]},"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":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"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_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:9.4.12","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_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki: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_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.1","min":"","max":"","enum_allowed":[],"desc":"Nvme-of 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_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB 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":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"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":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","type":"str","level":"advanced","flags":0,"default_value":"{}","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"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":[]},"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":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"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":[]},"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":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]},"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":[]}}},{"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":[]}}},{"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":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]},"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":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"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":[]},"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":[]},"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":[]}}},{"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":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"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":[]},"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":[]}}},{"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":[]}}},{"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":[]}}},{"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":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"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":[]}}},{"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":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]}}},{"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":[]},"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.55:8443/"},"always_on_modules":{"octopus":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"pacific":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"quincy":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"reef":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"squid":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"]},"last_failure_osd_epoch":3,"active_clients":[{"name":"devicehealth","addrvec":[{"type":"v2","addr":"172.21.15.55:0","nonce":535882358}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.55:0","nonce":1729002717}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.55:0","nonce":1694342417}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.55:0","nonce":1650407262}]}]} 2024-04-15T17:40:18.164 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-04-15T17:40:18.164 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-04-15T17:40:18.164 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph osd dump --format=json 2024-04-15T17:40:18.408 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:40:18.840 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:18 smithi055 ceph-mon[29592]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-04-15T17:40:19.100 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:18 smithi118 ceph-mon[33587]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-04-15T17:40:19.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:18 smithi092 ceph-mon[33096]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-04-15T17:40:20.304 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:40:20.304 INFO:teuthology.orchestra.run.smithi055.stdout:{"epoch":46,"fsid":"6c2710cc-fb4e-11ee-bc8f-c7b262605968","created":"2024-04-15T17:35:28.743293+0000","modified":"2024-04-15T17:40:12.716153+0000","last_up_change":"2024-04-15T17:40:08.637832+0000","last_in_change":"2024-04-15T17:39:51.004140+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":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-04-15T17:38:57.864797+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":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"094af296-7b4a-4730-a438-68828dea4601","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":28,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6802","nonce":3386140023},{"type":"v1","addr":"172.21.15.55:6803","nonce":3386140023}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6804","nonce":3386140023},{"type":"v1","addr":"172.21.15.55:6805","nonce":3386140023}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6808","nonce":3386140023},{"type":"v1","addr":"172.21.15.55:6809","nonce":3386140023}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6806","nonce":3386140023},{"type":"v1","addr":"172.21.15.55:6807","nonce":3386140023}]},"public_addr":"172.21.15.55:6803/3386140023","cluster_addr":"172.21.15.55:6805/3386140023","heartbeat_back_addr":"172.21.15.55:6809/3386140023","heartbeat_front_addr":"172.21.15.55:6807/3386140023","state":["exists","up"]},{"osd":1,"uuid":"69bef924-e879-4dab-843d-3bf832bb9127","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.55:6810","nonce":710486852},{"type":"v1","addr":"172.21.15.55:6811","nonce":710486852}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6812","nonce":710486852},{"type":"v1","addr":"172.21.15.55:6813","nonce":710486852}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6816","nonce":710486852},{"type":"v1","addr":"172.21.15.55:6817","nonce":710486852}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6814","nonce":710486852},{"type":"v1","addr":"172.21.15.55:6815","nonce":710486852}]},"public_addr":"172.21.15.55:6811/710486852","cluster_addr":"172.21.15.55:6813/710486852","heartbeat_back_addr":"172.21.15.55:6817/710486852","heartbeat_front_addr":"172.21.15.55:6815/710486852","state":["exists","up"]},{"osd":2,"uuid":"21fd878f-a998-4d35-a233-91271bb42d99","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.92:6800","nonce":11860028},{"type":"v1","addr":"172.21.15.92:6801","nonce":11860028}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.92:6802","nonce":11860028},{"type":"v1","addr":"172.21.15.92:6803","nonce":11860028}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.92:6806","nonce":11860028},{"type":"v1","addr":"172.21.15.92:6807","nonce":11860028}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.92:6804","nonce":11860028},{"type":"v1","addr":"172.21.15.92:6805","nonce":11860028}]},"public_addr":"172.21.15.92:6801/11860028","cluster_addr":"172.21.15.92:6803/11860028","heartbeat_back_addr":"172.21.15.92:6807/11860028","heartbeat_front_addr":"172.21.15.92:6805/11860028","state":["exists","up"]},{"osd":3,"uuid":"0adbb14f-3c10-4c5f-86a3-c8403d1fd06d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":45,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.92:6808","nonce":3054594230},{"type":"v1","addr":"172.21.15.92:6809","nonce":3054594230}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.92:6810","nonce":3054594230},{"type":"v1","addr":"172.21.15.92:6811","nonce":3054594230}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.92:6814","nonce":3054594230},{"type":"v1","addr":"172.21.15.92:6815","nonce":3054594230}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.92:6812","nonce":3054594230},{"type":"v1","addr":"172.21.15.92:6813","nonce":3054594230}]},"public_addr":"172.21.15.92:6809/3054594230","cluster_addr":"172.21.15.92:6811/3054594230","heartbeat_back_addr":"172.21.15.92:6815/3054594230","heartbeat_front_addr":"172.21.15.92:6813/3054594230","state":["exists","up"]},{"osd":4,"uuid":"9e7e2276-3cd7-4e5d-b924-05cced71f94c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.118:6800","nonce":428921847},{"type":"v1","addr":"172.21.15.118:6801","nonce":428921847}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.118:6802","nonce":428921847},{"type":"v1","addr":"172.21.15.118:6803","nonce":428921847}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.118:6806","nonce":428921847},{"type":"v1","addr":"172.21.15.118:6807","nonce":428921847}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.118:6804","nonce":428921847},{"type":"v1","addr":"172.21.15.118:6805","nonce":428921847}]},"public_addr":"172.21.15.118:6801/428921847","cluster_addr":"172.21.15.118:6803/428921847","heartbeat_back_addr":"172.21.15.118:6807/428921847","heartbeat_front_addr":"172.21.15.118:6805/428921847","state":["exists","up"]},{"osd":5,"uuid":"6033b50a-0456-4d83-9df8-607d8c0f2121","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":42,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.118:6808","nonce":1404034565},{"type":"v1","addr":"172.21.15.118:6809","nonce":1404034565}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.118:6810","nonce":1404034565},{"type":"v1","addr":"172.21.15.118:6811","nonce":1404034565}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.118:6814","nonce":1404034565},{"type":"v1","addr":"172.21.15.118:6815","nonce":1404034565}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.118:6812","nonce":1404034565},{"type":"v1","addr":"172.21.15.118:6813","nonce":1404034565}]},"public_addr":"172.21.15.118:6809/1404034565","cluster_addr":"172.21.15.118:6811/1404034565","heartbeat_back_addr":"172.21.15.118:6815/1404034565","heartbeat_front_addr":"172.21.15.118:6813/1404034565","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T17:38:04.952911+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T17:38:30.863680+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T17:38:54.042173+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T17:39:19.063906+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T17:39:41.847098+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T17:40:06.810132+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.55:0/2090230953":"2024-04-16T17:36:29.767094+0000","172.21.15.55:6801/2138495580":"2024-04-16T17:36:29.767094+0000","172.21.15.55:6800/2138495580":"2024-04-16T17:36:29.767094+0000","172.21.15.55:0/373564568":"2024-04-16T17:36:29.767094+0000","172.21.15.55:6801/2925703698":"2024-04-16T17:36:02.369579+0000","172.21.15.55:6800/2925703698":"2024-04-16T17:36:02.369579+0000","172.21.15.55:0/4008873471":"2024-04-16T17:36:02.369579+0000","172.21.15.55:0/1611415603":"2024-04-16T17:36:02.369579+0000","172.21.15.55:0/1652946086":"2024-04-16T17:36:02.369579+0000","172.21.15.55:0/629282077":"2024-04-16T17:36:29.767094+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-04-15T17:40:21.113 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-04-15T17:40:21.113 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph osd dump --format=json 2024-04-15T17:40:21.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:20 smithi055 ceph-mon[29592]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 71 KiB/s, 0 objects/s recovering 2024-04-15T17:40:21.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:20 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/1668575341' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T17:40:21.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:20 smithi092 ceph-mon[33096]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 71 KiB/s, 0 objects/s recovering 2024-04-15T17:40:21.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:20 smithi092 ceph-mon[33096]: from='client.? 172.21.15.55:0/1668575341' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T17:40:21.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:20 smithi118 ceph-mon[33587]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 71 KiB/s, 0 objects/s recovering 2024-04-15T17:40:21.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:20 smithi118 ceph-mon[33587]: from='client.? 172.21.15.55:0/1668575341' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T17:40:21.356 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:40:23.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:22 smithi055 ceph-mon[29592]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-15T17:40:23.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:22 smithi092 ceph-mon[33096]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-15T17:40:23.286 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:40:23.286 INFO:teuthology.orchestra.run.smithi055.stdout:{"epoch":46,"fsid":"6c2710cc-fb4e-11ee-bc8f-c7b262605968","created":"2024-04-15T17:35:28.743293+0000","modified":"2024-04-15T17:40:12.716153+0000","last_up_change":"2024-04-15T17:40:08.637832+0000","last_in_change":"2024-04-15T17:39:51.004140+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":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-04-15T17:38:57.864797+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":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"094af296-7b4a-4730-a438-68828dea4601","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":28,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6802","nonce":3386140023},{"type":"v1","addr":"172.21.15.55:6803","nonce":3386140023}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6804","nonce":3386140023},{"type":"v1","addr":"172.21.15.55:6805","nonce":3386140023}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6808","nonce":3386140023},{"type":"v1","addr":"172.21.15.55:6809","nonce":3386140023}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6806","nonce":3386140023},{"type":"v1","addr":"172.21.15.55:6807","nonce":3386140023}]},"public_addr":"172.21.15.55:6803/3386140023","cluster_addr":"172.21.15.55:6805/3386140023","heartbeat_back_addr":"172.21.15.55:6809/3386140023","heartbeat_front_addr":"172.21.15.55:6807/3386140023","state":["exists","up"]},{"osd":1,"uuid":"69bef924-e879-4dab-843d-3bf832bb9127","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.55:6810","nonce":710486852},{"type":"v1","addr":"172.21.15.55:6811","nonce":710486852}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6812","nonce":710486852},{"type":"v1","addr":"172.21.15.55:6813","nonce":710486852}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6816","nonce":710486852},{"type":"v1","addr":"172.21.15.55:6817","nonce":710486852}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.55:6814","nonce":710486852},{"type":"v1","addr":"172.21.15.55:6815","nonce":710486852}]},"public_addr":"172.21.15.55:6811/710486852","cluster_addr":"172.21.15.55:6813/710486852","heartbeat_back_addr":"172.21.15.55:6817/710486852","heartbeat_front_addr":"172.21.15.55:6815/710486852","state":["exists","up"]},{"osd":2,"uuid":"21fd878f-a998-4d35-a233-91271bb42d99","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.92:6800","nonce":11860028},{"type":"v1","addr":"172.21.15.92:6801","nonce":11860028}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.92:6802","nonce":11860028},{"type":"v1","addr":"172.21.15.92:6803","nonce":11860028}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.92:6806","nonce":11860028},{"type":"v1","addr":"172.21.15.92:6807","nonce":11860028}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.92:6804","nonce":11860028},{"type":"v1","addr":"172.21.15.92:6805","nonce":11860028}]},"public_addr":"172.21.15.92:6801/11860028","cluster_addr":"172.21.15.92:6803/11860028","heartbeat_back_addr":"172.21.15.92:6807/11860028","heartbeat_front_addr":"172.21.15.92:6805/11860028","state":["exists","up"]},{"osd":3,"uuid":"0adbb14f-3c10-4c5f-86a3-c8403d1fd06d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":45,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.92:6808","nonce":3054594230},{"type":"v1","addr":"172.21.15.92:6809","nonce":3054594230}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.92:6810","nonce":3054594230},{"type":"v1","addr":"172.21.15.92:6811","nonce":3054594230}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.92:6814","nonce":3054594230},{"type":"v1","addr":"172.21.15.92:6815","nonce":3054594230}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.92:6812","nonce":3054594230},{"type":"v1","addr":"172.21.15.92:6813","nonce":3054594230}]},"public_addr":"172.21.15.92:6809/3054594230","cluster_addr":"172.21.15.92:6811/3054594230","heartbeat_back_addr":"172.21.15.92:6815/3054594230","heartbeat_front_addr":"172.21.15.92:6813/3054594230","state":["exists","up"]},{"osd":4,"uuid":"9e7e2276-3cd7-4e5d-b924-05cced71f94c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.118:6800","nonce":428921847},{"type":"v1","addr":"172.21.15.118:6801","nonce":428921847}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.118:6802","nonce":428921847},{"type":"v1","addr":"172.21.15.118:6803","nonce":428921847}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.118:6806","nonce":428921847},{"type":"v1","addr":"172.21.15.118:6807","nonce":428921847}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.118:6804","nonce":428921847},{"type":"v1","addr":"172.21.15.118:6805","nonce":428921847}]},"public_addr":"172.21.15.118:6801/428921847","cluster_addr":"172.21.15.118:6803/428921847","heartbeat_back_addr":"172.21.15.118:6807/428921847","heartbeat_front_addr":"172.21.15.118:6805/428921847","state":["exists","up"]},{"osd":5,"uuid":"6033b50a-0456-4d83-9df8-607d8c0f2121","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":42,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.118:6808","nonce":1404034565},{"type":"v1","addr":"172.21.15.118:6809","nonce":1404034565}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.118:6810","nonce":1404034565},{"type":"v1","addr":"172.21.15.118:6811","nonce":1404034565}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.118:6814","nonce":1404034565},{"type":"v1","addr":"172.21.15.118:6815","nonce":1404034565}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.118:6812","nonce":1404034565},{"type":"v1","addr":"172.21.15.118:6813","nonce":1404034565}]},"public_addr":"172.21.15.118:6809/1404034565","cluster_addr":"172.21.15.118:6811/1404034565","heartbeat_back_addr":"172.21.15.118:6815/1404034565","heartbeat_front_addr":"172.21.15.118:6813/1404034565","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T17:38:04.952911+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T17:38:30.863680+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T17:38:54.042173+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T17:39:19.063906+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T17:39:41.847098+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T17:40:06.810132+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.55:0/2090230953":"2024-04-16T17:36:29.767094+0000","172.21.15.55:6801/2138495580":"2024-04-16T17:36:29.767094+0000","172.21.15.55:6800/2138495580":"2024-04-16T17:36:29.767094+0000","172.21.15.55:0/373564568":"2024-04-16T17:36:29.767094+0000","172.21.15.55:6801/2925703698":"2024-04-16T17:36:02.369579+0000","172.21.15.55:6800/2925703698":"2024-04-16T17:36:02.369579+0000","172.21.15.55:0/4008873471":"2024-04-16T17:36:02.369579+0000","172.21.15.55:0/1611415603":"2024-04-16T17:36:02.369579+0000","172.21.15.55:0/1652946086":"2024-04-16T17:36:02.369579+0000","172.21.15.55:0/629282077":"2024-04-16T17:36:29.767094+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-04-15T17:40:23.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:22 smithi118 ceph-mon[33587]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-15T17:40:23.990 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-04-15T17:40:23.990 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-04-15T17:40:23.991 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-04-15T17:40:23.991 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-04-15T17:40:23.991 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-04-15T17:40:23.992 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-04-15T17:40:24.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:23 smithi092 ceph-mon[33096]: from='client.? 172.21.15.55:0/2141881101' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T17:40:24.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:23 smithi118 ceph-mon[33587]: from='client.? 172.21.15.55:0/2141881101' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T17:40:24.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:23 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/2141881101' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T17:40:24.394 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:40:24.395 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:40:24.448 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:40:24.449 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:40:24.682 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:40:24.682 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:40:25.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:24 smithi055 ceph-mon[29592]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-04-15T17:40:25.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:24 smithi092 ceph-mon[33096]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-04-15T17:40:25.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:24 smithi118 ceph-mon[33587]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-04-15T17:40:27.181 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:26 smithi055 ceph-mon[29592]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-04-15T17:40:27.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:26 smithi118 ceph-mon[33587]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-04-15T17:40:27.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:26 smithi092 ceph-mon[33096]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-04-15T17:40:29.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:28 smithi055 ceph-mon[29592]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:29.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:28 smithi118 ceph-mon[33587]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:29.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:28 smithi092 ceph-mon[33096]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:31.032 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:30 smithi055 ceph-mon[29592]: pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:31.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:30 smithi118 ceph-mon[33587]: pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:31.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:30 smithi092 ceph-mon[33096]: pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:32.082 INFO:teuthology.orchestra.run.smithi055.stdout:34359738400 2024-04-15T17:40:32.083 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-04-15T17:40:33.074 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:32 smithi055 ceph-mon[29592]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:33.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:32 smithi118 ceph-mon[33587]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:33.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:32 smithi092 ceph-mon[33096]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:34.115 INFO:teuthology.orchestra.run.smithi055.stdout:146028888076 2024-04-15T17:40:34.115 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-04-15T17:40:34.781 INFO:teuthology.orchestra.run.smithi055.stdout:55834574875 2024-04-15T17:40:34.781 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-04-15T17:40:35.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:34 smithi055 ceph-mon[29592]: pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:35.226 INFO:teuthology.orchestra.run.smithi055.stdout:111669149713 2024-04-15T17:40:35.227 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-04-15T17:40:35.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:34 smithi118 ceph-mon[33587]: pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:35.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:34 smithi092 ceph-mon[33096]: pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:35.635 INFO:teuthology.orchestra.run.smithi055.stdout:77309411350 2024-04-15T17:40:35.635 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-04-15T17:40:35.707 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:40:35.751 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:40:37.021 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:36 smithi055 ceph-mon[29592]: pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:37.026 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:40:37.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:36 smithi118 ceph-mon[33587]: pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:37.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:36 smithi092 ceph-mon[33096]: pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:38.304 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:40:38.775 INFO:teuthology.orchestra.run.smithi055.stdout:180388626441 2024-04-15T17:40:38.776 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-04-15T17:40:38.994 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:38 smithi055 ceph-mon[29592]: pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:39.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:38 smithi118 ceph-mon[33587]: pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:39.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:38 smithi092 ceph-mon[33096]: pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:39.530 INFO:teuthology.orchestra.run.smithi055.stdout:111669149714 2024-04-15T17:40:40.102 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:39 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/2573339620' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-04-15T17:40:40.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:39 smithi118 ceph-mon[33587]: from='client.? 172.21.15.55:0/2573339620' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-04-15T17:40:40.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:39 smithi092 ceph-mon[33096]: from='client.? 172.21.15.55:0/2573339620' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-04-15T17:40:41.026 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:40 smithi055 ceph-mon[29592]: pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:41.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:40 smithi118 ceph-mon[33587]: pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:41.351 INFO:teuthology.orchestra.run.smithi055.stdout:34359738402 2024-04-15T17:40:41.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:40 smithi092 ceph-mon[33096]: pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:41.473 INFO:tasks.cephadm.ceph_manager.ceph:need seq 111669149713 got 111669149714 for osd.3 2024-04-15T17:40:41.474 DEBUG:teuthology.parallel:result is None 2024-04-15T17:40:42.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:41 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/1106307520' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-04-15T17:40:42.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:41 smithi118 ceph-mon[33587]: from='client.? 172.21.15.55:0/1106307520' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-04-15T17:40:42.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:41 smithi092 ceph-mon[33096]: from='client.? 172.21.15.55:0/1106307520' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-04-15T17:40:42.710 INFO:teuthology.orchestra.run.smithi055.stdout:146028888078 2024-04-15T17:40:42.991 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:42 smithi055 ceph-mon[29592]: pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:42.991 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:42 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/471603925' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-04-15T17:40:43.018 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738400 got 34359738402 for osd.0 2024-04-15T17:40:43.018 DEBUG:teuthology.parallel:result is None 2024-04-15T17:40:43.285 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:42 smithi092 ceph-mon[33096]: pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:43.285 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:42 smithi092 ceph-mon[33096]: from='client.? 172.21.15.55:0/471603925' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-04-15T17:40:43.324 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:40:43.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:42 smithi118 ceph-mon[33587]: pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:43.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:42 smithi118 ceph-mon[33587]: from='client.? 172.21.15.55:0/471603925' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-04-15T17:40:44.523 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:40:44.751 INFO:teuthology.orchestra.run.smithi055.stdout:77309411353 2024-04-15T17:40:45.284 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:44 smithi055 ceph-mon[29592]: pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:45.284 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:44 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/1333440636' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-04-15T17:40:45.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:44 smithi118 ceph-mon[33587]: pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:45.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:44 smithi118 ceph-mon[33587]: from='client.? 172.21.15.55:0/1333440636' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-04-15T17:40:45.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:44 smithi092 ceph-mon[33096]: pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:45.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:44 smithi092 ceph-mon[33096]: from='client.? 172.21.15.55:0/1333440636' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-04-15T17:40:45.699 INFO:tasks.cephadm.ceph_manager.ceph:need seq 146028888076 got 146028888078 for osd.4 2024-04-15T17:40:45.699 DEBUG:teuthology.parallel:result is None 2024-04-15T17:40:46.875 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411350 got 77309411353 for osd.2 2024-04-15T17:40:46.875 DEBUG:teuthology.parallel:result is None 2024-04-15T17:40:47.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:46 smithi055 ceph-mon[29592]: pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:47.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:46 smithi118 ceph-mon[33587]: pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:47.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:46 smithi092 ceph-mon[33096]: pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:48.493 INFO:teuthology.orchestra.run.smithi055.stdout:180388626443 2024-04-15T17:40:48.629 INFO:teuthology.orchestra.run.smithi055.stdout:55834574878 2024-04-15T17:40:49.051 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:48 smithi055 ceph-mon[29592]: pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:49.051 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:48 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/3342380288' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-04-15T17:40:49.051 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:48 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/3631972080' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-04-15T17:40:49.077 INFO:tasks.cephadm.ceph_manager.ceph:need seq 180388626441 got 180388626443 for osd.5 2024-04-15T17:40:49.077 DEBUG:teuthology.parallel:result is None 2024-04-15T17:40:49.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:48 smithi118 ceph-mon[33587]: pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:49.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:48 smithi118 ceph-mon[33587]: from='client.? 172.21.15.55:0/3342380288' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-04-15T17:40:49.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:48 smithi118 ceph-mon[33587]: from='client.? 172.21.15.55:0/3631972080' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-04-15T17:40:49.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:48 smithi092 ceph-mon[33096]: pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:49.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:48 smithi092 ceph-mon[33096]: from='client.? 172.21.15.55:0/3342380288' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-04-15T17:40:49.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:48 smithi092 ceph-mon[33096]: from='client.? 172.21.15.55:0/3631972080' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-04-15T17:40:49.789 INFO:tasks.cephadm.ceph_manager.ceph:need seq 55834574875 got 55834574878 for osd.1 2024-04-15T17:40:49.789 DEBUG:teuthology.parallel:result is None 2024-04-15T17:40:49.789 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-04-15T17:40:49.789 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph pg dump --format=json 2024-04-15T17:40:50.041 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:40:51.266 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:50 smithi055 ceph-mon[29592]: pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:51.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:50 smithi118 ceph-mon[33587]: pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:51.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:50 smithi092 ceph-mon[33096]: pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:51.933 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:40:51.935 INFO:teuthology.orchestra.run.smithi055.stderr:dumped all 2024-04-15T17:40:52.668 INFO:teuthology.orchestra.run.smithi055.stdout:{"pg_ready":true,"pg_map":{"version":167,"stamp":"2024-04-15T17:40:51.817655+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":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"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":137,"ondisk_log_size":137,"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":170500,"kb_used_data":4188,"kb_used_omap":9,"kb_used_meta":166198,"kb_avail":562300412,"statfs":{"total":575970213888,"available":575795621888,"internally_reserved":0,"allocated":4288512,"data_stored":2750106,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9567,"internal_metadata":170187425},"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.002365"},"pg_stats":[{"pgid":"1.0","version":"21'137","reported_seq":257,"reported_epoch":46,"state":"active+clean","last_fresh":"2024-04-15T17:40:12.725291+0000","last_change":"2024-04-15T17:40:12.725291+0000","last_active":"2024-04-15T17:40:12.725291+0000","last_peered":"2024-04-15T17:40:12.725291+0000","last_clean":"2024-04-15T17:40:12.725291+0000","last_became_active":"2024-04-15T17:40:12.724887+0000","last_became_peered":"2024-04-15T17:40:12.724887+0000","last_unstale":"2024-04-15T17:40:12.725291+0000","last_undegraded":"2024-04-15T17:40:12.725291+0000","last_fullsized":"2024-04-15T17:40:12.725291+0000","mapping_epoch":45,"log_start":"0'0","ondisk_log_start":"0'0","created":20,"last_epoch_clean":46,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-04-15T17:38:58.335805+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-04-15T17:38:58.335805+0000","last_clean_scrub_stamp":"2024-04-15T17:38:58.335805+0000","objects_scrubbed":0,"log_size":137,"log_dups_size":0,"ondisk_log_size":137,"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-04-17T02:49:42.725626+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":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"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":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"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":137,"ondisk_log_size":137,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":42,"seq":180388626444,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28008,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717144,"statfs":{"total":95995035648,"available":95966355456,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":34,"seq":146028888080,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31596,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713556,"statfs":{"total":95995035648,"available":95962681344,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":26,"seq":111669149717,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28012,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717140,"statfs":{"total":95995035648,"available":95966351360,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":18,"seq":77309411354,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28016,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717136,"statfs":{"total":95995035648,"available":95966347264,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738404,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27436,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717716,"statfs":{"total":95995035648,"available":95966941184,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"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":[]},{"osd":1,"up_from":13,"seq":55834574879,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27432,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717720,"statfs":{"total":95995035648,"available":95966945280,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"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":[]}],"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-04-15T17:40:52.669 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph pg dump --format=json 2024-04-15T17:40:52.914 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:40:53.238 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:52 smithi055 ceph-mon[29592]: pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:53.238 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:52 smithi055 ceph-mon[29592]: from='client.14469 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T17:40:53.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:52 smithi118 ceph-mon[33587]: pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:53.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:52 smithi118 ceph-mon[33587]: from='client.14469 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T17:40:53.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:52 smithi092 ceph-mon[33096]: pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:53.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:52 smithi092 ceph-mon[33096]: from='client.14469 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T17:40:54.768 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:40:54.770 INFO:teuthology.orchestra.run.smithi055.stderr:dumped all 2024-04-15T17:40:55.081 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:54 smithi055 ceph-mon[29592]: pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:55.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:54 smithi118 ceph-mon[33587]: pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:55.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:54 smithi092 ceph-mon[33096]: pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:55.490 INFO:teuthology.orchestra.run.smithi055.stdout:{"pg_ready":true,"pg_map":{"version":168,"stamp":"2024-04-15T17:40:53.818042+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":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"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":137,"ondisk_log_size":137,"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":170500,"kb_used_data":4188,"kb_used_omap":9,"kb_used_meta":166198,"kb_avail":562300412,"statfs":{"total":575970213888,"available":575795621888,"internally_reserved":0,"allocated":4288512,"data_stored":2750106,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9567,"internal_metadata":170187425},"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.002380"},"pg_stats":[{"pgid":"1.0","version":"21'137","reported_seq":257,"reported_epoch":46,"state":"active+clean","last_fresh":"2024-04-15T17:40:12.725291+0000","last_change":"2024-04-15T17:40:12.725291+0000","last_active":"2024-04-15T17:40:12.725291+0000","last_peered":"2024-04-15T17:40:12.725291+0000","last_clean":"2024-04-15T17:40:12.725291+0000","last_became_active":"2024-04-15T17:40:12.724887+0000","last_became_peered":"2024-04-15T17:40:12.724887+0000","last_unstale":"2024-04-15T17:40:12.725291+0000","last_undegraded":"2024-04-15T17:40:12.725291+0000","last_fullsized":"2024-04-15T17:40:12.725291+0000","mapping_epoch":45,"log_start":"0'0","ondisk_log_start":"0'0","created":20,"last_epoch_clean":46,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-04-15T17:38:58.335805+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-04-15T17:38:58.335805+0000","last_clean_scrub_stamp":"2024-04-15T17:38:58.335805+0000","objects_scrubbed":0,"log_size":137,"log_dups_size":0,"ondisk_log_size":137,"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-04-17T02:49:42.725626+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":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"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":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"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":137,"ondisk_log_size":137,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":42,"seq":180388626444,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28008,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717144,"statfs":{"total":95995035648,"available":95966355456,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":34,"seq":146028888081,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31596,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713556,"statfs":{"total":95995035648,"available":95962681344,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":26,"seq":111669149717,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28012,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717140,"statfs":{"total":95995035648,"available":95966351360,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":18,"seq":77309411355,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28016,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717136,"statfs":{"total":95995035648,"available":95966347264,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738405,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27436,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717716,"statfs":{"total":95995035648,"available":95966941184,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"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":[]},{"osd":1,"up_from":13,"seq":55834574880,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27432,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717720,"statfs":{"total":95995035648,"available":95966945280,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"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":[]}],"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-04-15T17:40:55.491 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-04-15T17:40:55.491 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-04-15T17:40:55.491 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-04-15T17:40:55.491 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- ceph health --format=json 2024-04-15T17:40:55.736 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:40:56.113 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:56 smithi055 ceph-mon[29592]: from='client.14475 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T17:40:56.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:56 smithi118 ceph-mon[33587]: from='client.14475 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T17:40:56.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:56 smithi092 ceph-mon[33096]: from='client.14475 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T17:40:57.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:57 smithi055 ceph-mon[29592]: pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:57.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:57 smithi118 ceph-mon[33587]: pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:57.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:57 smithi092 ceph-mon[33096]: pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:57.799 INFO:teuthology.orchestra.run.smithi055.stdout: 2024-04-15T17:40:57.800 INFO:teuthology.orchestra.run.smithi055.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-04-15T17:40:58.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:58 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/2783835022' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-04-15T17:40:58.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:58 smithi118 ceph-mon[33587]: from='client.? 172.21.15.55:0/2783835022' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-04-15T17:40:58.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:58 smithi092 ceph-mon[33096]: from='client.? 172.21.15.55:0/2783835022' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-04-15T17:40:58.467 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-04-15T17:40:58.467 INFO:tasks.cephadm:Setup complete, yielding 2024-04-15T17:40:58.468 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-04-15T17:40:58.481 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi055.front.sepia.ceph.com 2024-04-15T17:40:58.481 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 -- bash -c 'set -ex 2024-04-15T17:40:58.482 DEBUG:teuthology.orchestra.run.smithi055:> HOSTNAMES=$(ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"') 2024-04-15T17:40:58.482 DEBUG:teuthology.orchestra.run.smithi055:> for host in $HOSTNAMES; do 2024-04-15T17:40:58.482 DEBUG:teuthology.orchestra.run.smithi055:> # find the hostname for "host.c" which will have no mgr 2024-04-15T17:40:58.482 DEBUG:teuthology.orchestra.run.smithi055:> HAS_MGRS=$(ceph orch ps --hostname ${host} --format json | jq '"'"'any(.daemon_type == "mgr")'"'"') 2024-04-15T17:40:58.482 DEBUG:teuthology.orchestra.run.smithi055:> if [ "$HAS_MGRS" == "false" ]; then 2024-04-15T17:40:58.482 DEBUG:teuthology.orchestra.run.smithi055:> HOST_C="${host}" 2024-04-15T17:40:58.482 DEBUG:teuthology.orchestra.run.smithi055:> fi 2024-04-15T17:40:58.482 DEBUG:teuthology.orchestra.run.smithi055:> done 2024-04-15T17:40:58.482 DEBUG:teuthology.orchestra.run.smithi055:> # One last thing to worry about before draining the host 2024-04-15T17:40:58.482 DEBUG:teuthology.orchestra.run.smithi055:> # is that the teuthology test tends to put the explicit 2024-04-15T17:40:58.482 DEBUG:teuthology.orchestra.run.smithi055:> # hostnames in the placement for the mon service. 2024-04-15T17:40:58.483 DEBUG:teuthology.orchestra.run.smithi055:> # We want to make sure we can drain without providing 2024-04-15T17:40:58.483 DEBUG:teuthology.orchestra.run.smithi055:> # --force and there is a check for the host being removed 2024-04-15T17:40:58.483 DEBUG:teuthology.orchestra.run.smithi055:> # being listed explicitly in the placements. Therefore, 2024-04-15T17:40:58.483 DEBUG:teuthology.orchestra.run.smithi055:> # we should remove it from the mon placement. 2024-04-15T17:40:58.483 DEBUG:teuthology.orchestra.run.smithi055:> ceph orch ls mon --export > mon.yaml 2024-04-15T17:40:58.483 DEBUG:teuthology.orchestra.run.smithi055:> sed /"$HOST_C"/d mon.yaml > mon_adjusted.yaml 2024-04-15T17:40:58.483 DEBUG:teuthology.orchestra.run.smithi055:> ceph orch apply -i mon_adjusted.yaml 2024-04-15T17:40:58.483 DEBUG:teuthology.orchestra.run.smithi055:> # now drain that host 2024-04-15T17:40:58.483 DEBUG:teuthology.orchestra.run.smithi055:> ceph orch host drain $HOST_C --zap-osd-devices 2024-04-15T17:40:58.483 DEBUG:teuthology.orchestra.run.smithi055:> # wait for drain to complete 2024-04-15T17:40:58.483 DEBUG:teuthology.orchestra.run.smithi055:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-04-15T17:40:58.483 DEBUG:teuthology.orchestra.run.smithi055:> while [ "$HOST_C_DAEMONS" != "No daemons reported" ]; do 2024-04-15T17:40:58.484 DEBUG:teuthology.orchestra.run.smithi055:> sleep 15 2024-04-15T17:40:58.484 DEBUG:teuthology.orchestra.run.smithi055:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-04-15T17:40:58.484 DEBUG:teuthology.orchestra.run.smithi055:> done 2024-04-15T17:40:58.484 DEBUG:teuthology.orchestra.run.smithi055:> # we want to check the ability to remove the host from 2024-04-15T17:40:58.484 DEBUG:teuthology.orchestra.run.smithi055:> # the CRUSH map, so we should first verify the host is in 2024-04-15T17:40:58.484 DEBUG:teuthology.orchestra.run.smithi055:> # the CRUSH map. 2024-04-15T17:40:58.484 DEBUG:teuthology.orchestra.run.smithi055:> ceph osd getcrushmap -o compiled-crushmap 2024-04-15T17:40:58.484 DEBUG:teuthology.orchestra.run.smithi055:> crushtool -d compiled-crushmap -o crushmap.txt 2024-04-15T17:40:58.485 DEBUG:teuthology.orchestra.run.smithi055:> CRUSH_MAP=$(cat crushmap.txt) 2024-04-15T17:40:58.485 DEBUG:teuthology.orchestra.run.smithi055:> if ! grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-04-15T17:40:58.485 DEBUG:teuthology.orchestra.run.smithi055:> printf "Expected to see $HOST_C in CRUSH map. Saw:\n\n$CRUSH_MAP" 2024-04-15T17:40:58.485 DEBUG:teuthology.orchestra.run.smithi055:> exit 1 2024-04-15T17:40:58.485 DEBUG:teuthology.orchestra.run.smithi055:> fi 2024-04-15T17:40:58.485 DEBUG:teuthology.orchestra.run.smithi055:> # If the drain was successful, we should be able to remove the 2024-04-15T17:40:58.485 DEBUG:teuthology.orchestra.run.smithi055:> # host without force with no issues. If there are still daemons 2024-04-15T17:40:58.485 DEBUG:teuthology.orchestra.run.smithi055:> # we will get a response telling us to drain the host and a 2024-04-15T17:40:58.485 DEBUG:teuthology.orchestra.run.smithi055:> # non-zero return code 2024-04-15T17:40:58.485 DEBUG:teuthology.orchestra.run.smithi055:> ceph orch host rm $HOST_C --rm-crush-entry 2024-04-15T17:40:58.485 DEBUG:teuthology.orchestra.run.smithi055:> # verify we'"'"'ve successfully removed the host from the CRUSH map 2024-04-15T17:40:58.486 DEBUG:teuthology.orchestra.run.smithi055:> sleep 30 2024-04-15T17:40:58.486 DEBUG:teuthology.orchestra.run.smithi055:> ceph osd getcrushmap -o compiled-crushmap 2024-04-15T17:40:58.486 DEBUG:teuthology.orchestra.run.smithi055:> crushtool -d compiled-crushmap -o crushmap.txt 2024-04-15T17:40:58.486 DEBUG:teuthology.orchestra.run.smithi055:> CRUSH_MAP=$(cat crushmap.txt) 2024-04-15T17:40:58.486 DEBUG:teuthology.orchestra.run.smithi055:> if grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-04-15T17:40:58.486 DEBUG:teuthology.orchestra.run.smithi055:> printf "Saw $HOST_C in CRUSH map after it should have been removed.\n\n$CRUSH_MAP" 2024-04-15T17:40:58.486 DEBUG:teuthology.orchestra.run.smithi055:> exit 1 2024-04-15T17:40:58.486 DEBUG:teuthology.orchestra.run.smithi055:> fi 2024-04-15T17:40:58.486 DEBUG:teuthology.orchestra.run.smithi055:> ' 2024-04-15T17:40:58.736 INFO:teuthology.orchestra.run.smithi055.stderr:Inferring config /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T17:40:59.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:40:59 smithi055 ceph-mon[29592]: pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:59.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:40:59 smithi118 ceph-mon[33587]: pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:40:59.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:40:59 smithi092 ceph-mon[33096]: pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:41:00.353 INFO:teuthology.orchestra.run.smithi055.stderr:++ ceph orch host ls --format json 2024-04-15T17:41:00.353 INFO:teuthology.orchestra.run.smithi055.stderr:++ jq -r '.[] | .hostname' 2024-04-15T17:41:00.607 INFO:teuthology.orchestra.run.smithi055.stderr:+ HOSTNAMES='smithi055 2024-04-15T17:41:00.607 INFO:teuthology.orchestra.run.smithi055.stderr:smithi092 2024-04-15T17:41:00.607 INFO:teuthology.orchestra.run.smithi055.stderr:smithi118' 2024-04-15T17:41:00.607 INFO:teuthology.orchestra.run.smithi055.stderr:+ for host in $HOSTNAMES 2024-04-15T17:41:00.608 INFO:teuthology.orchestra.run.smithi055.stderr:++ ceph orch ps --hostname smithi055 --format json 2024-04-15T17:41:00.608 INFO:teuthology.orchestra.run.smithi055.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-04-15T17:41:00.948 INFO:teuthology.orchestra.run.smithi055.stderr:+ HAS_MGRS=true 2024-04-15T17:41:00.948 INFO:teuthology.orchestra.run.smithi055.stderr:+ '[' true == false ']' 2024-04-15T17:41:00.948 INFO:teuthology.orchestra.run.smithi055.stderr:+ for host in $HOSTNAMES 2024-04-15T17:41:00.948 INFO:teuthology.orchestra.run.smithi055.stderr:++ ceph orch ps --hostname smithi092 --format json 2024-04-15T17:41:00.948 INFO:teuthology.orchestra.run.smithi055.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-04-15T17:41:01.287 INFO:teuthology.orchestra.run.smithi055.stderr:+ HAS_MGRS=true 2024-04-15T17:41:01.287 INFO:teuthology.orchestra.run.smithi055.stderr:+ '[' true == false ']' 2024-04-15T17:41:01.287 INFO:teuthology.orchestra.run.smithi055.stderr:+ for host in $HOSTNAMES 2024-04-15T17:41:01.287 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:01 smithi055 ceph-mon[29592]: pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:41:01.287 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:01 smithi055 ceph-mon[29592]: from='client.14487 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T17:41:01.288 INFO:teuthology.orchestra.run.smithi055.stderr:++ ceph orch ps --hostname smithi118 --format json 2024-04-15T17:41:01.288 INFO:teuthology.orchestra.run.smithi055.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-04-15T17:41:01.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:01 smithi118 ceph-mon[33587]: pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:41:01.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:01 smithi118 ceph-mon[33587]: from='client.14487 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T17:41:01.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:01 smithi092 ceph-mon[33096]: pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:41:01.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:01 smithi092 ceph-mon[33096]: from='client.14487 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T17:41:01.627 INFO:teuthology.orchestra.run.smithi055.stderr:+ HAS_MGRS=false 2024-04-15T17:41:01.627 INFO:teuthology.orchestra.run.smithi055.stderr:+ '[' false == false ']' 2024-04-15T17:41:01.627 INFO:teuthology.orchestra.run.smithi055.stderr:+ HOST_C=smithi118 2024-04-15T17:41:01.627 INFO:teuthology.orchestra.run.smithi055.stderr:+ ceph orch ls mon --export 2024-04-15T17:41:01.963 INFO:teuthology.orchestra.run.smithi055.stderr:+ sed /smithi118/d mon.yaml 2024-04-15T17:41:01.964 INFO:teuthology.orchestra.run.smithi055.stderr:+ ceph orch apply -i mon_adjusted.yaml 2024-04-15T17:41:02.299 INFO:teuthology.orchestra.run.smithi055.stdout:Scheduled mon update... 2024-04-15T17:41:02.300 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:02 smithi055 ceph-mon[29592]: from='client.14493 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi055", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T17:41:02.300 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:02 smithi055 ceph-mon[29592]: from='client.14499 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi092", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T17:41:02.300 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:02 smithi055 ceph-mon[29592]: from='client.14505 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi118", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T17:41:02.312 INFO:teuthology.orchestra.run.smithi055.stderr:+ ceph orch host drain smithi118 --zap-osd-devices 2024-04-15T17:41:02.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:02 smithi118 ceph-mon[33587]: from='client.14493 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi055", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T17:41:02.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:02 smithi118 ceph-mon[33587]: from='client.14499 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi092", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T17:41:02.350 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:02 smithi118 ceph-mon[33587]: from='client.14505 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi118", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T17:41:02.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:02 smithi092 ceph-mon[33096]: from='client.14493 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi055", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T17:41:02.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:02 smithi092 ceph-mon[33096]: from='client.14499 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi092", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T17:41:02.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:02 smithi092 ceph-mon[33096]: from='client.14505 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi118", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T17:41:02.643 INFO:teuthology.orchestra.run.smithi055.stdout:Scheduled to remove the following daemons from host 'smithi118' 2024-04-15T17:41:02.643 INFO:teuthology.orchestra.run.smithi055.stdout:type id 2024-04-15T17:41:02.643 INFO:teuthology.orchestra.run.smithi055.stdout:-------------------- --------------- 2024-04-15T17:41:02.643 INFO:teuthology.orchestra.run.smithi055.stdout:mon c 2024-04-15T17:41:02.644 INFO:teuthology.orchestra.run.smithi055.stdout:osd 4 2024-04-15T17:41:02.644 INFO:teuthology.orchestra.run.smithi055.stdout:osd 5 2024-04-15T17:41:02.656 INFO:teuthology.orchestra.run.smithi055.stderr:++ ceph orch ps --hostname smithi118 2024-04-15T17:41:02.997 INFO:teuthology.orchestra.run.smithi055.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-15T17:41:02.997 INFO:teuthology.orchestra.run.smithi055.stderr:mon.c smithi118 running (3m) 58s ago 3m 40.4M 2048M 19.0.0-3080-gc2d8c315 259793512b73 729fb3aa3290 2024-04-15T17:41:02.997 INFO:teuthology.orchestra.run.smithi055.stderr:osd.4 smithi118 running (85s) 58s ago 85s 39.6M 10.3G 19.0.0-3080-gc2d8c315 259793512b73 190f458c511a 2024-04-15T17:41:02.997 INFO:teuthology.orchestra.run.smithi055.stderr:osd.5 smithi118 running (60s) 58s ago 60s 12.7M 10.3G 19.0.0-3080-gc2d8c315 259793512b73 0d5da1aec5b3 ' 2024-04-15T17:41:02.997 INFO:teuthology.orchestra.run.smithi055.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-15T17:41:02.997 INFO:teuthology.orchestra.run.smithi055.stderr:mon.c smithi118 running (3m) 58s ago 3m 40.4M 2048M 19.0.0-3080-gc2d8c315 259793512b73 729fb3aa3290 2024-04-15T17:41:02.997 INFO:teuthology.orchestra.run.smithi055.stderr:osd.4 smithi118 running (85s) 58s ago 85s 39.6M 10.3G 19.0.0-3080-gc2d8c315 259793512b73 190f458c511a 2024-04-15T17:41:02.997 INFO:teuthology.orchestra.run.smithi055.stderr:osd.5 smithi118 running (60s) 58s ago 60s 12.7M 10.3G 19.0.0-3080-gc2d8c315 259793512b73 0d5da1aec5b3 ' '!=' 'No daemons reported' ']' 2024-04-15T17:41:02.997 INFO:teuthology.orchestra.run.smithi055.stderr:+ sleep 15 2024-04-15T17:41:03.602 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:03 smithi118 ceph-mon[33587]: pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:41:03.602 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:03 smithi118 ceph-mon[33587]: from='client.14511 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:41:03.602 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:03 smithi118 ceph-mon[33587]: from='client.14517 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:41:03.602 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:03 smithi118 ceph-mon[33587]: Saving service mon spec with placement smithi055:172.21.15.55=a;smithi092:172.21.15.92=b;count:3 2024-04-15T17:41:03.602 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:03 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:03.602 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:03 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:41:03.602 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:03 smithi118 ceph-mon[33587]: from='client.14523 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi118", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:41:03.602 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:03 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:03.602 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:03 smithi118 ceph-mon[33587]: Added label _no_schedule to host smithi118 2024-04-15T17:41:03.603 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:03 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:03.603 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:03 smithi118 ceph-mon[33587]: Added label _no_conf_keyring to host smithi118 2024-04-15T17:41:03.603 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:03 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-04-15T17:41:03.603 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:03 smithi118 ceph-mon[33587]: osd.4 crush weight is 0.0872955322265625 2024-04-15T17:41:03.603 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:03 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-04-15T17:41:03.603 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:03 smithi118 ceph-mon[33587]: osd.5 crush weight is 0.0872955322265625 2024-04-15T17:41:03.603 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:03 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:41:03.603 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:03 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:41:03.603 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:03 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:03.603 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:03 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:03.603 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:03 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:03.603 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:03 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:03.603 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:03 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-04-15T17:41:03.603 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:03 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-04-15T17:41:03.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:03 smithi055 ceph-mon[29592]: pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:41:03.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:03 smithi055 ceph-mon[29592]: from='client.14511 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:41:03.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:03 smithi055 ceph-mon[29592]: from='client.14517 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:41:03.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:03 smithi055 ceph-mon[29592]: Saving service mon spec with placement smithi055:172.21.15.55=a;smithi092:172.21.15.92=b;count:3 2024-04-15T17:41:03.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:03 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:03.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:03 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:41:03.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:03 smithi055 ceph-mon[29592]: from='client.14523 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi118", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:41:03.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:03 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:03.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:03 smithi055 ceph-mon[29592]: Added label _no_schedule to host smithi118 2024-04-15T17:41:03.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:03 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:03.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:03 smithi055 ceph-mon[29592]: Added label _no_conf_keyring to host smithi118 2024-04-15T17:41:03.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:03 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-04-15T17:41:03.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:03 smithi055 ceph-mon[29592]: osd.4 crush weight is 0.0872955322265625 2024-04-15T17:41:03.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:03 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-04-15T17:41:03.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:03 smithi055 ceph-mon[29592]: osd.5 crush weight is 0.0872955322265625 2024-04-15T17:41:03.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:03 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:41:03.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:03 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:41:03.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:03 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:03.627 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:03 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:03.627 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:03 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:03.627 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:03 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:03.627 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:03 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-04-15T17:41:03.627 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:03 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-04-15T17:41:03.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:03 smithi092 ceph-mon[33096]: pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:41:03.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:03 smithi092 ceph-mon[33096]: from='client.14511 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:41:03.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:03 smithi092 ceph-mon[33096]: from='client.14517 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:41:03.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:03 smithi092 ceph-mon[33096]: Saving service mon spec with placement smithi055:172.21.15.55=a;smithi092:172.21.15.92=b;count:3 2024-04-15T17:41:03.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:03 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:03.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:03 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:41:03.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:03 smithi092 ceph-mon[33096]: from='client.14523 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi118", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:41:03.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:03 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:03.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:03 smithi092 ceph-mon[33096]: Added label _no_schedule to host smithi118 2024-04-15T17:41:03.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:03 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:03.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:03 smithi092 ceph-mon[33096]: Added label _no_conf_keyring to host smithi118 2024-04-15T17:41:03.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:03 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-04-15T17:41:03.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:03 smithi092 ceph-mon[33096]: osd.4 crush weight is 0.0872955322265625 2024-04-15T17:41:03.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:03 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-04-15T17:41:03.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:03 smithi092 ceph-mon[33096]: osd.5 crush weight is 0.0872955322265625 2024-04-15T17:41:03.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:03 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:41:03.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:03 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:41:03.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:03 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:03.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:03 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:03.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:03 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:03.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:03 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:03.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:03 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-04-15T17:41:03.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:03 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-04-15T17:41:04.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:04 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mon-a[29587]: 2024-04-15T17:41:04.104+0000 7f2c3b0b3700 -1 mon.a@0(leader).osd e47 definitely_dead 0 2024-04-15T17:41:04.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:04 smithi055 ceph-mon[29592]: Removing smithi118:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T17:41:04.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:04 smithi055 ceph-mon[29592]: from='client.14529 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi118", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:41:04.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:04 smithi055 ceph-mon[29592]: Removing smithi118:/etc/ceph/ceph.client.admin.keyring 2024-04-15T17:41:04.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:04 smithi055 ceph-mon[29592]: Removing smithi118:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.client.admin.keyring 2024-04-15T17:41:04.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:04 smithi055 ceph-mon[29592]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:04.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:04 smithi055 ceph-mon[29592]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:04.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:04 smithi055 ceph-mon[29592]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-04-15T17:41:04.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:04 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-04-15T17:41:04.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:04 smithi055 ceph-mon[29592]: osdmap e47: 6 total, 6 up, 6 in 2024-04-15T17:41:04.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:04 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:04.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:04 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-04-15T17:41:04.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:04 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-04-15T17:41:04.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:04 smithi055 ceph-mon[29592]: Health check failed: 1 osds down (OSD_DOWN) 2024-04-15T17:41:04.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:04 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-04-15T17:41:04.377 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:04 smithi055 ceph-mon[29592]: osdmap e48: 6 total, 5 up, 6 in 2024-04-15T17:41:04.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:04 smithi118 ceph-mon[33587]: Removing smithi118:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T17:41:04.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:04 smithi118 ceph-mon[33587]: from='client.14529 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi118", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:41:04.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:04 smithi118 ceph-mon[33587]: Removing smithi118:/etc/ceph/ceph.client.admin.keyring 2024-04-15T17:41:04.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:04 smithi118 ceph-mon[33587]: Removing smithi118:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.client.admin.keyring 2024-04-15T17:41:04.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:04 smithi118 ceph-mon[33587]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:04.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:04 smithi118 ceph-mon[33587]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:04.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:04 smithi118 ceph-mon[33587]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-04-15T17:41:04.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:04 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-04-15T17:41:04.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:04 smithi118 ceph-mon[33587]: osdmap e47: 6 total, 6 up, 6 in 2024-04-15T17:41:04.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:04 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:04.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:04 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-04-15T17:41:04.602 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:04 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-04-15T17:41:04.602 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:04 smithi118 ceph-mon[33587]: Health check failed: 1 osds down (OSD_DOWN) 2024-04-15T17:41:04.602 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:04 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-04-15T17:41:04.602 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:04 smithi118 ceph-mon[33587]: osdmap e48: 6 total, 5 up, 6 in 2024-04-15T17:41:04.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:04 smithi092 ceph-mon[33096]: Removing smithi118:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T17:41:04.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:04 smithi092 ceph-mon[33096]: from='client.14529 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi118", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:41:04.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:04 smithi092 ceph-mon[33096]: Removing smithi118:/etc/ceph/ceph.client.admin.keyring 2024-04-15T17:41:04.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:04 smithi092 ceph-mon[33096]: Removing smithi118:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.client.admin.keyring 2024-04-15T17:41:04.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:04 smithi092 ceph-mon[33096]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:04.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:04 smithi092 ceph-mon[33096]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:04.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:04 smithi092 ceph-mon[33096]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-04-15T17:41:04.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:04 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-04-15T17:41:04.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:04 smithi092 ceph-mon[33096]: osdmap e47: 6 total, 6 up, 6 in 2024-04-15T17:41:04.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:04 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:04.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:04 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-04-15T17:41:04.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:04 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-04-15T17:41:04.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:04 smithi092 ceph-mon[33096]: Health check failed: 1 osds down (OSD_DOWN) 2024-04-15T17:41:04.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:04 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-04-15T17:41:04.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:04 smithi092 ceph-mon[33096]: osdmap e48: 6 total, 5 up, 6 in 2024-04-15T17:41:05.018 INFO:journalctl@ceph.osd.4.smithi118.stdout:Apr 15 17:41:04 smithi118 systemd[1]: Stopping Ceph osd.4 for 6c2710cc-fb4e-11ee-bc8f-c7b262605968... 2024-04-15T17:41:05.311 INFO:journalctl@ceph.osd.4.smithi118.stdout:Apr 15 17:41:05 smithi118 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-4[37906]: 2024-04-15T17:41:05.012+0000 7f12de4ad700 -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-04-15T17:41:05.312 INFO:journalctl@ceph.osd.4.smithi118.stdout:Apr 15 17:41:05 smithi118 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-4[37906]: 2024-04-15T17:41:05.012+0000 7f12de4ad700 -1 osd.4 47 *** Got signal Terminated *** 2024-04-15T17:41:05.312 INFO:journalctl@ceph.osd.4.smithi118.stdout:Apr 15 17:41:05 smithi118 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-4[37906]: 2024-04-15T17:41:05.012+0000 7f12de4ad700 -1 osd.4 47 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-15T17:41:05.600 INFO:journalctl@ceph.osd.4.smithi118.stdout:Apr 15 17:41:05 smithi118 podman[47217]: 2024-04-15 17:41:05.54558574 +0000 UTC m=+0.641475082 container died 190f458c511ad583be05929a2ce98859736e24accdd9cbe03deabc74efa87013 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-4, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, GIT_BRANCH=HEAD, RELEASE=main-c2d8c31, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240409, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image, io.buildah.version=1.33.5, ceph=True) 2024-04-15T17:41:05.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:05 smithi118 ceph-mon[33587]: pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:41:05.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:05 smithi118 ceph-mon[33587]: osd.5 weight is now 0.0 2024-04-15T17:41:05.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:05 smithi118 ceph-mon[33587]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:05.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:05 smithi118 ceph-mon[33587]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-04-15T17:41:05.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:05 smithi118 ceph-mon[33587]: osd.4 now down 2024-04-15T17:41:05.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:05 smithi118 ceph-mon[33587]: Removing daemon osd.4 from smithi118 -- ports [] 2024-04-15T17:41:05.601 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:05 smithi118 ceph-mon[33587]: osdmap e49: 6 total, 5 up, 6 in 2024-04-15T17:41:05.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:05 smithi055 ceph-mon[29592]: pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:41:05.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:05 smithi055 ceph-mon[29592]: osd.5 weight is now 0.0 2024-04-15T17:41:05.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:05 smithi055 ceph-mon[29592]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:05.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:05 smithi055 ceph-mon[29592]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-04-15T17:41:05.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:05 smithi055 ceph-mon[29592]: osd.4 now down 2024-04-15T17:41:05.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:05 smithi055 ceph-mon[29592]: Removing daemon osd.4 from smithi118 -- ports [] 2024-04-15T17:41:05.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:05 smithi055 ceph-mon[29592]: osdmap e49: 6 total, 5 up, 6 in 2024-04-15T17:41:05.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:05 smithi092 ceph-mon[33096]: pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:41:05.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:05 smithi092 ceph-mon[33096]: osd.5 weight is now 0.0 2024-04-15T17:41:05.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:05 smithi092 ceph-mon[33096]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:05.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:05 smithi092 ceph-mon[33096]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-04-15T17:41:05.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:05 smithi092 ceph-mon[33096]: osd.4 now down 2024-04-15T17:41:05.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:05 smithi092 ceph-mon[33096]: Removing daemon osd.4 from smithi118 -- ports [] 2024-04-15T17:41:05.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:05 smithi092 ceph-mon[33096]: osdmap e49: 6 total, 5 up, 6 in 2024-04-15T17:41:06.276 INFO:journalctl@ceph.osd.4.smithi118.stdout:Apr 15 17:41:06 smithi118 podman[47217]: 2024-04-15 17:41:06.021918618 +0000 UTC m=+1.117808035 container cleanup 190f458c511ad583be05929a2ce98859736e24accdd9cbe03deabc74efa87013 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-4, ceph=True, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, io.buildah.version=1.33.5, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, 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.build-date=20240409, org.label-schema.name=CentOS Stream 8 Base Image, RELEASE=main-c2d8c31, org.label-schema.vendor=CentOS) 2024-04-15T17:41:06.276 INFO:journalctl@ceph.osd.4.smithi118.stdout:Apr 15 17:41:06 smithi118 bash[47217]: ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-4 2024-04-15T17:41:06.600 INFO:journalctl@ceph.osd.4.smithi118.stdout:Apr 15 17:41:06 smithi118 podman[47234]: 2024-04-15 17:41:06.273011592 +0000 UTC m=+0.726948507 container remove 190f458c511ad583be05929a2ce98859736e24accdd9cbe03deabc74efa87013 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-4, io.buildah.version=1.33.5, org.label-schema.name=CentOS Stream 8 Base Image, GIT_CLEAN=True, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, RELEASE=main-c2d8c31, GIT_BRANCH=HEAD, ceph=True, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240409) 2024-04-15T17:41:06.913 INFO:journalctl@ceph.osd.4.smithi118.stdout:Apr 15 17:41:06 smithi118 podman[47324]: 2024-04-15 17:41:06.524664815 +0000 UTC m=+0.017716866 image pull 259793512b732efd8e04a33aa28c6de3675c47d120bc226206521425d246003e quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163 2024-04-15T17:41:06.913 INFO:journalctl@ceph.osd.4.smithi118.stdout:Apr 15 17:41:06 smithi118 podman[47324]: 2024-04-15 17:41:06.623730191 +0000 UTC m=+0.116782214 container create df45aa9a0bee344cb4cfd956a1388615087e69492d1786b7f3e03da3b9a20aa5 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-4-deactivate, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 8 Base Image, ceph=True, GIT_BRANCH=HEAD, io.buildah.version=1.33.5, CEPH_POINT_RELEASE=, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, RELEASE=main-c2d8c31, GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.build-date=20240409, org.label-schema.schema-version=1.0) 2024-04-15T17:41:06.913 INFO:journalctl@ceph.osd.4.smithi118.stdout:Apr 15 17:41:06 smithi118 podman[47324]: 2024-04-15 17:41:06.834625795 +0000 UTC m=+0.327677820 container init df45aa9a0bee344cb4cfd956a1388615087e69492d1786b7f3e03da3b9a20aa5 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-4-deactivate, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, ceph=True, org.label-schema.license=GPLv2, GIT_CLEAN=True, org.label-schema.build-date=20240409, org.label-schema.name=CentOS Stream 8 Base Image, RELEASE=main-c2d8c31, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5) 2024-04-15T17:41:06.913 INFO:journalctl@ceph.osd.4.smithi118.stdout:Apr 15 17:41:06 smithi118 podman[47324]: 2024-04-15 17:41:06.838054378 +0000 UTC m=+0.331106411 container start df45aa9a0bee344cb4cfd956a1388615087e69492d1786b7f3e03da3b9a20aa5 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-4-deactivate, org.label-schema.name=CentOS Stream 8 Base Image, ceph=True, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240409, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-c2d8c31, io.buildah.version=1.33.5, GIT_CLEAN=True, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67) 2024-04-15T17:41:06.913 INFO:journalctl@ceph.osd.4.smithi118.stdout:Apr 15 17:41:06 smithi118 podman[47324]: 2024-04-15 17:41:06.909508303 +0000 UTC m=+0.402560330 container attach df45aa9a0bee344cb4cfd956a1388615087e69492d1786b7f3e03da3b9a20aa5 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-4-deactivate, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240409, org.label-schema.name=CentOS Stream 8 Base Image, RELEASE=main-c2d8c31, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, ceph=True, org.label-schema.vendor=CentOS, io.buildah.version=1.33.5, GIT_CLEAN=True, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD) 2024-04-15T17:41:07.297 INFO:journalctl@ceph.osd.4.smithi118.stdout:Apr 15 17:41:07 smithi118 podman[47324]: 2024-04-15 17:41:07.124037701 +0000 UTC m=+0.617089735 container died df45aa9a0bee344cb4cfd956a1388615087e69492d1786b7f3e03da3b9a20aa5 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-4-deactivate, org.label-schema.build-date=20240409, org.label-schema.name=CentOS Stream 8 Base Image, RELEASE=main-c2d8c31, io.buildah.version=1.33.5, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, GIT_CLEAN=True, ceph=True, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS) 2024-04-15T17:41:07.572 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:07 smithi118 ceph-mon[33587]: pgmap v177: 1 pgs: 1 remapped+peering; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:41:07.572 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:07 smithi118 ceph-mon[33587]: osdmap e50: 6 total, 5 up, 6 in 2024-04-15T17:41:07.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:07 smithi055 ceph-mon[29592]: pgmap v177: 1 pgs: 1 remapped+peering; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:41:07.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:07 smithi055 ceph-mon[29592]: osdmap e50: 6 total, 5 up, 6 in 2024-04-15T17:41:07.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:07 smithi092 ceph-mon[33096]: pgmap v177: 1 pgs: 1 remapped+peering; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:41:07.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:07 smithi092 ceph-mon[33096]: osdmap e50: 6 total, 5 up, 6 in 2024-04-15T17:41:07.850 INFO:journalctl@ceph.osd.4.smithi118.stdout:Apr 15 17:41:07 smithi118 podman[47351]: 2024-04-15 17:41:07.696204682 +0000 UTC m=+0.566332221 container remove df45aa9a0bee344cb4cfd956a1388615087e69492d1786b7f3e03da3b9a20aa5 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-4-deactivate, GIT_CLEAN=True, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240409, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, io.buildah.version=1.33.5, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, RELEASE=main-c2d8c31) 2024-04-15T17:41:07.851 INFO:journalctl@ceph.osd.4.smithi118.stdout:Apr 15 17:41:07 smithi118 systemd[1]: ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@osd.4.service: Deactivated successfully. 2024-04-15T17:41:07.851 INFO:journalctl@ceph.osd.4.smithi118.stdout:Apr 15 17:41:07 smithi118 systemd[1]: Stopped Ceph osd.4 for 6c2710cc-fb4e-11ee-bc8f-c7b262605968. 2024-04-15T17:41:07.851 INFO:journalctl@ceph.osd.4.smithi118.stdout:Apr 15 17:41:07 smithi118 systemd[1]: ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@osd.4.service: Consumed 1.777s CPU time. 2024-04-15T17:41:08.592 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:08 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-04-15T17:41:08.593 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:08 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-04-15T17:41:08.593 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:08 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-04-15T17:41:08.593 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:08 smithi118 ceph-mon[33587]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-04-15T17:41:08.593 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:08 smithi118 ceph-mon[33587]: Cluster is now healthy 2024-04-15T17:41:08.593 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:08 smithi118 ceph-mon[33587]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-04-15T17:41:08.593 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:08 smithi118 ceph-mon[33587]: osdmap e51: 5 total, 5 up, 5 in 2024-04-15T17:41:08.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:08 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-04-15T17:41:08.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:08 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-04-15T17:41:08.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:08 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-04-15T17:41:08.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:08 smithi055 ceph-mon[29592]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-04-15T17:41:08.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:08 smithi055 ceph-mon[29592]: Cluster is now healthy 2024-04-15T17:41:08.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:08 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-04-15T17:41:08.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:08 smithi055 ceph-mon[29592]: osdmap e51: 5 total, 5 up, 5 in 2024-04-15T17:41:08.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:08 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-04-15T17:41:08.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:08 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-04-15T17:41:08.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:08 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-04-15T17:41:08.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:08 smithi092 ceph-mon[33096]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-04-15T17:41:08.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:08 smithi092 ceph-mon[33096]: Cluster is now healthy 2024-04-15T17:41:08.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:08 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-04-15T17:41:08.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:08 smithi092 ceph-mon[33096]: osdmap e51: 5 total, 5 up, 5 in 2024-04-15T17:41:09.595 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:09 smithi118 ceph-mon[33587]: pgmap v179: 1 pgs: 1 remapped+peering; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:41:09.596 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:09 smithi118 ceph-mon[33587]: Removing key for osd.4 2024-04-15T17:41:09.596 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:09 smithi118 ceph-mon[33587]: Successfully removed osd.4 on smithi118 2024-04-15T17:41:09.596 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:09 smithi118 ceph-mon[33587]: Successfully purged osd.4 on smithi118 2024-04-15T17:41:09.596 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:09 smithi118 ceph-mon[33587]: Zapping devices for osd.4 on smithi118 2024-04-15T17:41:09.596 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:09 smithi118 ceph-mon[33587]: osdmap e52: 5 total, 5 up, 5 in 2024-04-15T17:41:09.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:09 smithi055 ceph-mon[29592]: pgmap v179: 1 pgs: 1 remapped+peering; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:41:09.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:09 smithi055 ceph-mon[29592]: Removing key for osd.4 2024-04-15T17:41:09.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:09 smithi055 ceph-mon[29592]: Successfully removed osd.4 on smithi118 2024-04-15T17:41:09.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:09 smithi055 ceph-mon[29592]: Successfully purged osd.4 on smithi118 2024-04-15T17:41:09.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:09 smithi055 ceph-mon[29592]: Zapping devices for osd.4 on smithi118 2024-04-15T17:41:09.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:09 smithi055 ceph-mon[29592]: osdmap e52: 5 total, 5 up, 5 in 2024-04-15T17:41:09.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:09 smithi092 ceph-mon[33096]: pgmap v179: 1 pgs: 1 remapped+peering; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T17:41:09.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:09 smithi092 ceph-mon[33096]: Removing key for osd.4 2024-04-15T17:41:09.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:09 smithi092 ceph-mon[33096]: Successfully removed osd.4 on smithi118 2024-04-15T17:41:09.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:09 smithi092 ceph-mon[33096]: Successfully purged osd.4 on smithi118 2024-04-15T17:41:09.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:09 smithi092 ceph-mon[33096]: Zapping devices for osd.4 on smithi118 2024-04-15T17:41:09.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:09 smithi092 ceph-mon[33096]: osdmap e52: 5 total, 5 up, 5 in 2024-04-15T17:41:11.230 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:10 smithi118 ceph-mon[33587]: pgmap v182: 1 pgs: 1 remapped+peering; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:41:11.230 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:10 smithi118 ceph-mon[33587]: osdmap e53: 5 total, 5 up, 5 in 2024-04-15T17:41:11.303 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:10 smithi055 ceph-mon[29592]: pgmap v182: 1 pgs: 1 remapped+peering; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:41:11.303 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:10 smithi055 ceph-mon[29592]: osdmap e53: 5 total, 5 up, 5 in 2024-04-15T17:41:11.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:10 smithi092 ceph-mon[33096]: pgmap v182: 1 pgs: 1 remapped+peering; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:41:11.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:10 smithi092 ceph-mon[33096]: osdmap e53: 5 total, 5 up, 5 in 2024-04-15T17:41:11.587 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:41:11 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:41:11.299+0000 7fa7e4e5b700 -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-04-15T17:41:11.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:11 smithi118 podman[47726]: 2024-04-15 17:41:11.342446786 +0000 UTC m=+0.019710629 container died 729fb3aa329004a857e6dfe5a158a8f7aa8d1233587f9a558796b0968787a302 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mon-c, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240409, ceph=True, CEPH_POINT_RELEASE=, RELEASE=main-c2d8c31, io.buildah.version=1.33.5, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.schema-version=1.0, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 8 Base Image) 2024-04-15T17:41:12.329 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:11 smithi118 podman[47726]: 2024-04-15 17:41:11.888138009 +0000 UTC m=+0.565401854 container remove 729fb3aa329004a857e6dfe5a158a8f7aa8d1233587f9a558796b0968787a302 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mon-c, GIT_CLEAN=True, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240409, ceph=True, RELEASE=main-c2d8c31, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 8 Base Image, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, io.buildah.version=1.33.5, org.label-schema.license=GPLv2) 2024-04-15T17:41:12.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:12 smithi118 systemd[1]: ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@mon.c.service: Deactivated successfully. 2024-04-15T17:41:12.600 INFO:journalctl@ceph.mon.c.smithi118.stdout:Apr 15 17:41:12 smithi118 systemd[1]: ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@mon.c.service: Consumed 2.917s CPU time. 2024-04-15T17:41:13.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:13 smithi092 ceph-mon[33096]: Successfully zapped devices for osd.4 on smithi118 2024-04-15T17:41:13.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:13 smithi092 ceph-mon[33096]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:13.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:13 smithi092 ceph-mon[33096]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-04-15T17:41:13.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:13 smithi092 ceph-mon[33096]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-04-15T17:41:13.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:13 smithi092 ceph-mon[33096]: Removing monitor c from monmap... 2024-04-15T17:41:13.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:13 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-04-15T17:41:13.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:13 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T17:41:13.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:13 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:41:13.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:13 smithi092 ceph-mon[33096]: mon.b calling monitor election 2024-04-15T17:41:13.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:13 smithi092 ceph-mon[33096]: pgmap v185: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-04-15T17:41:13.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:13 smithi092 ceph-mon[33096]: mon.a calling monitor election 2024-04-15T17:41:13.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:13 smithi092 ceph-mon[33096]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-04-15T17:41:13.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:13 smithi092 ceph-mon[33096]: monmap epoch 4 2024-04-15T17:41:13.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:13 smithi092 ceph-mon[33096]: fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:41:13.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:13 smithi092 ceph-mon[33096]: last_changed 2024-04-15T17:41:11.309265+0000 2024-04-15T17:41:13.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:13 smithi092 ceph-mon[33096]: created 2024-04-15T17:35:22.244997+0000 2024-04-15T17:41:13.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:13 smithi092 ceph-mon[33096]: min_mon_release 19 (squid) 2024-04-15T17:41:13.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:13 smithi092 ceph-mon[33096]: election_strategy: 1 2024-04-15T17:41:13.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:13 smithi092 ceph-mon[33096]: 0: [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] mon.a 2024-04-15T17:41:13.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:13 smithi092 ceph-mon[33096]: 1: [v2:172.21.15.92:3300/0,v1:172.21.15.92:6789/0] mon.b 2024-04-15T17:41:13.635 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:13 smithi092 ceph-mon[33096]: fsmap 2024-04-15T17:41:13.636 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:13 smithi092 ceph-mon[33096]: osdmap e54: 5 total, 5 up, 5 in 2024-04-15T17:41:13.636 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:13 smithi092 ceph-mon[33096]: mgrmap e15: a(active, since 4m), standbys: b 2024-04-15T17:41:13.636 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:13 smithi092 ceph-mon[33096]: overall HEALTH_OK 2024-04-15T17:41:13.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:13 smithi055 ceph-mon[29592]: Successfully zapped devices for osd.4 on smithi118 2024-04-15T17:41:13.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:13 smithi055 ceph-mon[29592]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:13.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:13 smithi055 ceph-mon[29592]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-04-15T17:41:13.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:13 smithi055 ceph-mon[29592]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-04-15T17:41:13.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:13 smithi055 ceph-mon[29592]: Removing monitor c from monmap... 2024-04-15T17:41:13.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:13 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-04-15T17:41:13.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:13 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T17:41:13.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:13 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T17:41:13.877 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:13 smithi055 ceph-mon[29592]: mon.b calling monitor election 2024-04-15T17:41:13.877 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:13 smithi055 ceph-mon[29592]: pgmap v185: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-04-15T17:41:13.877 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:13 smithi055 ceph-mon[29592]: mon.a calling monitor election 2024-04-15T17:41:13.877 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:13 smithi055 ceph-mon[29592]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-04-15T17:41:13.877 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:13 smithi055 ceph-mon[29592]: monmap epoch 4 2024-04-15T17:41:13.877 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:13 smithi055 ceph-mon[29592]: fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:41:13.877 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:13 smithi055 ceph-mon[29592]: last_changed 2024-04-15T17:41:11.309265+0000 2024-04-15T17:41:13.877 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:13 smithi055 ceph-mon[29592]: created 2024-04-15T17:35:22.244997+0000 2024-04-15T17:41:13.877 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:13 smithi055 ceph-mon[29592]: min_mon_release 19 (squid) 2024-04-15T17:41:13.878 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:13 smithi055 ceph-mon[29592]: election_strategy: 1 2024-04-15T17:41:13.878 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:13 smithi055 ceph-mon[29592]: 0: [v2:172.21.15.55:3300/0,v1:172.21.15.55:6789/0] mon.a 2024-04-15T17:41:13.878 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:13 smithi055 ceph-mon[29592]: 1: [v2:172.21.15.92:3300/0,v1:172.21.15.92:6789/0] mon.b 2024-04-15T17:41:13.878 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:13 smithi055 ceph-mon[29592]: fsmap 2024-04-15T17:41:13.878 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:13 smithi055 ceph-mon[29592]: osdmap e54: 5 total, 5 up, 5 in 2024-04-15T17:41:13.878 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:13 smithi055 ceph-mon[29592]: mgrmap e15: a(active, since 4m), standbys: b 2024-04-15T17:41:13.878 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:13 smithi055 ceph-mon[29592]: overall HEALTH_OK 2024-04-15T17:41:14.449 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:14 smithi092 ceph-mon[33096]: Removing daemon mon.c from smithi118 -- ports [] 2024-04-15T17:41:14.450 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:14 smithi092 ceph-mon[33096]: osdmap e55: 5 total, 5 up, 5 in 2024-04-15T17:41:14.450 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:14 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:14.450 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:14 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:14.450 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:14 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:41:14.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:14 smithi055 ceph-mon[29592]: Removing daemon mon.c from smithi118 -- ports [] 2024-04-15T17:41:14.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:14 smithi055 ceph-mon[29592]: osdmap e55: 5 total, 5 up, 5 in 2024-04-15T17:41:14.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:14 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:14.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:14 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:14.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:14 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:41:15.633 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:15 smithi092 ceph-mon[33096]: pgmap v187: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 137 MiB used, 447 GiB / 447 GiB avail; 119 KiB/s, 0 objects/s recovering 2024-04-15T17:41:15.634 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:15 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:15.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:15 smithi055 ceph-mon[29592]: pgmap v187: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 137 MiB used, 447 GiB / 447 GiB avail; 119 KiB/s, 0 objects/s recovering 2024-04-15T17:41:15.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:15 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:16.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:16 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:16.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:16 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:16.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:16 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:16.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:16 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:17.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:17 smithi055 ceph-mon[29592]: pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-15T17:41:17.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:17 smithi092 ceph-mon[33096]: pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-15T17:41:18.000 INFO:teuthology.orchestra.run.smithi055.stderr:++ ceph orch ps --hostname smithi118 2024-04-15T17:41:18.350 INFO:teuthology.orchestra.run.smithi055.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-15T17:41:18.350 INFO:teuthology.orchestra.run.smithi055.stderr:osd.5 smithi118 running (76s) 2s ago 75s 37.6M 10.3G 19.0.0-3080-gc2d8c315 259793512b73 0d5da1aec5b3 ' 2024-04-15T17:41:18.350 INFO:teuthology.orchestra.run.smithi055.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-15T17:41:18.350 INFO:teuthology.orchestra.run.smithi055.stderr:osd.5 smithi118 running (76s) 2s ago 75s 37.6M 10.3G 19.0.0-3080-gc2d8c315 259793512b73 0d5da1aec5b3 ' '!=' 'No daemons reported' ']' 2024-04-15T17:41:18.351 INFO:teuthology.orchestra.run.smithi055.stderr:+ sleep 15 2024-04-15T17:41:19.607 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:19 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mon-a[29587]: 2024-04-15T17:41:19.197+0000 7f2c3b0b3700 -1 mon.a@0(leader).osd e55 definitely_dead 0 2024-04-15T17:41:19.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:19 smithi055 ceph-mon[29592]: pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 73 KiB/s, 0 objects/s recovering 2024-04-15T17:41:19.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:19 smithi055 ceph-mon[29592]: from='client.14532 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi118", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:41:19.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:19 smithi055 ceph-mon[29592]: Detected new or changed devices on smithi118 2024-04-15T17:41:19.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:19 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:19.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:19 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:19.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:19 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:41:19.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:19 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:41:19.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:19 smithi055 ceph-mon[29592]: Updating smithi055:/etc/ceph/ceph.conf 2024-04-15T17:41:19.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:19 smithi055 ceph-mon[29592]: Updating smithi092:/etc/ceph/ceph.conf 2024-04-15T17:41:19.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:19 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:19.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:19 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:19.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:19 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:19.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:19 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:19.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:19 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:19.877 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:19 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:19.877 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:19 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-04-15T17:41:19.877 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:19 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-04-15T17:41:19.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:19 smithi092 ceph-mon[33096]: pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 73 KiB/s, 0 objects/s recovering 2024-04-15T17:41:19.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:19 smithi092 ceph-mon[33096]: from='client.14532 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi118", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:41:19.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:19 smithi092 ceph-mon[33096]: Detected new or changed devices on smithi118 2024-04-15T17:41:19.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:19 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:19.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:19 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:19.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:19 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:41:19.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:19 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:41:19.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:19 smithi092 ceph-mon[33096]: Updating smithi055:/etc/ceph/ceph.conf 2024-04-15T17:41:19.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:19 smithi092 ceph-mon[33096]: Updating smithi092:/etc/ceph/ceph.conf 2024-04-15T17:41:19.885 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:19 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:19.885 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:19 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:19.885 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:19 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:19.885 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:19 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:19.885 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:19 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:19.885 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:19 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:19.885 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:19 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-04-15T17:41:19.885 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:19 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-04-15T17:41:20.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:20 smithi055 ceph-mon[29592]: Updating smithi055:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T17:41:20.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:20 smithi055 ceph-mon[29592]: Updating smithi092:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T17:41:20.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:20 smithi055 ceph-mon[29592]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:20.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:20 smithi055 ceph-mon[29592]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:20.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:20 smithi055 ceph-mon[29592]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-04-15T17:41:20.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:20 smithi055 ceph-mon[29592]: Health check failed: 1 osds down (OSD_DOWN) 2024-04-15T17:41:20.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:20 smithi055 ceph-mon[29592]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-04-15T17:41:20.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:20 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-04-15T17:41:20.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:20 smithi055 ceph-mon[29592]: osdmap e56: 5 total, 4 up, 5 in 2024-04-15T17:41:20.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:20 smithi092 ceph-mon[33096]: Updating smithi055:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T17:41:20.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:20 smithi092 ceph-mon[33096]: Updating smithi092:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T17:41:20.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:20 smithi092 ceph-mon[33096]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:20.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:20 smithi092 ceph-mon[33096]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T17:41:20.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:20 smithi092 ceph-mon[33096]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-04-15T17:41:20.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:20 smithi092 ceph-mon[33096]: Health check failed: 1 osds down (OSD_DOWN) 2024-04-15T17:41:20.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:20 smithi092 ceph-mon[33096]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-04-15T17:41:20.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:20 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-04-15T17:41:20.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:20 smithi092 ceph-mon[33096]: osdmap e56: 5 total, 4 up, 5 in 2024-04-15T17:41:20.985 INFO:journalctl@ceph.osd.5.smithi118.stdout:Apr 15 17:41:20 smithi118 systemd[1]: Stopping Ceph osd.5 for 6c2710cc-fb4e-11ee-bc8f-c7b262605968... 2024-04-15T17:41:21.350 INFO:journalctl@ceph.osd.5.smithi118.stdout:Apr 15 17:41:20 smithi118 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-5[43663]: 2024-04-15T17:41:20.980+0000 7f4678f63700 -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-04-15T17:41:21.350 INFO:journalctl@ceph.osd.5.smithi118.stdout:Apr 15 17:41:20 smithi118 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-5[43663]: 2024-04-15T17:41:20.980+0000 7f4678f63700 -1 osd.5 55 *** Got signal Terminated *** 2024-04-15T17:41:21.351 INFO:journalctl@ceph.osd.5.smithi118.stdout:Apr 15 17:41:20 smithi118 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-5[43663]: 2024-04-15T17:41:20.980+0000 7f4678f63700 -1 osd.5 55 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-15T17:41:21.776 INFO:journalctl@ceph.osd.5.smithi118.stdout:Apr 15 17:41:21 smithi118 podman[50169]: 2024-04-15 17:41:21.51247281 +0000 UTC m=+0.681010968 container died 0d5da1aec5b309a964903b93cb5fc3ad6a7ecf423e5b656c05ca625267fab548 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-5, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.33.5, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, ceph=True, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, GIT_CLEAN=True, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240409, RELEASE=main-c2d8c31, org.label-schema.license=GPLv2) 2024-04-15T17:41:21.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:21 smithi055 ceph-mon[29592]: pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:41:21.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:21 smithi055 ceph-mon[29592]: osd.5 now down 2024-04-15T17:41:21.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:21 smithi055 ceph-mon[29592]: Removing daemon osd.5 from smithi118 -- ports [] 2024-04-15T17:41:21.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:21 smithi092 ceph-mon[33096]: pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:41:21.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:21 smithi092 ceph-mon[33096]: osd.5 now down 2024-04-15T17:41:21.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:21 smithi092 ceph-mon[33096]: Removing daemon osd.5 from smithi118 -- ports [] 2024-04-15T17:41:22.051 INFO:journalctl@ceph.osd.5.smithi118.stdout:Apr 15 17:41:21 smithi118 podman[50169]: 2024-04-15 17:41:21.838415519 +0000 UTC m=+1.006953676 container cleanup 0d5da1aec5b309a964903b93cb5fc3ad6a7ecf423e5b656c05ca625267fab548 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-5, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, ceph=True, RELEASE=main-c2d8c31, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240409, io.buildah.version=1.33.5, GIT_CLEAN=True, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.license=GPLv2, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, maintainer=Guillaume Abrioux ) 2024-04-15T17:41:22.051 INFO:journalctl@ceph.osd.5.smithi118.stdout:Apr 15 17:41:21 smithi118 bash[50169]: ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-5 2024-04-15T17:41:22.350 INFO:journalctl@ceph.osd.5.smithi118.stdout:Apr 15 17:41:22 smithi118 podman[50186]: 2024-04-15 17:41:22.047628869 +0000 UTC m=+0.532569414 container remove 0d5da1aec5b309a964903b93cb5fc3ad6a7ecf423e5b656c05ca625267fab548 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-5, ceph=True, io.buildah.version=1.33.5, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.build-date=20240409, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, RELEASE=main-c2d8c31, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, GIT_CLEAN=True, maintainer=Guillaume Abrioux ) 2024-04-15T17:41:22.746 INFO:journalctl@ceph.osd.5.smithi118.stdout:Apr 15 17:41:22 smithi118 podman[50275]: 2024-04-15 17:41:22.448501975 +0000 UTC m=+0.108947799 container create 2604960e1fa3ef90fd677d56807a2975ea39d07b185bce9147fdb6b96e7ffe3e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-5-deactivate, RELEASE=main-c2d8c31, GIT_BRANCH=HEAD, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, org.label-schema.build-date=20240409, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 8 Base Image, CEPH_POINT_RELEASE=, GIT_CLEAN=True, ceph=True, io.buildah.version=1.33.5) 2024-04-15T17:41:22.746 INFO:journalctl@ceph.osd.5.smithi118.stdout:Apr 15 17:41:22 smithi118 podman[50275]: 2024-04-15 17:41:22.357456511 +0000 UTC m=+0.017902299 image pull 259793512b732efd8e04a33aa28c6de3675c47d120bc226206521425d246003e quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163 2024-04-15T17:41:22.746 INFO:journalctl@ceph.osd.5.smithi118.stdout:Apr 15 17:41:22 smithi118 podman[50275]: 2024-04-15 17:41:22.659566057 +0000 UTC m=+0.320011845 container init 2604960e1fa3ef90fd677d56807a2975ea39d07b185bce9147fdb6b96e7ffe3e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-5-deactivate, org.label-schema.name=CentOS Stream 8 Base Image, CEPH_POINT_RELEASE=, ceph=True, RELEASE=main-c2d8c31, org.label-schema.build-date=20240409, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, GIT_CLEAN=True, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, io.buildah.version=1.33.5, GIT_BRANCH=HEAD) 2024-04-15T17:41:22.746 INFO:journalctl@ceph.osd.5.smithi118.stdout:Apr 15 17:41:22 smithi118 podman[50275]: 2024-04-15 17:41:22.663029809 +0000 UTC m=+0.323475592 container start 2604960e1fa3ef90fd677d56807a2975ea39d07b185bce9147fdb6b96e7ffe3e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-5-deactivate, GIT_CLEAN=True, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, ceph=True, GIT_BRANCH=HEAD, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.name=CentOS Stream 8 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, io.buildah.version=1.33.5, RELEASE=main-c2d8c31, org.label-schema.build-date=20240409, org.label-schema.vendor=CentOS) 2024-04-15T17:41:22.746 INFO:journalctl@ceph.osd.5.smithi118.stdout:Apr 15 17:41:22 smithi118 podman[50275]: 2024-04-15 17:41:22.742388605 +0000 UTC m=+0.402834401 container attach 2604960e1fa3ef90fd677d56807a2975ea39d07b185bce9147fdb6b96e7ffe3e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-5-deactivate, org.label-schema.license=GPLv2, io.buildah.version=1.33.5, RELEASE=main-c2d8c31, CEPH_POINT_RELEASE=, ceph=True, org.label-schema.build-date=20240409, GIT_CLEAN=True, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 8 Base Image) 2024-04-15T17:41:23.100 INFO:journalctl@ceph.osd.5.smithi118.stdout:Apr 15 17:41:22 smithi118 podman[50275]: 2024-04-15 17:41:22.951038331 +0000 UTC m=+0.611484109 container died 2604960e1fa3ef90fd677d56807a2975ea39d07b185bce9147fdb6b96e7ffe3e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-5-deactivate, org.label-schema.build-date=20240409, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 8 Base Image, GIT_CLEAN=True, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, RELEASE=main-c2d8c31, org.label-schema.vendor=CentOS, io.buildah.version=1.33.5, org.label-schema.license=GPLv2, ceph=True, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=) 2024-04-15T17:41:23.490 INFO:journalctl@ceph.osd.5.smithi118.stdout:Apr 15 17:41:23 smithi118 podman[50301]: 2024-04-15 17:41:23.470047632 +0000 UTC m=+0.513875004 container remove 2604960e1fa3ef90fd677d56807a2975ea39d07b185bce9147fdb6b96e7ffe3e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-5-deactivate, GIT_BRANCH=HEAD, RELEASE=main-c2d8c31, io.buildah.version=1.33.5, org.label-schema.build-date=20240409, org.label-schema.license=GPLv2, ceph=True, org.label-schema.schema-version=1.0, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.vendor=CentOS, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 8 Base Image, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=) 2024-04-15T17:41:23.850 INFO:journalctl@ceph.osd.5.smithi118.stdout:Apr 15 17:41:23 smithi118 systemd[1]: ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@osd.5.service: Deactivated successfully. 2024-04-15T17:41:23.850 INFO:journalctl@ceph.osd.5.smithi118.stdout:Apr 15 17:41:23 smithi118 systemd[1]: Stopped Ceph osd.5 for 6c2710cc-fb4e-11ee-bc8f-c7b262605968. 2024-04-15T17:41:23.850 INFO:journalctl@ceph.osd.5.smithi118.stdout:Apr 15 17:41:23 smithi118 systemd[1]: ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@osd.5.service: Consumed 1.677s CPU time. 2024-04-15T17:41:23.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:23 smithi055 ceph-mon[29592]: pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:41:23.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:23 smithi092 ceph-mon[33096]: pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail 2024-04-15T17:41:24.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:24 smithi055 ceph-mon[29592]: Removing key for osd.5 2024-04-15T17:41:24.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:24 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-04-15T17:41:24.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:24 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-04-15T17:41:24.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:24 smithi055 ceph-mon[29592]: Successfully removed osd.5 on smithi118 2024-04-15T17:41:24.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:24 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-04-15T17:41:24.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:24 smithi055 ceph-mon[29592]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-04-15T17:41:24.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:24 smithi055 ceph-mon[29592]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-04-15T17:41:24.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:24 smithi055 ceph-mon[29592]: Cluster is now healthy 2024-04-15T17:41:24.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:24 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-04-15T17:41:24.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:24 smithi055 ceph-mon[29592]: osdmap e57: 4 total, 4 up, 4 in 2024-04-15T17:41:24.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:24 smithi055 ceph-mon[29592]: Successfully purged osd.5 on smithi118 2024-04-15T17:41:24.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:24 smithi055 ceph-mon[29592]: Zapping devices for osd.5 on smithi118 2024-04-15T17:41:24.877 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:24 smithi092 ceph-mon[33096]: Removing key for osd.5 2024-04-15T17:41:24.877 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:24 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-04-15T17:41:24.877 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:24 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-04-15T17:41:24.877 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:24 smithi092 ceph-mon[33096]: Successfully removed osd.5 on smithi118 2024-04-15T17:41:24.877 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:24 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-04-15T17:41:24.877 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:24 smithi092 ceph-mon[33096]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-04-15T17:41:24.877 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:24 smithi092 ceph-mon[33096]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-04-15T17:41:24.878 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:24 smithi092 ceph-mon[33096]: Cluster is now healthy 2024-04-15T17:41:24.878 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:24 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-04-15T17:41:24.878 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:24 smithi092 ceph-mon[33096]: osdmap e57: 4 total, 4 up, 4 in 2024-04-15T17:41:24.878 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:24 smithi092 ceph-mon[33096]: Successfully purged osd.5 on smithi118 2024-04-15T17:41:24.878 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:24 smithi092 ceph-mon[33096]: Zapping devices for osd.5 on smithi118 2024-04-15T17:41:26.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:25 smithi055 ceph-mon[29592]: pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:26.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:25 smithi092 ceph-mon[33096]: pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:28.015 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:27 smithi055 ceph-mon[29592]: pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:28.016 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:27 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:28.016 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:27 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T17:41:28.016 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:27 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T17:41:28.016 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:27 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:41:28.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:27 smithi092 ceph-mon[33096]: pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:28.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:27 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:28.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:27 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T17:41:28.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:27 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T17:41:28.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:27 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:41:29.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:28 smithi055 ceph-mon[29592]: Successfully zapped devices for osd.5 on smithi118 2024-04-15T17:41:29.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:28 smithi055 ceph-mon[29592]: Reconfiguring mon.a (monmap changed)... 2024-04-15T17:41:29.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:28 smithi055 ceph-mon[29592]: Reconfiguring daemon mon.a on smithi055 2024-04-15T17:41:29.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:28 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:29.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:28 smithi092 ceph-mon[33096]: Successfully zapped devices for osd.5 on smithi118 2024-04-15T17:41:29.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:28 smithi092 ceph-mon[33096]: Reconfiguring mon.a (monmap changed)... 2024-04-15T17:41:29.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:28 smithi092 ceph-mon[33096]: Reconfiguring daemon mon.a on smithi055 2024-04-15T17:41:29.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:28 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:30.025 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:29 smithi055 ceph-mon[29592]: pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:30.025 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:29 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:30.025 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:29 smithi055 ceph-mon[29592]: Reconfiguring mgr.a (monmap changed)... 2024-04-15T17:41:30.025 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:29 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T17:41:30.025 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:29 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T17:41:30.025 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:29 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:41:30.025 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:29 smithi055 ceph-mon[29592]: Reconfiguring daemon mgr.a on smithi055 2024-04-15T17:41:30.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:29 smithi092 ceph-mon[33096]: pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:30.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:29 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:30.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:29 smithi092 ceph-mon[33096]: Reconfiguring mgr.a (monmap changed)... 2024-04-15T17:41:30.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:29 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T17:41:30.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:29 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T17:41:30.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:29 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:41:30.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:29 smithi092 ceph-mon[33096]: Reconfiguring daemon mgr.a on smithi055 2024-04-15T17:41:31.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:31 smithi055 ceph-mon[29592]: pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:31.625 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:31 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:31.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:31 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:31.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:31 smithi055 ceph-mon[29592]: Reconfiguring osd.0 (monmap changed)... 2024-04-15T17:41:31.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:31 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-15T17:41:31.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:31 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:41:31.626 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:31 smithi055 ceph-mon[29592]: Reconfiguring daemon osd.0 on smithi055 2024-04-15T17:41:31.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:31 smithi092 ceph-mon[33096]: pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:31.896 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:31 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:31.897 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:31 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:31.897 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:31 smithi092 ceph-mon[33096]: Reconfiguring osd.0 (monmap changed)... 2024-04-15T17:41:31.897 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:31 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-15T17:41:31.897 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:31 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:41:31.897 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:31 smithi092 ceph-mon[33096]: Reconfiguring daemon osd.0 on smithi055 2024-04-15T17:41:33.306 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:33 smithi055 ceph-mon[29592]: pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:33.306 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:33 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:33.307 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:33 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:33.307 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:33 smithi055 ceph-mon[29592]: Reconfiguring osd.1 (monmap changed)... 2024-04-15T17:41:33.307 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:33 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-15T17:41:33.307 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:33 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:41:33.307 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:33 smithi055 ceph-mon[29592]: Reconfiguring daemon osd.1 on smithi055 2024-04-15T17:41:33.352 INFO:teuthology.orchestra.run.smithi055.stderr:++ ceph orch ps --hostname smithi118 2024-04-15T17:41:33.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:33 smithi092 ceph-mon[33096]: pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:33.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:33 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:33.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:33 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:33.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:33 smithi092 ceph-mon[33096]: Reconfiguring osd.1 (monmap changed)... 2024-04-15T17:41:33.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:33 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-15T17:41:33.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:33 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:41:33.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:33 smithi092 ceph-mon[33096]: Reconfiguring daemon osd.1 on smithi055 2024-04-15T17:41:33.699 INFO:teuthology.orchestra.run.smithi055.stderr:+ HOST_C_DAEMONS='No daemons reported' 2024-04-15T17:41:33.700 INFO:teuthology.orchestra.run.smithi055.stderr:+ '[' 'No daemons reported' '!=' 'No daemons reported' ']' 2024-04-15T17:41:33.700 INFO:teuthology.orchestra.run.smithi055.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-04-15T17:41:34.020 INFO:teuthology.orchestra.run.smithi055.stderr:17 2024-04-15T17:41:34.030 INFO:teuthology.orchestra.run.smithi055.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-04-15T17:41:34.044 INFO:teuthology.orchestra.run.smithi055.stderr:++ cat crushmap.txt 2024-04-15T17:41:34.046 INFO:teuthology.orchestra.run.smithi055.stderr:+ CRUSH_MAP='# begin crush map 2024-04-15T17:41:34.046 INFO:teuthology.orchestra.run.smithi055.stderr:tunable choose_local_tries 0 2024-04-15T17:41:34.046 INFO:teuthology.orchestra.run.smithi055.stderr:tunable choose_local_fallback_tries 0 2024-04-15T17:41:34.046 INFO:teuthology.orchestra.run.smithi055.stderr:tunable choose_total_tries 50 2024-04-15T17:41:34.046 INFO:teuthology.orchestra.run.smithi055.stderr:tunable chooseleaf_descend_once 1 2024-04-15T17:41:34.046 INFO:teuthology.orchestra.run.smithi055.stderr:tunable chooseleaf_vary_r 1 2024-04-15T17:41:34.046 INFO:teuthology.orchestra.run.smithi055.stderr:tunable chooseleaf_stable 1 2024-04-15T17:41:34.046 INFO:teuthology.orchestra.run.smithi055.stderr:tunable straw_calc_version 1 2024-04-15T17:41:34.046 INFO:teuthology.orchestra.run.smithi055.stderr:tunable allowed_bucket_algs 54 2024-04-15T17:41:34.046 INFO:teuthology.orchestra.run.smithi055.stderr: 2024-04-15T17:41:34.046 INFO:teuthology.orchestra.run.smithi055.stderr:# devices 2024-04-15T17:41:34.047 INFO:teuthology.orchestra.run.smithi055.stderr:device 0 osd.0 class ssd 2024-04-15T17:41:34.047 INFO:teuthology.orchestra.run.smithi055.stderr:device 1 osd.1 class ssd 2024-04-15T17:41:34.047 INFO:teuthology.orchestra.run.smithi055.stderr:device 2 osd.2 class ssd 2024-04-15T17:41:34.047 INFO:teuthology.orchestra.run.smithi055.stderr:device 3 osd.3 class ssd 2024-04-15T17:41:34.047 INFO:teuthology.orchestra.run.smithi055.stderr: 2024-04-15T17:41:34.047 INFO:teuthology.orchestra.run.smithi055.stderr:# types 2024-04-15T17:41:34.047 INFO:teuthology.orchestra.run.smithi055.stderr:type 0 osd 2024-04-15T17:41:34.047 INFO:teuthology.orchestra.run.smithi055.stderr:type 1 host 2024-04-15T17:41:34.047 INFO:teuthology.orchestra.run.smithi055.stderr:type 2 chassis 2024-04-15T17:41:34.047 INFO:teuthology.orchestra.run.smithi055.stderr:type 3 rack 2024-04-15T17:41:34.047 INFO:teuthology.orchestra.run.smithi055.stderr:type 4 row 2024-04-15T17:41:34.047 INFO:teuthology.orchestra.run.smithi055.stderr:type 5 pdu 2024-04-15T17:41:34.047 INFO:teuthology.orchestra.run.smithi055.stderr:type 6 pod 2024-04-15T17:41:34.047 INFO:teuthology.orchestra.run.smithi055.stderr:type 7 room 2024-04-15T17:41:34.048 INFO:teuthology.orchestra.run.smithi055.stderr:type 8 datacenter 2024-04-15T17:41:34.048 INFO:teuthology.orchestra.run.smithi055.stderr:type 9 zone 2024-04-15T17:41:34.048 INFO:teuthology.orchestra.run.smithi055.stderr:type 10 region 2024-04-15T17:41:34.048 INFO:teuthology.orchestra.run.smithi055.stderr:type 11 root 2024-04-15T17:41:34.048 INFO:teuthology.orchestra.run.smithi055.stderr: 2024-04-15T17:41:34.048 INFO:teuthology.orchestra.run.smithi055.stderr:# buckets 2024-04-15T17:41:34.048 INFO:teuthology.orchestra.run.smithi055.stderr:host smithi055 { 2024-04-15T17:41:34.048 INFO:teuthology.orchestra.run.smithi055.stderr: id -3 # do not change unnecessarily 2024-04-15T17:41:34.048 INFO:teuthology.orchestra.run.smithi055.stderr: id -4 class ssd # do not change unnecessarily 2024-04-15T17:41:34.048 INFO:teuthology.orchestra.run.smithi055.stderr: # weight 0.17459 2024-04-15T17:41:34.048 INFO:teuthology.orchestra.run.smithi055.stderr: alg straw2 2024-04-15T17:41:34.048 INFO:teuthology.orchestra.run.smithi055.stderr: hash 0 # rjenkins1 2024-04-15T17:41:34.048 INFO:teuthology.orchestra.run.smithi055.stderr: item osd.0 weight 0.08730 2024-04-15T17:41:34.048 INFO:teuthology.orchestra.run.smithi055.stderr: item osd.1 weight 0.08730 2024-04-15T17:41:34.048 INFO:teuthology.orchestra.run.smithi055.stderr:} 2024-04-15T17:41:34.049 INFO:teuthology.orchestra.run.smithi055.stderr:host smithi092 { 2024-04-15T17:41:34.049 INFO:teuthology.orchestra.run.smithi055.stderr: id -5 # do not change unnecessarily 2024-04-15T17:41:34.049 INFO:teuthology.orchestra.run.smithi055.stderr: id -6 class ssd # do not change unnecessarily 2024-04-15T17:41:34.049 INFO:teuthology.orchestra.run.smithi055.stderr: # weight 0.17459 2024-04-15T17:41:34.049 INFO:teuthology.orchestra.run.smithi055.stderr: alg straw2 2024-04-15T17:41:34.049 INFO:teuthology.orchestra.run.smithi055.stderr: hash 0 # rjenkins1 2024-04-15T17:41:34.049 INFO:teuthology.orchestra.run.smithi055.stderr: item osd.2 weight 0.08730 2024-04-15T17:41:34.049 INFO:teuthology.orchestra.run.smithi055.stderr: item osd.3 weight 0.08730 2024-04-15T17:41:34.049 INFO:teuthology.orchestra.run.smithi055.stderr:} 2024-04-15T17:41:34.049 INFO:teuthology.orchestra.run.smithi055.stderr:host smithi118 { 2024-04-15T17:41:34.049 INFO:teuthology.orchestra.run.smithi055.stderr: id -7 # do not change unnecessarily 2024-04-15T17:41:34.049 INFO:teuthology.orchestra.run.smithi055.stderr: id -8 class ssd # do not change unnecessarily 2024-04-15T17:41:34.049 INFO:teuthology.orchestra.run.smithi055.stderr: # weight 0.00000 2024-04-15T17:41:34.050 INFO:teuthology.orchestra.run.smithi055.stderr: alg straw2 2024-04-15T17:41:34.050 INFO:teuthology.orchestra.run.smithi055.stderr: hash 0 # rjenkins1 2024-04-15T17:41:34.050 INFO:teuthology.orchestra.run.smithi055.stderr:} 2024-04-15T17:41:34.050 INFO:teuthology.orchestra.run.smithi055.stderr:root default { 2024-04-15T17:41:34.050 INFO:teuthology.orchestra.run.smithi055.stderr: id -1 # do not change unnecessarily 2024-04-15T17:41:34.050 INFO:teuthology.orchestra.run.smithi055.stderr: id -2 class ssd # do not change unnecessarily 2024-04-15T17:41:34.050 INFO:teuthology.orchestra.run.smithi055.stderr: # weight 0.34918 2024-04-15T17:41:34.050 INFO:teuthology.orchestra.run.smithi055.stderr: alg straw2 2024-04-15T17:41:34.050 INFO:teuthology.orchestra.run.smithi055.stderr: hash 0 # rjenkins1 2024-04-15T17:41:34.050 INFO:teuthology.orchestra.run.smithi055.stderr: item smithi055 weight 0.17459 2024-04-15T17:41:34.050 INFO:teuthology.orchestra.run.smithi055.stderr: item smithi092 weight 0.17459 2024-04-15T17:41:34.050 INFO:teuthology.orchestra.run.smithi055.stderr: item smithi118 weight 0.00000 2024-04-15T17:41:34.050 INFO:teuthology.orchestra.run.smithi055.stderr:} 2024-04-15T17:41:34.050 INFO:teuthology.orchestra.run.smithi055.stderr: 2024-04-15T17:41:34.051 INFO:teuthology.orchestra.run.smithi055.stderr:# rules 2024-04-15T17:41:34.051 INFO:teuthology.orchestra.run.smithi055.stderr:rule replicated_rule { 2024-04-15T17:41:34.051 INFO:teuthology.orchestra.run.smithi055.stderr: id 0 2024-04-15T17:41:34.051 INFO:teuthology.orchestra.run.smithi055.stderr: type replicated 2024-04-15T17:41:34.051 INFO:teuthology.orchestra.run.smithi055.stderr: step take default 2024-04-15T17:41:34.051 INFO:teuthology.orchestra.run.smithi055.stderr: step choose firstn 0 type osd 2024-04-15T17:41:34.051 INFO:teuthology.orchestra.run.smithi055.stderr: step emit 2024-04-15T17:41:34.051 INFO:teuthology.orchestra.run.smithi055.stderr:} 2024-04-15T17:41:34.051 INFO:teuthology.orchestra.run.smithi055.stderr: 2024-04-15T17:41:34.051 INFO:teuthology.orchestra.run.smithi055.stderr:# end crush map' 2024-04-15T17:41:34.051 INFO:teuthology.orchestra.run.smithi055.stderr:+ grep -q smithi118 2024-04-15T17:41:34.052 INFO:teuthology.orchestra.run.smithi055.stderr:+ ceph orch host rm smithi118 --rm-crush-entry 2024-04-15T17:41:34.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:34 smithi055 ceph-mon[29592]: from='client.14536 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi118", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:41:34.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:34 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:34.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:34 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:34.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:34 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T17:41:34.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:34 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T17:41:34.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:34 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:41:34.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:34 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/1020441739' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-04-15T17:41:34.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:34 smithi092 ceph-mon[33096]: from='client.14536 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi118", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:41:34.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:34 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:34.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:34 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:34.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:34 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T17:41:34.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:34 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T17:41:34.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:34 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:41:34.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:34 smithi092 ceph-mon[33096]: from='client.? 172.21.15.55:0/1020441739' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-04-15T17:41:35.062 INFO:teuthology.orchestra.run.smithi055.stdout:Removed host 'smithi118' 2024-04-15T17:41:35.078 INFO:teuthology.orchestra.run.smithi055.stderr:+ sleep 30 2024-04-15T17:41:35.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:35 smithi055 ceph-mon[29592]: Reconfiguring mon.b (monmap changed)... 2024-04-15T17:41:35.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:35 smithi055 ceph-mon[29592]: Reconfiguring daemon mon.b on smithi092 2024-04-15T17:41:35.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:35 smithi055 ceph-mon[29592]: pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:35.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:35 smithi055 ceph-mon[29592]: from='client.14544 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi118", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:41:35.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:35 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi118"}]: dispatch 2024-04-15T17:41:35.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:35 smithi092 ceph-mon[33096]: Reconfiguring mon.b (monmap changed)... 2024-04-15T17:41:35.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:35 smithi092 ceph-mon[33096]: Reconfiguring daemon mon.b on smithi092 2024-04-15T17:41:35.383 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:35 smithi092 ceph-mon[33096]: pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:35.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:35 smithi092 ceph-mon[33096]: from='client.14544 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi118", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T17:41:35.384 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:35 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi118"}]: dispatch 2024-04-15T17:41:36.333 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:36 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi118"}]': finished 2024-04-15T17:41:36.333 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:36 smithi092 ceph-mon[33096]: osdmap e58: 4 total, 4 up, 4 in 2024-04-15T17:41:36.333 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:36 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:36.333 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:36 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi118"}]: dispatch 2024-04-15T17:41:36.333 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:36 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi118"}]': finished 2024-04-15T17:41:36.333 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:36 smithi092 ceph-mon[33096]: Removed host smithi118 2024-04-15T17:41:36.333 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:36 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:36.333 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:36 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:36.333 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:36 smithi092 ceph-mon[33096]: Reconfiguring mgr.b (monmap changed)... 2024-04-15T17:41:36.334 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:36 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T17:41:36.334 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:36 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T17:41:36.334 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:36 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:41:36.334 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:36 smithi092 ceph-mon[33096]: Reconfiguring daemon mgr.b on smithi092 2024-04-15T17:41:36.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:36 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi118"}]': finished 2024-04-15T17:41:36.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:36 smithi055 ceph-mon[29592]: osdmap e58: 4 total, 4 up, 4 in 2024-04-15T17:41:36.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:36 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:36.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:36 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi118"}]: dispatch 2024-04-15T17:41:36.375 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:36 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi118"}]': finished 2024-04-15T17:41:36.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:36 smithi055 ceph-mon[29592]: Removed host smithi118 2024-04-15T17:41:36.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:36 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:36.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:36 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:36.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:36 smithi055 ceph-mon[29592]: Reconfiguring mgr.b (monmap changed)... 2024-04-15T17:41:36.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:36 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T17:41:36.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:36 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T17:41:36.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:36 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:41:36.376 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:36 smithi055 ceph-mon[29592]: Reconfiguring daemon mgr.b on smithi092 2024-04-15T17:41:37.952 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:37 smithi092 ceph-mon[33096]: pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:37.952 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:37 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:37.952 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:37 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:37.952 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:37 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-15T17:41:37.952 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:37 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:41:38.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:37 smithi055 ceph-mon[29592]: pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:38.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:37 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:38.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:37 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:38.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:37 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-15T17:41:38.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:37 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:41:39.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:38 smithi055 ceph-mon[29592]: Reconfiguring osd.2 (monmap changed)... 2024-04-15T17:41:39.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:38 smithi055 ceph-mon[29592]: Reconfiguring daemon osd.2 on smithi092 2024-04-15T17:41:39.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:38 smithi092 ceph-mon[33096]: Reconfiguring osd.2 (monmap changed)... 2024-04-15T17:41:39.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:38 smithi092 ceph-mon[33096]: Reconfiguring daemon osd.2 on smithi092 2024-04-15T17:41:40.048 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:39 smithi092 ceph-mon[33096]: pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:40.048 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:39 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:40.048 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:39 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:40.048 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:39 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-15T17:41:40.048 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:39 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:41:40.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:39 smithi055 ceph-mon[29592]: pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:40.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:39 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:40.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:39 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:40.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:39 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-15T17:41:40.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:39 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:41:41.026 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:40 smithi055 ceph-mon[29592]: Reconfiguring osd.3 (monmap changed)... 2024-04-15T17:41:41.026 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:40 smithi055 ceph-mon[29592]: Reconfiguring daemon osd.3 on smithi092 2024-04-15T17:41:41.026 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:40 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:41.026 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:40 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:41.026 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:40 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:41:41.026 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:40 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:41:41.026 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:40 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:41:41.027 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:40 smithi055 ceph-mon[29592]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:41.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:40 smithi092 ceph-mon[33096]: Reconfiguring osd.3 (monmap changed)... 2024-04-15T17:41:41.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:40 smithi092 ceph-mon[33096]: Reconfiguring daemon osd.3 on smithi092 2024-04-15T17:41:41.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:40 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:41.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:40 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:41.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:40 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T17:41:41.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:40 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T17:41:41.135 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:40 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T17:41:41.135 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:40 smithi092 ceph-mon[33096]: from='mgr.14152 172.21.15.55:0/1470271667' entity='mgr.a' 2024-04-15T17:41:42.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:41 smithi055 ceph-mon[29592]: pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:42.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:41 smithi055 ceph-mon[29592]: pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:42.126 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:41 smithi055 ceph-mon[29592]: Health check failed: 1 stray host(s) with 1 daemon(s) not managed by cephadm (CEPHADM_STRAY_HOST) 2024-04-15T17:41:42.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:41 smithi092 ceph-mon[33096]: pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:42.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:41 smithi092 ceph-mon[33096]: pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:42.133 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:41 smithi092 ceph-mon[33096]: Health check failed: 1 stray host(s) with 1 daemon(s) not managed by cephadm (CEPHADM_STRAY_HOST) 2024-04-15T17:41:43.035 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:42 smithi092 ceph-mon[33096]: pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:43.125 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:42 smithi055 ceph-mon[29592]: pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:45.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:45 smithi055 ceph-mon[29592]: pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:45.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:45 smithi092 ceph-mon[33096]: pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:47.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:47 smithi055 ceph-mon[29592]: pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:47.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:47 smithi092 ceph-mon[33096]: pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:49.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:49 smithi055 ceph-mon[29592]: pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:49.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:49 smithi092 ceph-mon[33096]: pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:51.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:51 smithi055 ceph-mon[29592]: pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:51.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:51 smithi092 ceph-mon[33096]: pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:53.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:53 smithi055 ceph-mon[29592]: pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:53.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:53 smithi092 ceph-mon[33096]: pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:55.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:55 smithi055 ceph-mon[29592]: pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:55.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:55 smithi092 ceph-mon[33096]: pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:57.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:57 smithi055 ceph-mon[29592]: pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:57.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:57 smithi092 ceph-mon[33096]: pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:59.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:41:59 smithi055 ceph-mon[29592]: pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:41:59.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:41:59 smithi092 ceph-mon[33096]: pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:42:01.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:42:01 smithi055 ceph-mon[29592]: pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:42:01.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:42:01 smithi092 ceph-mon[33096]: pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:42:03.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:42:03 smithi055 ceph-mon[29592]: pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:42:03.883 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:42:03 smithi092 ceph-mon[33096]: pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:42:05.081 INFO:teuthology.orchestra.run.smithi055.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-04-15T17:42:05.406 INFO:teuthology.orchestra.run.smithi055.stderr:18 2024-04-15T17:42:05.416 INFO:teuthology.orchestra.run.smithi055.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-04-15T17:42:05.430 INFO:teuthology.orchestra.run.smithi055.stderr:++ cat crushmap.txt 2024-04-15T17:42:05.431 INFO:teuthology.orchestra.run.smithi055.stderr:+ CRUSH_MAP='# begin crush map 2024-04-15T17:42:05.431 INFO:teuthology.orchestra.run.smithi055.stderr:tunable choose_local_tries 0 2024-04-15T17:42:05.431 INFO:teuthology.orchestra.run.smithi055.stderr:tunable choose_local_fallback_tries 0 2024-04-15T17:42:05.431 INFO:teuthology.orchestra.run.smithi055.stderr:tunable choose_total_tries 50 2024-04-15T17:42:05.431 INFO:teuthology.orchestra.run.smithi055.stderr:tunable chooseleaf_descend_once 1 2024-04-15T17:42:05.431 INFO:teuthology.orchestra.run.smithi055.stderr:tunable chooseleaf_vary_r 1 2024-04-15T17:42:05.432 INFO:teuthology.orchestra.run.smithi055.stderr:tunable chooseleaf_stable 1 2024-04-15T17:42:05.432 INFO:teuthology.orchestra.run.smithi055.stderr:tunable straw_calc_version 1 2024-04-15T17:42:05.432 INFO:teuthology.orchestra.run.smithi055.stderr:tunable allowed_bucket_algs 54 2024-04-15T17:42:05.432 INFO:teuthology.orchestra.run.smithi055.stderr: 2024-04-15T17:42:05.432 INFO:teuthology.orchestra.run.smithi055.stderr:# devices 2024-04-15T17:42:05.432 INFO:teuthology.orchestra.run.smithi055.stderr:device 0 osd.0 class ssd 2024-04-15T17:42:05.432 INFO:teuthology.orchestra.run.smithi055.stderr:device 1 osd.1 class ssd 2024-04-15T17:42:05.432 INFO:teuthology.orchestra.run.smithi055.stderr:device 2 osd.2 class ssd 2024-04-15T17:42:05.432 INFO:teuthology.orchestra.run.smithi055.stderr:device 3 osd.3 class ssd 2024-04-15T17:42:05.432 INFO:teuthology.orchestra.run.smithi055.stderr: 2024-04-15T17:42:05.432 INFO:teuthology.orchestra.run.smithi055.stderr:# types 2024-04-15T17:42:05.432 INFO:teuthology.orchestra.run.smithi055.stderr:type 0 osd 2024-04-15T17:42:05.432 INFO:teuthology.orchestra.run.smithi055.stderr:type 1 host 2024-04-15T17:42:05.432 INFO:teuthology.orchestra.run.smithi055.stderr:type 2 chassis 2024-04-15T17:42:05.433 INFO:teuthology.orchestra.run.smithi055.stderr:type 3 rack 2024-04-15T17:42:05.433 INFO:teuthology.orchestra.run.smithi055.stderr:type 4 row 2024-04-15T17:42:05.433 INFO:teuthology.orchestra.run.smithi055.stderr:type 5 pdu 2024-04-15T17:42:05.433 INFO:teuthology.orchestra.run.smithi055.stderr:type 6 pod 2024-04-15T17:42:05.433 INFO:teuthology.orchestra.run.smithi055.stderr:type 7 room 2024-04-15T17:42:05.433 INFO:teuthology.orchestra.run.smithi055.stderr:type 8 datacenter 2024-04-15T17:42:05.433 INFO:teuthology.orchestra.run.smithi055.stderr:type 9 zone 2024-04-15T17:42:05.433 INFO:teuthology.orchestra.run.smithi055.stderr:type 10 region 2024-04-15T17:42:05.433 INFO:teuthology.orchestra.run.smithi055.stderr:type 11 root 2024-04-15T17:42:05.433 INFO:teuthology.orchestra.run.smithi055.stderr: 2024-04-15T17:42:05.433 INFO:teuthology.orchestra.run.smithi055.stderr:# buckets 2024-04-15T17:42:05.433 INFO:teuthology.orchestra.run.smithi055.stderr:host smithi055 { 2024-04-15T17:42:05.433 INFO:teuthology.orchestra.run.smithi055.stderr: id -3 # do not change unnecessarily 2024-04-15T17:42:05.433 INFO:teuthology.orchestra.run.smithi055.stderr: id -4 class ssd # do not change unnecessarily 2024-04-15T17:42:05.434 INFO:teuthology.orchestra.run.smithi055.stderr: # weight 0.17459 2024-04-15T17:42:05.434 INFO:teuthology.orchestra.run.smithi055.stderr: alg straw2 2024-04-15T17:42:05.434 INFO:teuthology.orchestra.run.smithi055.stderr: hash 0 # rjenkins1 2024-04-15T17:42:05.434 INFO:teuthology.orchestra.run.smithi055.stderr: item osd.0 weight 0.08730 2024-04-15T17:42:05.434 INFO:teuthology.orchestra.run.smithi055.stderr: item osd.1 weight 0.08730 2024-04-15T17:42:05.434 INFO:teuthology.orchestra.run.smithi055.stderr:} 2024-04-15T17:42:05.434 INFO:teuthology.orchestra.run.smithi055.stderr:host smithi092 { 2024-04-15T17:42:05.434 INFO:teuthology.orchestra.run.smithi055.stderr: id -5 # do not change unnecessarily 2024-04-15T17:42:05.434 INFO:teuthology.orchestra.run.smithi055.stderr: id -6 class ssd # do not change unnecessarily 2024-04-15T17:42:05.434 INFO:teuthology.orchestra.run.smithi055.stderr: # weight 0.17459 2024-04-15T17:42:05.434 INFO:teuthology.orchestra.run.smithi055.stderr: alg straw2 2024-04-15T17:42:05.434 INFO:teuthology.orchestra.run.smithi055.stderr: hash 0 # rjenkins1 2024-04-15T17:42:05.434 INFO:teuthology.orchestra.run.smithi055.stderr: item osd.2 weight 0.08730 2024-04-15T17:42:05.435 INFO:teuthology.orchestra.run.smithi055.stderr: item osd.3 weight 0.08730 2024-04-15T17:42:05.435 INFO:teuthology.orchestra.run.smithi055.stderr:} 2024-04-15T17:42:05.435 INFO:teuthology.orchestra.run.smithi055.stderr:root default { 2024-04-15T17:42:05.435 INFO:teuthology.orchestra.run.smithi055.stderr: id -1 # do not change unnecessarily 2024-04-15T17:42:05.435 INFO:teuthology.orchestra.run.smithi055.stderr: id -2 class ssd # do not change unnecessarily 2024-04-15T17:42:05.435 INFO:teuthology.orchestra.run.smithi055.stderr: # weight 0.34918 2024-04-15T17:42:05.435 INFO:teuthology.orchestra.run.smithi055.stderr: alg straw2 2024-04-15T17:42:05.435 INFO:teuthology.orchestra.run.smithi055.stderr: hash 0 # rjenkins1 2024-04-15T17:42:05.435 INFO:teuthology.orchestra.run.smithi055.stderr: item smithi055 weight 0.17459 2024-04-15T17:42:05.435 INFO:teuthology.orchestra.run.smithi055.stderr: item smithi092 weight 0.17459 2024-04-15T17:42:05.435 INFO:teuthology.orchestra.run.smithi055.stderr:} 2024-04-15T17:42:05.435 INFO:teuthology.orchestra.run.smithi055.stderr: 2024-04-15T17:42:05.435 INFO:teuthology.orchestra.run.smithi055.stderr:# rules 2024-04-15T17:42:05.435 INFO:teuthology.orchestra.run.smithi055.stderr:rule replicated_rule { 2024-04-15T17:42:05.435 INFO:teuthology.orchestra.run.smithi055.stderr: id 0 2024-04-15T17:42:05.436 INFO:teuthology.orchestra.run.smithi055.stderr: type replicated 2024-04-15T17:42:05.436 INFO:teuthology.orchestra.run.smithi055.stderr: step take default 2024-04-15T17:42:05.436 INFO:teuthology.orchestra.run.smithi055.stderr: step choose firstn 0 type osd 2024-04-15T17:42:05.436 INFO:teuthology.orchestra.run.smithi055.stderr: step emit 2024-04-15T17:42:05.436 INFO:teuthology.orchestra.run.smithi055.stderr:} 2024-04-15T17:42:05.436 INFO:teuthology.orchestra.run.smithi055.stderr: 2024-04-15T17:42:05.436 INFO:teuthology.orchestra.run.smithi055.stderr:# end crush map' 2024-04-15T17:42:05.436 INFO:teuthology.orchestra.run.smithi055.stderr:+ grep -q smithi118 2024-04-15T17:42:05.724 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:42:05 smithi055 ceph-mon[29592]: pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:42:05.724 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:42:05 smithi055 ceph-mon[29592]: from='client.? 172.21.15.55:0/2936909632' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-04-15T17:42:05.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:42:05 smithi092 ceph-mon[33096]: pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-04-15T17:42:05.884 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:42:05 smithi092 ceph-mon[33096]: from='client.? 172.21.15.55:0/2936909632' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-04-15T17:42:06.104 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-04-15T17:42:06.113 INFO:tasks.cephadm:Teardown begin 2024-04-15T17:42:06.114 DEBUG:teuthology.orchestra.run.smithi055:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-15T17:42:06.147 DEBUG:teuthology.orchestra.run.smithi092:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-15T17:42:06.186 DEBUG:teuthology.orchestra.run.smithi118:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-15T17:42:06.224 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-04-15T17:42:06.224 DEBUG:teuthology.orchestra.run.smithi055:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-15T17:42:06.240 DEBUG:teuthology.orchestra.run.smithi092:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-15T17:42:06.258 DEBUG:teuthology.orchestra.run.smithi118:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-15T17:42:06.281 INFO:tasks.cephadm:Stopping all daemons... 2024-04-15T17:42:06.282 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2024-04-15T17:42:06.282 DEBUG:teuthology.orchestra.run.smithi055:> sudo systemctl stop ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@mon.a 2024-04-15T17:42:06.622 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:42:06 smithi055 systemd[1]: Stopping Ceph mon.a for 6c2710cc-fb4e-11ee-bc8f-c7b262605968... 2024-04-15T17:42:06.875 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:42:06 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mon-a[29587]: 2024-04-15T17:42:06.617+0000 7f2c408be700 -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-04-15T17:42:06.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:42:06 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mon-a[29587]: 2024-04-15T17:42:06.617+0000 7f2c408be700 -1 mon.a@0(leader) e4 *** Got Signal Terminated *** 2024-04-15T17:42:06.876 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:42:06 smithi055 podman[58234]: 2024-04-15 17:42:06.648027007 +0000 UTC m=+0.177951260 container died 015e37941ede7a11bed4051b07e0d117aacc7a78f7971aa13f296a6bc816418b (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mon-a, GIT_CLEAN=True, org.label-schema.build-date=20240409, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, ceph=True, CEPH_POINT_RELEASE=, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.33.5, org.label-schema.name=CentOS Stream 8 Base Image, RELEASE=main-c2d8c31, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux ) 2024-04-15T17:42:07.288 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:42:07 smithi055 podman[58234]: 2024-04-15 17:42:07.083438835 +0000 UTC m=+0.613363131 container cleanup 015e37941ede7a11bed4051b07e0d117aacc7a78f7971aa13f296a6bc816418b (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mon-a, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240409, GIT_BRANCH=HEAD, io.buildah.version=1.33.5, RELEASE=main-c2d8c31, ceph=True, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.vendor=CentOS) 2024-04-15T17:42:07.288 INFO:journalctl@ceph.mon.a.smithi055.stdout:Apr 15 17:42:07 smithi055 bash[58234]: ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mon-a 2024-04-15T17:42:07.498 DEBUG:teuthology.orchestra.run.smithi055:> sudo pkill -f 'journalctl -f -n 0 -u ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@mon.a.service' 2024-04-15T17:42:07.544 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T17:42:07.544 INFO:tasks.cephadm.mon.a:Stopped mon.a 2024-04-15T17:42:07.544 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2024-04-15T17:42:07.544 DEBUG:teuthology.orchestra.run.smithi092:> sudo systemctl stop ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@mon.b 2024-04-15T17:42:07.874 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:42:07 smithi092 systemd[1]: Stopping Ceph mon.b for 6c2710cc-fb4e-11ee-bc8f-c7b262605968... 2024-04-15T17:42:08.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:42:07 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mon-b[33092]: 2024-04-15T17:42:07.868+0000 7fe35e874700 -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-04-15T17:42:08.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:42:07 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mon-b[33092]: 2024-04-15T17:42:07.868+0000 7fe35e874700 -1 mon.b@1(peon) e4 *** Got Signal Terminated *** 2024-04-15T17:42:08.134 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:42:07 smithi092 podman[48690]: 2024-04-15 17:42:07.961361392 +0000 UTC m=+0.231085775 container died 1b54cd9c39b5fe906e4ab0277d652844239ac8697893c0fb866e0f14a2105893 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mon-b, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.build-date=20240409, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, io.buildah.version=1.33.5, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, RELEASE=main-c2d8c31, GIT_CLEAN=True) 2024-04-15T17:42:08.616 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:42:08 smithi092 podman[48690]: 2024-04-15 17:42:08.410445225 +0000 UTC m=+0.680169662 container cleanup 1b54cd9c39b5fe906e4ab0277d652844239ac8697893c0fb866e0f14a2105893 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mon-b, CEPH_POINT_RELEASE=, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, io.buildah.version=1.33.5, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, RELEASE=main-c2d8c31, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.build-date=20240409) 2024-04-15T17:42:08.616 INFO:journalctl@ceph.mon.b.smithi092.stdout:Apr 15 17:42:08 smithi092 bash[48690]: ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mon-b 2024-04-15T17:42:08.830 DEBUG:teuthology.orchestra.run.smithi092:> sudo pkill -f 'journalctl -f -n 0 -u ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@mon.b.service' 2024-04-15T17:42:08.877 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T17:42:08.878 INFO:tasks.cephadm.mon.c:Stopped mon.b 2024-04-15T17:42:08.878 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2024-04-15T17:42:08.878 DEBUG:teuthology.orchestra.run.smithi118:> sudo systemctl stop ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@mon.c 2024-04-15T17:42:08.927 DEBUG:teuthology.orchestra.run.smithi118:> sudo pkill -f 'journalctl -f -n 0 -u ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@mon.c.service' 2024-04-15T17:42:08.996 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T17:42:08.996 INFO:tasks.cephadm.mon.c:Stopped mon.c 2024-04-15T17:42:08.997 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2024-04-15T17:42:08.997 DEBUG:teuthology.orchestra.run.smithi055:> sudo systemctl stop ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@mgr.a 2024-04-15T17:42:09.375 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:42:09 smithi055 systemd[1]: Stopping Ceph mgr.a for 6c2710cc-fb4e-11ee-bc8f-c7b262605968... 2024-04-15T17:42:09.700 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:42:09 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:42:09.387+0000 7fa8236c5700 -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-04-15T17:42:09.700 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:42:09 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a[29821]: 2024-04-15T17:42:09.387+0000 7fa8236c5700 -1 mgr handle_mgr_signal *** Got signal Terminated *** 2024-04-15T17:42:09.700 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:42:09 smithi055 podman[58355]: 2024-04-15 17:42:09.418841226 +0000 UTC m=+0.228222401 container died c58e641022e86461f71e44cf94f4ffd8eabf5e911eaba11e641b32097b6183e8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, RELEASE=main-c2d8c31, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.build-date=20240409, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.33.5, GIT_CLEAN=True, ceph=True) 2024-04-15T17:42:10.125 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:42:09 smithi055 podman[58355]: 2024-04-15 17:42:09.871104159 +0000 UTC m=+0.680485368 container cleanup c58e641022e86461f71e44cf94f4ffd8eabf5e911eaba11e641b32097b6183e8 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:c2d8c3155d854ee204cb7c7261232571229d1d54, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.build-date=20240409, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, ceph=True, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, io.buildah.version=1.33.5, GIT_CLEAN=True, RELEASE=main-c2d8c31, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=) 2024-04-15T17:42:10.125 INFO:journalctl@ceph.mgr.a.smithi055.stdout:Apr 15 17:42:09 smithi055 bash[58355]: ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-a 2024-04-15T17:42:10.306 DEBUG:teuthology.orchestra.run.smithi055:> sudo pkill -f 'journalctl -f -n 0 -u ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@mgr.a.service' 2024-04-15T17:42:10.345 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T17:42:10.346 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2024-04-15T17:42:10.346 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2024-04-15T17:42:10.346 DEBUG:teuthology.orchestra.run.smithi092:> sudo systemctl stop ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@mgr.b 2024-04-15T17:42:10.634 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:42:10 smithi092 systemd[1]: Stopping Ceph mgr.b for 6c2710cc-fb4e-11ee-bc8f-c7b262605968... 2024-04-15T17:42:10.969 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:42:10 smithi092 podman[48810]: 2024-04-15 17:42:10.660974182 +0000 UTC m=+0.127295504 container died 5483aea1cc2e50c228729f761145627f5f72df5c117ccb4c15f64e96b14bfb8e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, ceph=True, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-c2d8c31, GIT_CLEAN=True, io.buildah.version=1.33.5, org.label-schema.build-date=20240409, org.label-schema.schema-version=1.0) 2024-04-15T17:42:11.353 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:42:11 smithi092 podman[48810]: 2024-04-15 17:42:11.031505706 +0000 UTC m=+0.497827038 container cleanup 5483aea1cc2e50c228729f761145627f5f72df5c117ccb4c15f64e96b14bfb8e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, RELEASE=main-c2d8c31, io.buildah.version=1.33.5, org.label-schema.build-date=20240409, GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS) 2024-04-15T17:42:11.353 INFO:journalctl@ceph.mgr.b.smithi092.stdout:Apr 15 17:42:11 smithi092 bash[48810]: ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-mgr-b 2024-04-15T17:42:11.507 DEBUG:teuthology.orchestra.run.smithi092:> sudo pkill -f 'journalctl -f -n 0 -u ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@mgr.b.service' 2024-04-15T17:42:11.544 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T17:42:11.544 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2024-04-15T17:42:11.545 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2024-04-15T17:42:11.545 DEBUG:teuthology.orchestra.run.smithi055:> sudo systemctl stop ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@osd.0 2024-04-15T17:42:11.837 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:42:11 smithi055 systemd[1]: Stopping Ceph osd.0 for 6c2710cc-fb4e-11ee-bc8f-c7b262605968... 2024-04-15T17:42:12.104 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:42:11 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-0[43547]: 2024-04-15T17:42:11.833+0000 7f975a651700 -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-04-15T17:42:12.104 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:42:11 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-0[43547]: 2024-04-15T17:42:11.833+0000 7f975a651700 -1 osd.0 58 *** Got signal Terminated *** 2024-04-15T17:42:12.105 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:42:11 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-0[43547]: 2024-04-15T17:42:11.833+0000 7f975a651700 -1 osd.0 58 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-15T17:42:17.497 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:42:17 smithi055 podman[58474]: 2024-04-15 17:42:17.242993071 +0000 UTC m=+5.502657768 container died 6383ce944a0b962c4220930b51f32458d61f81bb1fd81b17431b057f570eb916 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-0, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.build-date=20240409, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , RELEASE=main-c2d8c31, GIT_BRANCH=HEAD, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, io.buildah.version=1.33.5) 2024-04-15T17:42:17.780 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:42:17 smithi055 podman[58474]: 2024-04-15 17:42:17.583114154 +0000 UTC m=+5.842778844 container cleanup 6383ce944a0b962c4220930b51f32458d61f81bb1fd81b17431b057f570eb916 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-0, RELEASE=main-c2d8c31, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_CLEAN=True, io.buildah.version=1.33.5, org.label-schema.vendor=CentOS, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.build-date=20240409, ceph=True) 2024-04-15T17:42:17.780 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:42:17 smithi055 bash[58474]: ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-0 2024-04-15T17:42:18.125 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:42:17 smithi055 podman[58503]: 2024-04-15 17:42:17.776155338 +0000 UTC m=+0.530488617 container remove 6383ce944a0b962c4220930b51f32458d61f81bb1fd81b17431b057f570eb916 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-0, org.label-schema.build-date=20240409, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image, RELEASE=main-c2d8c31, io.buildah.version=1.33.5, org.label-schema.vendor=CentOS, ceph=True, GIT_CLEAN=True, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=) 2024-04-15T17:42:18.525 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:42:18 smithi055 podman[58593]: 2024-04-15 17:42:18.10354691 +0000 UTC m=+0.017496383 image pull 259793512b732efd8e04a33aa28c6de3675c47d120bc226206521425d246003e quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163 2024-04-15T17:42:18.525 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:42:18 smithi055 podman[58593]: 2024-04-15 17:42:18.210497542 +0000 UTC m=+0.124446988 container create 06d1d6d39b279c70c7d386aeca6d889298a818a5ec4174678a54125dd6dd43bd (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-0-deactivate, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 8 Base Image, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240409, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, ceph=True, GIT_CLEAN=True, RELEASE=main-c2d8c31, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, io.buildah.version=1.33.5, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67) 2024-04-15T17:42:18.525 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:42:18 smithi055 podman[58593]: 2024-04-15 17:42:18.437887692 +0000 UTC m=+0.351837137 container init 06d1d6d39b279c70c7d386aeca6d889298a818a5ec4174678a54125dd6dd43bd (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-0-deactivate, org.label-schema.vendor=CentOS, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.license=GPLv2, ceph=True, org.label-schema.build-date=20240409, GIT_CLEAN=True, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 8 Base Image, maintainer=Guillaume Abrioux , RELEASE=main-c2d8c31, io.buildah.version=1.33.5, CEPH_POINT_RELEASE=) 2024-04-15T17:42:18.525 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:42:18 smithi055 podman[58593]: 2024-04-15 17:42:18.441209442 +0000 UTC m=+0.355158896 container start 06d1d6d39b279c70c7d386aeca6d889298a818a5ec4174678a54125dd6dd43bd (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-0-deactivate, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.build-date=20240409, org.label-schema.name=CentOS Stream 8 Base Image, RELEASE=main-c2d8c31, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, GIT_CLEAN=True, org.label-schema.schema-version=1.0) 2024-04-15T17:42:18.525 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:42:18 smithi055 podman[58593]: 2024-04-15 17:42:18.520954682 +0000 UTC m=+0.434904146 container attach 06d1d6d39b279c70c7d386aeca6d889298a818a5ec4174678a54125dd6dd43bd (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-0-deactivate, org.label-schema.name=CentOS Stream 8 Base Image, RELEASE=main-c2d8c31, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, org.label-schema.build-date=20240409, GIT_CLEAN=True, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, io.buildah.version=1.33.5, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, ceph=True) 2024-04-15T17:42:18.875 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:42:18 smithi055 podman[58593]: 2024-04-15 17:42:18.73791301 +0000 UTC m=+0.651862469 container died 06d1d6d39b279c70c7d386aeca6d889298a818a5ec4174678a54125dd6dd43bd (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-0-deactivate, RELEASE=main-c2d8c31, io.buildah.version=1.33.5, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.build-date=20240409, GIT_CLEAN=True, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=) 2024-04-15T17:42:19.276 DEBUG:teuthology.orchestra.run.smithi055:> sudo pkill -f 'journalctl -f -n 0 -u ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@osd.0.service' 2024-04-15T17:42:19.281 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:42:19 smithi055 podman[58620]: 2024-04-15 17:42:19.240858565 +0000 UTC m=+0.494111586 container remove 06d1d6d39b279c70c7d386aeca6d889298a818a5ec4174678a54125dd6dd43bd (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-0-deactivate, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, RELEASE=main-c2d8c31, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.name=CentOS Stream 8 Base Image, io.buildah.version=1.33.5, org.label-schema.build-date=20240409, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, GIT_CLEAN=True, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS) 2024-04-15T17:42:19.281 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:42:19 smithi055 systemd[1]: ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@osd.0.service: Deactivated successfully. 2024-04-15T17:42:19.281 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:42:19 smithi055 systemd[1]: Stopped Ceph osd.0 for 6c2710cc-fb4e-11ee-bc8f-c7b262605968. 2024-04-15T17:42:19.281 INFO:journalctl@ceph.osd.0.smithi055.stdout:Apr 15 17:42:19 smithi055 systemd[1]: ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@osd.0.service: Consumed 2.410s CPU time. 2024-04-15T17:42:19.318 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T17:42:19.318 INFO:tasks.cephadm.osd.0:Stopped osd.0 2024-04-15T17:42:19.318 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2024-04-15T17:42:19.318 DEBUG:teuthology.orchestra.run.smithi055:> sudo systemctl stop ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@osd.1 2024-04-15T17:42:19.625 INFO:journalctl@ceph.osd.1.smithi055.stdout:Apr 15 17:42:19 smithi055 systemd[1]: Stopping Ceph osd.1 for 6c2710cc-fb4e-11ee-bc8f-c7b262605968... 2024-04-15T17:42:20.125 INFO:journalctl@ceph.osd.1.smithi055.stdout:Apr 15 17:42:19 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-1[49055]: 2024-04-15T17:42:19.668+0000 7f50c16a3700 -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-04-15T17:42:20.125 INFO:journalctl@ceph.osd.1.smithi055.stdout:Apr 15 17:42:19 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-1[49055]: 2024-04-15T17:42:19.668+0000 7f50c16a3700 -1 osd.1 58 *** Got signal Terminated *** 2024-04-15T17:42:20.126 INFO:journalctl@ceph.osd.1.smithi055.stdout:Apr 15 17:42:19 smithi055 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-1[49055]: 2024-04-15T17:42:19.668+0000 7f50c16a3700 -1 osd.1 58 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-15T17:42:25.372 INFO:journalctl@ceph.osd.1.smithi055.stdout:Apr 15 17:42:25 smithi055 podman[58700]: 2024-04-15 17:42:25.081275835 +0000 UTC m=+5.535619145 container died d9139caa863788f685926834a9196b2d710c12192bbc107cd6ec69c56fda3940 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-1, io.buildah.version=1.33.5, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, RELEASE=main-c2d8c31, ceph=True, GIT_CLEAN=True, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 8 Base Image, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, org.label-schema.build-date=20240409) 2024-04-15T17:42:25.372 INFO:journalctl@ceph.osd.1.smithi055.stdout:Apr 15 17:42:25 smithi055 podman[58700]: 2024-04-15 17:42:25.368138645 +0000 UTC m=+5.822481959 container cleanup d9139caa863788f685926834a9196b2d710c12192bbc107cd6ec69c56fda3940 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-1, io.buildah.version=1.33.5, org.label-schema.name=CentOS Stream 8 Base Image, RELEASE=main-c2d8c31, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240409, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.schema-version=1.0, GIT_CLEAN=True) 2024-04-15T17:42:25.625 INFO:journalctl@ceph.osd.1.smithi055.stdout:Apr 15 17:42:25 smithi055 bash[58700]: ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-1 2024-04-15T17:42:25.625 INFO:journalctl@ceph.osd.1.smithi055.stdout:Apr 15 17:42:25 smithi055 podman[58719]: 2024-04-15 17:42:25.602485405 +0000 UTC m=+0.516292268 container remove d9139caa863788f685926834a9196b2d710c12192bbc107cd6ec69c56fda3940 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-1, RELEASE=main-c2d8c31, GIT_CLEAN=True, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240409, org.label-schema.name=CentOS Stream 8 Base Image, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, ceph=True, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, io.buildah.version=1.33.5) 2024-04-15T17:42:26.209 INFO:journalctl@ceph.osd.1.smithi055.stdout:Apr 15 17:42:25 smithi055 podman[58809]: 2024-04-15 17:42:25.903198432 +0000 UTC m=+0.114026986 container create eea906d58354225d81a1d755e602c0c93c151581aba67ebfd2664c43f85422ab (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-1-deactivate, GIT_CLEAN=True, org.label-schema.vendor=CentOS, ceph=True, RELEASE=main-c2d8c31, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240409, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-04-15T17:42:26.209 INFO:journalctl@ceph.osd.1.smithi055.stdout:Apr 15 17:42:25 smithi055 podman[58809]: 2024-04-15 17:42:25.807040294 +0000 UTC m=+0.017868860 image pull 259793512b732efd8e04a33aa28c6de3675c47d120bc226206521425d246003e quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163 2024-04-15T17:42:26.209 INFO:journalctl@ceph.osd.1.smithi055.stdout:Apr 15 17:42:26 smithi055 podman[58809]: 2024-04-15 17:42:26.122091203 +0000 UTC m=+0.332919758 container init eea906d58354225d81a1d755e602c0c93c151581aba67ebfd2664c43f85422ab (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-1-deactivate, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240409, org.label-schema.vendor=CentOS, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, GIT_CLEAN=True, io.buildah.version=1.33.5, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 8 Base Image, RELEASE=main-c2d8c31) 2024-04-15T17:42:26.209 INFO:journalctl@ceph.osd.1.smithi055.stdout:Apr 15 17:42:26 smithi055 podman[58809]: 2024-04-15 17:42:26.125455718 +0000 UTC m=+0.336284271 container start eea906d58354225d81a1d755e602c0c93c151581aba67ebfd2664c43f85422ab (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-1-deactivate, ceph=True, org.label-schema.build-date=20240409, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 8 Base Image, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, io.buildah.version=1.33.5, RELEASE=main-c2d8c31, GIT_CLEAN=True, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0) 2024-04-15T17:42:26.210 INFO:journalctl@ceph.osd.1.smithi055.stdout:Apr 15 17:42:26 smithi055 podman[58809]: 2024-04-15 17:42:26.205297481 +0000 UTC m=+0.416126040 container attach eea906d58354225d81a1d755e602c0c93c151581aba67ebfd2664c43f85422ab (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-1-deactivate, GIT_CLEAN=True, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 8 Base Image, io.buildah.version=1.33.5, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.license=GPLv2, ceph=True, RELEASE=main-c2d8c31, GIT_BRANCH=HEAD, org.label-schema.build-date=20240409) 2024-04-15T17:42:26.625 INFO:journalctl@ceph.osd.1.smithi055.stdout:Apr 15 17:42:26 smithi055 podman[58809]: 2024-04-15 17:42:26.423949648 +0000 UTC m=+0.634778192 container died eea906d58354225d81a1d755e602c0c93c151581aba67ebfd2664c43f85422ab (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-1-deactivate, RELEASE=main-c2d8c31, GIT_BRANCH=HEAD, GIT_CLEAN=True, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, ceph=True, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.build-date=20240409, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2) 2024-04-15T17:42:26.977 INFO:journalctl@ceph.osd.1.smithi055.stdout:Apr 15 17:42:26 smithi055 podman[58835]: 2024-04-15 17:42:26.958144077 +0000 UTC m=+0.529385125 container remove eea906d58354225d81a1d755e602c0c93c151581aba67ebfd2664c43f85422ab (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-1-deactivate, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, RELEASE=main-c2d8c31, GIT_BRANCH=HEAD, GIT_CLEAN=True, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, ceph=True, org.label-schema.build-date=20240409, org.label-schema.vendor=CentOS) 2024-04-15T17:42:26.983 DEBUG:teuthology.orchestra.run.smithi055:> sudo pkill -f 'journalctl -f -n 0 -u ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@osd.1.service' 2024-04-15T17:42:27.025 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T17:42:27.026 INFO:tasks.cephadm.osd.1:Stopped osd.1 2024-04-15T17:42:27.026 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2024-04-15T17:42:27.026 DEBUG:teuthology.orchestra.run.smithi092:> sudo systemctl stop ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@osd.2 2024-04-15T17:42:27.384 INFO:journalctl@ceph.osd.2.smithi092.stdout:Apr 15 17:42:27 smithi092 systemd[1]: Stopping Ceph osd.2 for 6c2710cc-fb4e-11ee-bc8f-c7b262605968... 2024-04-15T17:42:27.884 INFO:journalctl@ceph.osd.2.smithi092.stdout:Apr 15 17:42:27 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-2[37402]: 2024-04-15T17:42:27.508+0000 7f3ecdd30700 -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-04-15T17:42:27.884 INFO:journalctl@ceph.osd.2.smithi092.stdout:Apr 15 17:42:27 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-2[37402]: 2024-04-15T17:42:27.508+0000 7f3ecdd30700 -1 osd.2 58 *** Got signal Terminated *** 2024-04-15T17:42:27.884 INFO:journalctl@ceph.osd.2.smithi092.stdout:Apr 15 17:42:27 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-2[37402]: 2024-04-15T17:42:27.508+0000 7f3ecdd30700 -1 osd.2 58 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-15T17:42:33.303 INFO:journalctl@ceph.osd.2.smithi092.stdout:Apr 15 17:42:32 smithi092 podman[48946]: 2024-04-15 17:42:32.954238545 +0000 UTC m=+5.729476061 container died 3484566f346a74bc303cc2e8654d6e026f1cff527143212039ca6bf9521f097a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-2, org.label-schema.schema-version=1.0, RELEASE=main-c2d8c31, ceph=True, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.name=CentOS Stream 8 Base Image, io.buildah.version=1.33.5, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, GIT_CLEAN=True, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240409) 2024-04-15T17:42:33.366 INFO:journalctl@ceph.osd.2.smithi092.stdout:Apr 15 17:42:33 smithi092 podman[48946]: 2024-04-15 17:42:33.299208413 +0000 UTC m=+6.074445927 container cleanup 3484566f346a74bc303cc2e8654d6e026f1cff527143212039ca6bf9521f097a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-2, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, maintainer=Guillaume Abrioux , GIT_CLEAN=True, io.buildah.version=1.33.5, org.label-schema.name=CentOS Stream 8 Base Image, RELEASE=main-c2d8c31, org.label-schema.build-date=20240409, GIT_BRANCH=HEAD) 2024-04-15T17:42:33.634 INFO:journalctl@ceph.osd.2.smithi092.stdout:Apr 15 17:42:33 smithi092 bash[48946]: ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-2 2024-04-15T17:42:33.634 INFO:journalctl@ceph.osd.2.smithi092.stdout:Apr 15 17:42:33 smithi092 podman[48963]: 2024-04-15 17:42:33.48366763 +0000 UTC m=+0.529479910 container remove 3484566f346a74bc303cc2e8654d6e026f1cff527143212039ca6bf9521f097a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-2, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 8 Base Image, io.buildah.version=1.33.5, CEPH_POINT_RELEASE=, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, RELEASE=main-c2d8c31, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.build-date=20240409) 2024-04-15T17:42:34.191 INFO:journalctl@ceph.osd.2.smithi092.stdout:Apr 15 17:42:33 smithi092 podman[49055]: 2024-04-15 17:42:33.808908835 +0000 UTC m=+0.017885662 image pull 259793512b732efd8e04a33aa28c6de3675c47d120bc226206521425d246003e quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163 2024-04-15T17:42:34.191 INFO:journalctl@ceph.osd.2.smithi092.stdout:Apr 15 17:42:33 smithi092 podman[49055]: 2024-04-15 17:42:33.909328925 +0000 UTC m=+0.118305741 container create 4b861a061f48adc087cc31e2c27732265fb0342ab70b853b284e510f1554180f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-2-deactivate, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 8 Base Image, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, io.buildah.version=1.33.5, maintainer=Guillaume Abrioux , ceph=True, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240409, RELEASE=main-c2d8c31) 2024-04-15T17:42:34.191 INFO:journalctl@ceph.osd.2.smithi092.stdout:Apr 15 17:42:34 smithi092 podman[49055]: 2024-04-15 17:42:34.128247345 +0000 UTC m=+0.337224162 container init 4b861a061f48adc087cc31e2c27732265fb0342ab70b853b284e510f1554180f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-2-deactivate, RELEASE=main-c2d8c31, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.license=GPLv2, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, GIT_BRANCH=HEAD, GIT_CLEAN=True, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 8 Base Image, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240409, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.33.5, org.label-schema.schema-version=1.0) 2024-04-15T17:42:34.191 INFO:journalctl@ceph.osd.2.smithi092.stdout:Apr 15 17:42:34 smithi092 podman[49055]: 2024-04-15 17:42:34.13161445 +0000 UTC m=+0.340591274 container start 4b861a061f48adc087cc31e2c27732265fb0342ab70b853b284e510f1554180f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-2-deactivate, org.label-schema.license=GPLv2, io.buildah.version=1.33.5, ceph=True, org.label-schema.build-date=20240409, org.label-schema.name=CentOS Stream 8 Base Image, GIT_CLEAN=True, maintainer=Guillaume Abrioux , RELEASE=main-c2d8c31, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, GIT_BRANCH=HEAD) 2024-04-15T17:42:34.191 INFO:journalctl@ceph.osd.2.smithi092.stdout:Apr 15 17:42:34 smithi092 podman[49055]: 2024-04-15 17:42:34.186491029 +0000 UTC m=+0.395467858 container attach 4b861a061f48adc087cc31e2c27732265fb0342ab70b853b284e510f1554180f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-2-deactivate, org.label-schema.name=CentOS Stream 8 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, ceph=True, org.label-schema.schema-version=1.0, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, RELEASE=main-c2d8c31, io.buildah.version=1.33.5, GIT_CLEAN=True, org.label-schema.build-date=20240409, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux ) 2024-04-15T17:42:34.633 INFO:journalctl@ceph.osd.2.smithi092.stdout:Apr 15 17:42:34 smithi092 podman[49055]: 2024-04-15 17:42:34.418057596 +0000 UTC m=+0.627034415 container died 4b861a061f48adc087cc31e2c27732265fb0342ab70b853b284e510f1554180f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-2-deactivate, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240409, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 8 Base Image, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, RELEASE=main-c2d8c31, io.buildah.version=1.33.5, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , ceph=True) 2024-04-15T17:42:35.010 INFO:journalctl@ceph.osd.2.smithi092.stdout:Apr 15 17:42:34 smithi092 podman[49082]: 2024-04-15 17:42:34.989782977 +0000 UTC m=+0.561270032 container remove 4b861a061f48adc087cc31e2c27732265fb0342ab70b853b284e510f1554180f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-2-deactivate, CEPH_POINT_RELEASE=, io.buildah.version=1.33.5, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, GIT_CLEAN=True, org.label-schema.license=GPLv2, RELEASE=main-c2d8c31, ceph=True, org.label-schema.build-date=20240409, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux ) 2024-04-15T17:42:35.014 DEBUG:teuthology.orchestra.run.smithi092:> sudo pkill -f 'journalctl -f -n 0 -u ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@osd.2.service' 2024-04-15T17:42:35.056 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T17:42:35.056 INFO:tasks.cephadm.osd.2:Stopped osd.2 2024-04-15T17:42:35.057 INFO:tasks.cephadm.osd.3:Stopping osd.3... 2024-04-15T17:42:35.057 DEBUG:teuthology.orchestra.run.smithi092:> sudo systemctl stop ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@osd.3 2024-04-15T17:42:35.300 INFO:journalctl@ceph.osd.3.smithi092.stdout:Apr 15 17:42:35 smithi092 systemd[1]: Stopping Ceph osd.3 for 6c2710cc-fb4e-11ee-bc8f-c7b262605968... 2024-04-15T17:42:35.634 INFO:journalctl@ceph.osd.3.smithi092.stdout:Apr 15 17:42:35 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-3[43381]: 2024-04-15T17:42:35.417+0000 7ff610de1700 -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-04-15T17:42:35.634 INFO:journalctl@ceph.osd.3.smithi092.stdout:Apr 15 17:42:35 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-3[43381]: 2024-04-15T17:42:35.417+0000 7ff610de1700 -1 osd.3 58 *** Got signal Terminated *** 2024-04-15T17:42:35.634 INFO:journalctl@ceph.osd.3.smithi092.stdout:Apr 15 17:42:35 smithi092 ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-3[43381]: 2024-04-15T17:42:35.417+0000 7ff610de1700 -1 osd.3 58 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-15T17:42:41.262 INFO:journalctl@ceph.osd.3.smithi092.stdout:Apr 15 17:42:40 smithi092 podman[49161]: 2024-04-15 17:42:40.90924422 +0000 UTC m=+5.601561262 container died 7bfe778bdf77b36ec8a8920090b0ac4c4af20d8c4929e4d09780c41271dcb739 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-3, ceph=True, io.buildah.version=1.33.5, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, RELEASE=main-c2d8c31, GIT_CLEAN=True, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, org.label-schema.build-date=20240409, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0) 2024-04-15T17:42:41.262 INFO:journalctl@ceph.osd.3.smithi092.stdout:Apr 15 17:42:41 smithi092 podman[49161]: 2024-04-15 17:42:41.258031896 +0000 UTC m=+5.950348923 container cleanup 7bfe778bdf77b36ec8a8920090b0ac4c4af20d8c4929e4d09780c41271dcb739 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-3, GIT_BRANCH=HEAD, org.label-schema.build-date=20240409, RELEASE=main-c2d8c31, maintainer=Guillaume Abrioux , GIT_CLEAN=True, ceph=True, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, io.buildah.version=1.33.5, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67) 2024-04-15T17:42:41.634 INFO:journalctl@ceph.osd.3.smithi092.stdout:Apr 15 17:42:41 smithi092 bash[49161]: ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-3 2024-04-15T17:42:41.634 INFO:journalctl@ceph.osd.3.smithi092.stdout:Apr 15 17:42:41 smithi092 podman[49189]: 2024-04-15 17:42:41.475696527 +0000 UTC m=+0.560747147 container remove 7bfe778bdf77b36ec8a8920090b0ac4c4af20d8c4929e4d09780c41271dcb739 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-3, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, RELEASE=main-c2d8c31, org.label-schema.vendor=CentOS, io.buildah.version=1.33.5, GIT_BRANCH=HEAD, GIT_CLEAN=True, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240409, CEPH_POINT_RELEASE=) 2024-04-15T17:42:42.199 INFO:journalctl@ceph.osd.3.smithi092.stdout:Apr 15 17:42:41 smithi092 podman[49277]: 2024-04-15 17:42:41.786149535 +0000 UTC m=+0.017639430 image pull 259793512b732efd8e04a33aa28c6de3675c47d120bc226206521425d246003e quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163 2024-04-15T17:42:42.199 INFO:journalctl@ceph.osd.3.smithi092.stdout:Apr 15 17:42:41 smithi092 podman[49277]: 2024-04-15 17:42:41.893208947 +0000 UTC m=+0.124698830 container create 690b693d1f06d020a37eed5f710494dea9777bb90fa750774aab47bb685f862d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-3-deactivate, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, RELEASE=main-c2d8c31, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.build-date=20240409, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, ceph=True) 2024-04-15T17:42:42.199 INFO:journalctl@ceph.osd.3.smithi092.stdout:Apr 15 17:42:42 smithi092 podman[49277]: 2024-04-15 17:42:42.120758236 +0000 UTC m=+0.352248115 container init 690b693d1f06d020a37eed5f710494dea9777bb90fa750774aab47bb685f862d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-3-deactivate, RELEASE=main-c2d8c31, org.label-schema.build-date=20240409, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, io.buildah.version=1.33.5, GIT_CLEAN=True, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux ) 2024-04-15T17:42:42.199 INFO:journalctl@ceph.osd.3.smithi092.stdout:Apr 15 17:42:42 smithi092 podman[49277]: 2024-04-15 17:42:42.123964576 +0000 UTC m=+0.355454462 container start 690b693d1f06d020a37eed5f710494dea9777bb90fa750774aab47bb685f862d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-3-deactivate, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240409, org.label-schema.schema-version=1.0, GIT_CLEAN=True, org.label-schema.license=GPLv2, io.buildah.version=1.33.5, RELEASE=main-c2d8c31, GIT_BRANCH=HEAD, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.name=CentOS Stream 8 Base Image) 2024-04-15T17:42:42.200 INFO:journalctl@ceph.osd.3.smithi092.stdout:Apr 15 17:42:42 smithi092 podman[49277]: 2024-04-15 17:42:42.195502384 +0000 UTC m=+0.426992264 container attach 690b693d1f06d020a37eed5f710494dea9777bb90fa750774aab47bb685f862d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-3-deactivate, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240409, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, io.buildah.version=1.33.5, RELEASE=main-c2d8c31, GIT_CLEAN=True, ceph=True, org.label-schema.vendor=CentOS) 2024-04-15T17:42:42.634 INFO:journalctl@ceph.osd.3.smithi092.stdout:Apr 15 17:42:42 smithi092 podman[49277]: 2024-04-15 17:42:42.409723239 +0000 UTC m=+0.641213127 container died 690b693d1f06d020a37eed5f710494dea9777bb90fa750774aab47bb685f862d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-3-deactivate, org.label-schema.name=CentOS Stream 8 Base Image, io.buildah.version=1.33.5, RELEASE=main-c2d8c31, GIT_CLEAN=True, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240409, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, ceph=True, org.label-schema.license=GPLv2) 2024-04-15T17:42:42.944 DEBUG:teuthology.orchestra.run.smithi092:> sudo pkill -f 'journalctl -f -n 0 -u ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@osd.3.service' 2024-04-15T17:42:42.972 INFO:journalctl@ceph.osd.3.smithi092.stdout:Apr 15 17:42:42 smithi092 podman[49303]: 2024-04-15 17:42:42.915066398 +0000 UTC m=+0.495136798 container remove 690b693d1f06d020a37eed5f710494dea9777bb90fa750774aab47bb685f862d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:55072b3f7eae2e3409906b98d09d882e1c3dc2a9205d85fd5f4c0bc62f82d163, name=ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968-osd-3-deactivate, RELEASE=main-c2d8c31, ceph=True, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.33.5, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240409, CEPH_POINT_RELEASE=, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0) 2024-04-15T17:42:42.972 INFO:journalctl@ceph.osd.3.smithi092.stdout:Apr 15 17:42:42 smithi092 systemd[1]: ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@osd.3.service: Deactivated successfully. 2024-04-15T17:42:42.972 INFO:journalctl@ceph.osd.3.smithi092.stdout:Apr 15 17:42:42 smithi092 systemd[1]: Stopped Ceph osd.3 for 6c2710cc-fb4e-11ee-bc8f-c7b262605968. 2024-04-15T17:42:42.972 INFO:journalctl@ceph.osd.3.smithi092.stdout:Apr 15 17:42:42 smithi092 systemd[1]: ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@osd.3.service: Consumed 2.266s CPU time. 2024-04-15T17:42:42.987 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T17:42:42.988 INFO:tasks.cephadm.osd.3:Stopped osd.3 2024-04-15T17:42:42.988 INFO:tasks.cephadm.osd.4:Stopping osd.4... 2024-04-15T17:42:42.988 DEBUG:teuthology.orchestra.run.smithi118:> sudo systemctl stop ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@osd.4 2024-04-15T17:42:43.036 DEBUG:teuthology.orchestra.run.smithi118:> sudo pkill -f 'journalctl -f -n 0 -u ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@osd.4.service' 2024-04-15T17:42:43.075 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T17:42:43.075 INFO:tasks.cephadm.osd.4:Stopped osd.4 2024-04-15T17:42:43.075 INFO:tasks.cephadm.osd.5:Stopping osd.5... 2024-04-15T17:42:43.075 DEBUG:teuthology.orchestra.run.smithi118:> sudo systemctl stop ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@osd.5 2024-04-15T17:42:43.157 DEBUG:teuthology.orchestra.run.smithi118:> sudo pkill -f 'journalctl -f -n 0 -u ceph-6c2710cc-fb4e-11ee-bc8f-c7b262605968@osd.5.service' 2024-04-15T17:42:43.233 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T17:42:43.233 INFO:tasks.cephadm.osd.5:Stopped osd.5 2024-04-15T17:42:43.233 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 --force --keep-logs 2024-04-15T17:42:43.433 INFO:teuthology.orchestra.run.smithi055.stdout:Deleting cluster with fsid: 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:42:44.705 DEBUG:teuthology.orchestra.run.smithi092:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 --force --keep-logs 2024-04-15T17:42:44.903 INFO:teuthology.orchestra.run.smithi092.stdout:Deleting cluster with fsid: 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:42:46.229 DEBUG:teuthology.orchestra.run.smithi118:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 --force --keep-logs 2024-04-15T17:42:46.424 INFO:teuthology.orchestra.run.smithi118.stdout:Deleting cluster with fsid: 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:42:46.826 DEBUG:teuthology.orchestra.run.smithi055:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-15T17:42:46.863 DEBUG:teuthology.orchestra.run.smithi092:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-15T17:42:46.895 DEBUG:teuthology.orchestra.run.smithi118:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-15T17:42:46.925 INFO:tasks.cephadm:Archiving crash dumps... 2024-04-15T17:42:46.927 DEBUG:teuthology.misc:Transferring archived files from smithi055:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-14_20:00:15-rados-main-distro-default-smithi/7656064/remote/smithi055/crash 2024-04-15T17:42:46.928 DEBUG:teuthology.orchestra.run.smithi055:> sudo tar c -f - -C /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/crash -- . 2024-04-15T17:42:47.018 INFO:teuthology.orchestra.run.smithi055.stderr:tar: /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/crash: Cannot open: No such file or directory 2024-04-15T17:42:47.018 INFO:teuthology.orchestra.run.smithi055.stderr:tar: Error is not recoverable: exiting now 2024-04-15T17:42:47.020 DEBUG:teuthology.misc:Transferring archived files from smithi092:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-14_20:00:15-rados-main-distro-default-smithi/7656064/remote/smithi092/crash 2024-04-15T17:42:47.021 DEBUG:teuthology.orchestra.run.smithi092:> sudo tar c -f - -C /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/crash -- . 2024-04-15T17:42:47.066 INFO:teuthology.orchestra.run.smithi092.stderr:tar: /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/crash: Cannot open: No such file or directory 2024-04-15T17:42:47.067 INFO:teuthology.orchestra.run.smithi092.stderr:tar: Error is not recoverable: exiting now 2024-04-15T17:42:47.068 DEBUG:teuthology.misc:Transferring archived files from smithi118:/var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-14_20:00:15-rados-main-distro-default-smithi/7656064/remote/smithi118/crash 2024-04-15T17:42:47.069 DEBUG:teuthology.orchestra.run.smithi118:> sudo tar c -f - -C /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/crash -- . 2024-04-15T17:42:47.111 INFO:teuthology.orchestra.run.smithi118.stderr:tar: /var/lib/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/crash: Cannot open: No such file or directory 2024-04-15T17:42:47.112 INFO:teuthology.orchestra.run.smithi118.stderr:tar: Error is not recoverable: exiting now 2024-04-15T17:42:47.113 INFO:tasks.cephadm:Checking cluster log for badness... 2024-04-15T17:42:47.113 DEBUG:teuthology.orchestra.run.smithi055:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-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-04-15T17:42:47.271 INFO:teuthology.orchestra.run.smithi055.stdout:2024-04-15T17:40:12.715738+0000 mon.a (mon.0) 590 : cluster [WRN] Health check failed: Degraded data redundancy: 2/6 objects degraded (33.333%), 1 pg degraded (PG_DEGRADED) 2024-04-15T17:42:47.271 WARNING:tasks.cephadm:Found errors (ERR|WRN|SEC) in cluster log 2024-04-15T17:42:47.271 DEBUG:teuthology.orchestra.run.smithi055:> sudo egrep '\[SEC\]' /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-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-04-15T17:42:47.307 DEBUG:teuthology.orchestra.run.smithi055:> sudo egrep '\[ERR\]' /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-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-04-15T17:42:47.383 DEBUG:teuthology.orchestra.run.smithi055:> sudo egrep '\[WRN\]' /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-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-04-15T17:42:47.457 INFO:teuthology.orchestra.run.smithi055.stdout:2024-04-15T17:40:12.715738+0000 mon.a (mon.0) 590 : cluster [WRN] Health check failed: Degraded data redundancy: 2/6 objects degraded (33.333%), 1 pg degraded (PG_DEGRADED) 2024-04-15T17:42:47.457 INFO:tasks.cephadm:Compressing logs... 2024-04-15T17:42:47.457 DEBUG:teuthology.orchestra.run.smithi055:> 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-04-15T17:42:47.500 DEBUG:teuthology.orchestra.run.smithi092:> 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-04-15T17:42:47.502 DEBUG:teuthology.orchestra.run.smithi118:> 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-04-15T17:42:47.527 INFO:teuthology.orchestra.run.smithi055.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-15T17:42:47.527 INFO:teuthology.orchestra.run.smithi055.stderr:: No such file or directory 2024-04-15T17:42:47.528 INFO:teuthology.orchestra.run.smithi055.stderr:gzip -5 --verbose -- /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-mon.a.log 2024-04-15T17:42:47.528 INFO:teuthology.orchestra.run.smithi055.stderr:gzip -5 --verbose -- /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.audit.log 2024-04-15T17:42:47.529 INFO:teuthology.orchestra.run.smithi055.stderr:/var/log/ceph/cephadm.log: /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-mon.a.log: gzip -5 --verbose -- /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-mgr.a.log 2024-04-15T17:42:47.529 INFO:teuthology.orchestra.run.smithi055.stderr:/var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-osd.1.log 2024-04-15T17:42:47.529 INFO:teuthology.orchestra.run.smithi055.stderr:/var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-mgr.a.log: gzip -5 --verbose -- /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-osd.0.log 2024-04-15T17:42:47.534 INFO:teuthology.orchestra.run.smithi055.stderr:/var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.cephadm.log 2024-04-15T17:42:47.534 INFO:teuthology.orchestra.run.smithi055.stderr:/var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.log 2024-04-15T17:42:47.534 INFO:teuthology.orchestra.run.smithi055.stderr: 90.0% -- replaced with /var/log/ceph/cephadm.log.gz/var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.cephadm.log: 89.9% 2024-04-15T17:42:47.535 INFO:teuthology.orchestra.run.smithi055.stderr: -- replaced with /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.audit.log.gz 2024-04-15T17:42:47.535 INFO:teuthology.orchestra.run.smithi055.stderr:gzip -5 --verbose -- /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-volume.log 2024-04-15T17:42:47.535 INFO:teuthology.orchestra.run.smithi055.stderr: 83.1% -- replaced with /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.cephadm.log.gz 2024-04-15T17:42:47.535 INFO:teuthology.orchestra.run.smithi055.stderr:/var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.log: /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-volume.log: 85.9% -- replaced with /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.log.gz 2024-04-15T17:42:47.535 INFO:teuthology.orchestra.run.smithi092.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-15T17:42:47.536 INFO:teuthology.orchestra.run.smithi092.stderr:: No such file or directory 2024-04-15T17:42:47.536 INFO:teuthology.orchestra.run.smithi092.stderr:gzip -5 --verbose -- /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.audit.log 2024-04-15T17:42:47.536 INFO:teuthology.orchestra.run.smithi092.stderr:gzip -5 --verbose -- /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-osd.3.log 2024-04-15T17:42:47.536 INFO:teuthology.orchestra.run.smithi092.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.cephadm.log 2024-04-15T17:42:47.536 INFO:teuthology.orchestra.run.smithi092.stderr:/var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.audit.log: /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-osd.3.log: 90.3% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-15T17:42:47.536 INFO:teuthology.orchestra.run.smithi092.stderr:gzip -5 --verbose -- /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.log 2024-04-15T17:42:47.536 INFO:teuthology.orchestra.run.smithi092.stderr:/var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-osd.2.log 2024-04-15T17:42:47.536 INFO:teuthology.orchestra.run.smithi092.stderr: 82.4% -- replaced with /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.cephadm.log.gz 2024-04-15T17:42:47.536 INFO:teuthology.orchestra.run.smithi092.stderr:/var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.log: gzip -5 --verbose -- /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-mgr.b.log 2024-04-15T17:42:47.536 INFO:teuthology.orchestra.run.smithi092.stderr: 90.1% -- replaced with /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.audit.log.gz 2024-04-15T17:42:47.536 INFO:teuthology.orchestra.run.smithi092.stderr:/var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-volume.log 2024-04-15T17:42:47.536 INFO:teuthology.orchestra.run.smithi092.stderr: 85.6% -- replaced with /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.log.gz 2024-04-15T17:42:47.536 INFO:teuthology.orchestra.run.smithi092.stderr:/var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-mgr.b.log: gzip -5 --verbose -- /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-mon.b.log 2024-04-15T17:42:47.537 INFO:teuthology.orchestra.run.smithi092.stderr:/var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-volume.log: /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-mon.b.log: 90.9% -- replaced with /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-mgr.b.log.gz 2024-04-15T17:42:47.537 INFO:teuthology.orchestra.run.smithi092.stderr: 91.1% -- replaced with /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-volume.log.gz 2024-04-15T17:42:47.539 INFO:teuthology.orchestra.run.smithi118.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-15T17:42:47.539 INFO:teuthology.orchestra.run.smithi118.stderr:: No such file or directory 2024-04-15T17:42:47.539 INFO:teuthology.orchestra.run.smithi118.stderr:gzip -5 --verbose -- /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.audit.log 2024-04-15T17:42:47.539 INFO:teuthology.orchestra.run.smithi118.stderr:gzip -5 --verbose -- /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-osd.4.log 2024-04-15T17:42:47.539 INFO:teuthology.orchestra.run.smithi118.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-osd.5.log 2024-04-15T17:42:47.539 INFO:teuthology.orchestra.run.smithi118.stderr:/var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.audit.log: /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-osd.4.log: gzip -5 --verbose -- /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.cephadm.log 2024-04-15T17:42:47.539 INFO:teuthology.orchestra.run.smithi118.stderr:gzip -5 --verbose -- /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.log 2024-04-15T17:42:47.540 INFO:teuthology.orchestra.run.smithi118.stderr:/var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-osd.5.log: /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.cephadm.log: 89.2% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-15T17:42:47.540 INFO:teuthology.orchestra.run.smithi118.stderr:gzip -5 --verbose -- /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-volume.log 2024-04-15T17:42:47.540 INFO:teuthology.orchestra.run.smithi118.stderr: 80.2% -- replaced with /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.cephadm.log.gz 2024-04-15T17:42:47.540 INFO:teuthology.orchestra.run.smithi118.stderr: 90.0% -- replaced with /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.audit.log.gz 2024-04-15T17:42:47.540 INFO:teuthology.orchestra.run.smithi118.stderr:/var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.log: gzip -5 --verbose -- /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-mon.c.log 2024-04-15T17:42:47.540 INFO:teuthology.orchestra.run.smithi118.stderr:/var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-volume.log: 85.3% -- replaced with /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph.log.gz 2024-04-15T17:42:47.540 INFO:teuthology.orchestra.run.smithi118.stderr:/var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-mon.c.log: 91.3% -- replaced with /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-volume.log.gz 2024-04-15T17:42:47.540 INFO:teuthology.orchestra.run.smithi055.stderr: 91.1% -- replaced with /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-volume.log.gz 2024-04-15T17:42:47.552 INFO:teuthology.orchestra.run.smithi118.stderr: 92.8% -- replaced with /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-osd.4.log.gz 2024-04-15T17:42:47.563 INFO:teuthology.orchestra.run.smithi118.stderr: 92.8% -- replaced with /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-osd.5.log.gz 2024-04-15T17:42:47.566 INFO:teuthology.orchestra.run.smithi055.stderr: 93.4% -- replaced with /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-osd.1.log.gz 2024-04-15T17:42:47.577 INFO:teuthology.orchestra.run.smithi092.stderr: 93.0% -- replaced with /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-osd.3.log.gz 2024-04-15T17:42:47.577 INFO:teuthology.orchestra.run.smithi055.stderr: 93.2% -- replaced with /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-osd.0.log.gz 2024-04-15T17:42:47.592 INFO:teuthology.orchestra.run.smithi055.stderr: 89.5% -- replaced with /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-mgr.a.log.gz 2024-04-15T17:42:47.595 INFO:teuthology.orchestra.run.smithi118.stderr: 92.5% -- replaced with /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-mon.c.log.gz 2024-04-15T17:42:47.597 INFO:teuthology.orchestra.run.smithi118.stderr: 2024-04-15T17:42:47.597 INFO:teuthology.orchestra.run.smithi118.stderr:real 0m0.080s 2024-04-15T17:42:47.597 INFO:teuthology.orchestra.run.smithi118.stderr:user 0m0.130s 2024-04-15T17:42:47.597 INFO:teuthology.orchestra.run.smithi118.stderr:sys 0m0.027s 2024-04-15T17:42:47.610 INFO:teuthology.orchestra.run.smithi092.stderr: 92.2% -- replaced with /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-mon.b.log.gz 2024-04-15T17:42:47.611 INFO:teuthology.orchestra.run.smithi092.stderr: 93.5% -- replaced with /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-osd.2.log.gz 2024-04-15T17:42:47.613 INFO:teuthology.orchestra.run.smithi092.stderr: 2024-04-15T17:42:47.613 INFO:teuthology.orchestra.run.smithi092.stderr:real 0m0.098s 2024-04-15T17:42:47.613 INFO:teuthology.orchestra.run.smithi092.stderr:user 0m0.219s 2024-04-15T17:42:47.614 INFO:teuthology.orchestra.run.smithi092.stderr:sys 0m0.031s 2024-04-15T17:42:47.743 INFO:teuthology.orchestra.run.smithi055.stderr: 90.9% -- replaced with /var/log/ceph/6c2710cc-fb4e-11ee-bc8f-c7b262605968/ceph-mon.a.log.gz 2024-04-15T17:42:47.745 INFO:teuthology.orchestra.run.smithi055.stderr: 2024-04-15T17:42:47.745 INFO:teuthology.orchestra.run.smithi055.stderr:real 0m0.232s 2024-04-15T17:42:47.745 INFO:teuthology.orchestra.run.smithi055.stderr:user 0m0.369s 2024-04-15T17:42:47.745 INFO:teuthology.orchestra.run.smithi055.stderr:sys 0m0.045s 2024-04-15T17:42:47.746 INFO:tasks.cephadm:Archiving logs... 2024-04-15T17:42:47.746 DEBUG:teuthology.misc:Transferring archived files from smithi055:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-14_20:00:15-rados-main-distro-default-smithi/7656064/remote/smithi055/log 2024-04-15T17:42:47.747 DEBUG:teuthology.orchestra.run.smithi055:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-15T17:42:47.890 DEBUG:teuthology.misc:Transferring archived files from smithi092:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-14_20:00:15-rados-main-distro-default-smithi/7656064/remote/smithi092/log 2024-04-15T17:42:47.891 DEBUG:teuthology.orchestra.run.smithi092:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-15T17:42:47.962 DEBUG:teuthology.misc:Transferring archived files from smithi118:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-14_20:00:15-rados-main-distro-default-smithi/7656064/remote/smithi118/log 2024-04-15T17:42:47.963 DEBUG:teuthology.orchestra.run.smithi118:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-15T17:42:48.014 INFO:tasks.cephadm:Removing cluster... 2024-04-15T17:42:48.014 DEBUG:teuthology.orchestra.run.smithi055:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 --force 2024-04-15T17:42:48.202 INFO:teuthology.orchestra.run.smithi055.stdout:Deleting cluster with fsid: 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:42:48.452 DEBUG:teuthology.orchestra.run.smithi092:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 --force 2024-04-15T17:42:48.640 INFO:teuthology.orchestra.run.smithi092.stdout:Deleting cluster with fsid: 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:42:48.891 DEBUG:teuthology.orchestra.run.smithi118:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 6c2710cc-fb4e-11ee-bc8f-c7b262605968 --force 2024-04-15T17:42:49.084 INFO:teuthology.orchestra.run.smithi118.stdout:Deleting cluster with fsid: 6c2710cc-fb4e-11ee-bc8f-c7b262605968 2024-04-15T17:42:49.330 INFO:tasks.cephadm:Removing cephadm ... 2024-04-15T17:42:49.330 DEBUG:teuthology.orchestra.run.smithi055:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-15T17:42:49.350 DEBUG:teuthology.orchestra.run.smithi092:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-15T17:42:49.367 DEBUG:teuthology.orchestra.run.smithi118:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-15T17:42:49.382 INFO:tasks.cephadm:Teardown complete 2024-04-15T17:42:49.383 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-04-15T17:42:49.392 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-04-15T17:42:49.392 DEBUG:teuthology.orchestra.run.smithi055:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-15T17:42:49.395 DEBUG:teuthology.orchestra.run.smithi092:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-15T17:42:49.410 DEBUG:teuthology.orchestra.run.smithi118:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-15T17:42:49.525 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-04-15T17:42:49.544 INFO:teuthology.task.clock:Checking final clock skew... 2024-04-15T17:42:49.544 DEBUG:teuthology.orchestra.run.smithi055:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T17:42:49.547 DEBUG:teuthology.orchestra.run.smithi092:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T17:42:49.550 DEBUG:teuthology.orchestra.run.smithi118:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T17:42:49.562 INFO:teuthology.orchestra.run.smithi092.stderr:bash: line 1: ntpq: command not found 2024-04-15T17:42:49.562 INFO:teuthology.orchestra.run.smithi055.stderr:bash: line 1: ntpq: command not found 2024-04-15T17:42:49.564 INFO:teuthology.orchestra.run.smithi118.stderr:bash: line 1: ntpq: command not found 2024-04-15T17:42:49.567 INFO:teuthology.orchestra.run.smithi092.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T17:42:49.567 INFO:teuthology.orchestra.run.smithi092.stdout:=============================================================================== 2024-04-15T17:42:49.567 INFO:teuthology.orchestra.run.smithi092.stdout:^* hv01.front.sepia.ceph.com 3 6 377 6 -165us[ -45us] +/- 54ms 2024-04-15T17:42:49.567 INFO:teuthology.orchestra.run.smithi092.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 7 -1648us[-1529us] +/- 67ms 2024-04-15T17:42:49.567 INFO:teuthology.orchestra.run.smithi092.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 7 +2050us[+2169us] +/- 67ms 2024-04-15T17:42:49.568 INFO:teuthology.orchestra.run.smithi092.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T17:42:49.569 INFO:teuthology.orchestra.run.smithi118.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T17:42:49.570 INFO:teuthology.orchestra.run.smithi118.stdout:=============================================================================== 2024-04-15T17:42:49.570 INFO:teuthology.orchestra.run.smithi118.stdout:^* hv01.front.sepia.ceph.com 3 6 377 6 -64us[ -63us] +/- 54ms 2024-04-15T17:42:49.570 INFO:teuthology.orchestra.run.smithi118.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 6 -1587us[-1586us] +/- 67ms 2024-04-15T17:42:49.570 INFO:teuthology.orchestra.run.smithi118.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 6 +2122us[+2122us] +/- 68ms 2024-04-15T17:42:49.570 INFO:teuthology.orchestra.run.smithi118.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T17:42:49.571 INFO:teuthology.orchestra.run.smithi055.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T17:42:49.571 INFO:teuthology.orchestra.run.smithi055.stdout:=============================================================================== 2024-04-15T17:42:49.571 INFO:teuthology.orchestra.run.smithi055.stdout:^* hv01.front.sepia.ceph.com 3 6 377 8 -39us[ -45us] +/- 54ms 2024-04-15T17:42:49.571 INFO:teuthology.orchestra.run.smithi055.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 8 -1543us[-1549us] +/- 67ms 2024-04-15T17:42:49.571 INFO:teuthology.orchestra.run.smithi055.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 7 +2162us[+2162us] +/- 67ms 2024-04-15T17:42:49.571 INFO:teuthology.orchestra.run.smithi055.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T17:42:49.572 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-04-15T17:42:49.581 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-04-15T17:42:49.581 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-04-15T17:42:49.610 DEBUG:teuthology.orchestra.run.smithi055:> 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-04-15T17:42:49.693 DEBUG:teuthology.orchestra.run.smithi092:> 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-04-15T17:42:49.770 DEBUG:teuthology.orchestra.run.smithi118:> 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-04-15T17:42:49.840 DEBUG:teuthology.orchestra.run.smithi055:> 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 scontext=system_u:system_r:logrotate_t:s0 2024-04-15T17:42:49.875 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T17:42:49.876 DEBUG:teuthology.orchestra.run.smithi092:> 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 scontext=system_u:system_r:logrotate_t:s0 2024-04-15T17:42:49.906 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T17:42:49.907 DEBUG:teuthology.orchestra.run.smithi118:> 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 scontext=system_u:system_r:logrotate_t:s0 2024-04-15T17:42:49.937 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T17:42:49.938 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-04-15T17:42:49.947 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-04-15T17:42:49.994 INFO:teuthology.task.internal:Duration was 933.506567 seconds 2024-04-15T17:42:49.995 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-04-15T17:42:50.053 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-04-15T17:42:50.053 DEBUG:teuthology.orchestra.run.smithi055:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-15T17:42:50.056 DEBUG:teuthology.orchestra.run.smithi092:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-15T17:42:50.058 DEBUG:teuthology.orchestra.run.smithi118:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-15T17:42:50.103 INFO:teuthology.orchestra.run.smithi092.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T17:42:50.107 INFO:teuthology.orchestra.run.smithi118.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T17:42:50.107 INFO:teuthology.orchestra.run.smithi055.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T17:42:50.425 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-04-15T17:42:50.425 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi055.front.sepia.ceph.com 2024-04-15T17:42:50.425 DEBUG:teuthology.orchestra.run.smithi055:> 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-04-15T17:42:50.447 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi092.front.sepia.ceph.com 2024-04-15T17:42:50.448 DEBUG:teuthology.orchestra.run.smithi092:> 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-04-15T17:42:50.473 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi118.front.sepia.ceph.com 2024-04-15T17:42:50.474 DEBUG:teuthology.orchestra.run.smithi118:> 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-04-15T17:42:50.503 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-04-15T17:42:50.504 DEBUG:teuthology.orchestra.run.smithi055:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-15T17:42:50.506 DEBUG:teuthology.orchestra.run.smithi092:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-15T17:42:50.518 DEBUG:teuthology.orchestra.run.smithi118:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-15T17:42:50.574 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-04-15T17:42:50.574 DEBUG:teuthology.orchestra.run.smithi055:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-15T17:42:50.577 DEBUG:teuthology.orchestra.run.smithi092:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-15T17:42:50.587 DEBUG:teuthology.orchestra.run.smithi118:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-15T17:42:50.765 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-04-15T17:42:50.775 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-04-15T17:42:50.775 DEBUG:teuthology.orchestra.run.smithi055:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-15T17:42:50.803 DEBUG:teuthology.orchestra.run.smithi092:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-15T17:42:50.832 DEBUG:teuthology.orchestra.run.smithi118:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-15T17:42:50.861 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-04-15T17:42:50.871 DEBUG:teuthology.orchestra.run.smithi055:> 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-04-15T17:42:50.873 DEBUG:teuthology.orchestra.run.smithi092:> 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-04-15T17:42:50.876 DEBUG:teuthology.orchestra.run.smithi118:> 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-04-15T17:42:50.897 INFO:teuthology.orchestra.run.smithi055.stdout:kernel.core_pattern = core 2024-04-15T17:42:50.900 INFO:teuthology.orchestra.run.smithi092.stdout:kernel.core_pattern = core 2024-04-15T17:42:50.927 INFO:teuthology.orchestra.run.smithi118.stdout:kernel.core_pattern = core 2024-04-15T17:42:50.951 DEBUG:teuthology.orchestra.run.smithi055:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-15T17:42:50.976 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T17:42:50.977 DEBUG:teuthology.orchestra.run.smithi092:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-15T17:42:50.992 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T17:42:50.992 DEBUG:teuthology.orchestra.run.smithi118:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-15T17:42:51.006 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T17:42:51.007 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-04-15T17:42:51.016 INFO:teuthology.task.internal:Transferring archived files... 2024-04-15T17:42:51.017 DEBUG:teuthology.misc:Transferring archived files from smithi055:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-14_20:00:15-rados-main-distro-default-smithi/7656064/remote/smithi055 2024-04-15T17:42:51.017 DEBUG:teuthology.orchestra.run.smithi055:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-15T17:42:51.057 DEBUG:teuthology.misc:Transferring archived files from smithi092:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-14_20:00:15-rados-main-distro-default-smithi/7656064/remote/smithi092 2024-04-15T17:42:51.058 DEBUG:teuthology.orchestra.run.smithi092:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-15T17:42:51.096 DEBUG:teuthology.misc:Transferring archived files from smithi118:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-14_20:00:15-rados-main-distro-default-smithi/7656064/remote/smithi118 2024-04-15T17:42:51.096 DEBUG:teuthology.orchestra.run.smithi118:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-15T17:42:51.134 INFO:teuthology.task.internal:Removing archive directory... 2024-04-15T17:42:51.135 DEBUG:teuthology.orchestra.run.smithi055:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-15T17:42:51.137 DEBUG:teuthology.orchestra.run.smithi092:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-15T17:42:51.139 DEBUG:teuthology.orchestra.run.smithi118:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-15T17:42:51.184 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-04-15T17:42:51.195 INFO:teuthology.task.internal:Not uploading archives. 2024-04-15T17:42:51.195 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-04-15T17:42:51.221 INFO:teuthology.task.internal:Tidying up after the test... 2024-04-15T17:42:51.221 DEBUG:teuthology.orchestra.run.smithi055:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-15T17:42:51.224 DEBUG:teuthology.orchestra.run.smithi092:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-15T17:42:51.227 DEBUG:teuthology.orchestra.run.smithi118:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-15T17:42:51.236 INFO:teuthology.orchestra.run.smithi055.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 15 17:42 /home/ubuntu/cephtest 2024-04-15T17:42:51.239 INFO:teuthology.orchestra.run.smithi092.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 15 17:42 /home/ubuntu/cephtest 2024-04-15T17:42:51.242 INFO:teuthology.orchestra.run.smithi118.stdout: 265305 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 15 17:42 /home/ubuntu/cephtest 2024-04-15T17:42:51.243 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-04-15T17:42:51.253 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-04-15T17:42:51.320 INFO:teuthology.nuke:Checking targets against current locks 2024-04-15T17:42:51.349 DEBUG:teuthology.nuke:shortname: smithi055 2024-04-15T17:42:51.349 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T17:42:51.370 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi055.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-14_20:00:15-rados-main-distro-default-smithi/7656064', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 17:17:49.280196', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJpus+eqwIT6kM/lTe6+WWAQLDqVA2GHcdslUJXTc5unlsxlH/HiALUjIKMepaCW6eiD4q9VnUofkuPatwGs+6Q='} 2024-04-15T17:42:51.376 DEBUG:teuthology.nuke:shortname: smithi092 2024-04-15T17:42:51.376 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T17:42:51.397 DEBUG:teuthology.nuke:shortname: smithi118 2024-04-15T17:42:51.397 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T17:42:51.400 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi092.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-14_20:00:15-rados-main-distro-default-smithi/7656064', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 17:17:49.276976', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHlxR7DOyp7tJs3Gq6pcSmGPqmqP91yb7ZYwxte9wfkwC5mFnIINUObB3mdBn1nrQADKv49v4X+tD/io6hN8MUc='} 2024-04-15T17:42:51.413 INFO:teuthology.orchestra.console.smithi055:Power off 2024-04-15T17:42:51.414 DEBUG:teuthology.orchestra.console.smithi055:pexpect command: ipmitool -H smithi055.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-15T17:42:51.425 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi118.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-14_20:00:15-rados-main-distro-default-smithi/7656064', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 17:17:49.278719', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBM4zevCpfZptxIiicbZIYiHW5byQvG7imaYWsFUfvWrbxKzTGF3Dwf2EBDqE+bvFFWcj/RpYNCH1mR13WZlJVaY='} 2024-04-15T17:42:51.438 DEBUG:teuthology.orchestra.console.smithi055:power off output: Chassis Power Control: Down/Off 2024-04-15T17:42:51.438 DEBUG:teuthology.orchestra.console.smithi055:pexpect command: ipmitool -H smithi055.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T17:42:51.456 INFO:teuthology.orchestra.console.smithi092:Power off 2024-04-15T17:42:51.456 DEBUG:teuthology.orchestra.console.smithi092:pexpect command: ipmitool -H smithi092.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-15T17:42:51.467 DEBUG:teuthology.orchestra.console.smithi055:check power output: Chassis Power is on 2024-04-15T17:42:51.480 DEBUG:teuthology.orchestra.console.smithi092:power off output: Chassis Power Control: Down/Off 2024-04-15T17:42:51.480 DEBUG:teuthology.orchestra.console.smithi092:pexpect command: ipmitool -H smithi092.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T17:42:51.494 INFO:teuthology.orchestra.console.smithi118:Power off 2024-04-15T17:42:51.495 DEBUG:teuthology.orchestra.console.smithi118:pexpect command: ipmitool -H smithi118.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-15T17:42:51.503 DEBUG:teuthology.orchestra.console.smithi092:check power output: Chassis Power is on 2024-04-15T17:42:51.517 DEBUG:teuthology.orchestra.console.smithi118:power off output: Chassis Power Control: Down/Off 2024-04-15T17:42:51.517 DEBUG:teuthology.orchestra.console.smithi118:pexpect command: ipmitool -H smithi118.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T17:42:51.541 DEBUG:teuthology.orchestra.console.smithi118:check power output: Chassis Power is on 2024-04-15T17:42:55.469 DEBUG:teuthology.orchestra.console.smithi055:pexpect command: ipmitool -H smithi055.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T17:42:55.504 DEBUG:teuthology.orchestra.console.smithi092:pexpect command: ipmitool -H smithi092.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T17:42:55.543 DEBUG:teuthology.orchestra.console.smithi118:pexpect command: ipmitool -H smithi118.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T17:42:55.579 DEBUG:teuthology.orchestra.console.smithi055:check power output: Chassis Power is on 2024-04-15T17:42:55.615 DEBUG:teuthology.orchestra.console.smithi092:check power output: Chassis Power is on 2024-04-15T17:42:55.653 DEBUG:teuthology.orchestra.console.smithi118:check power output: Chassis Power is on 2024-04-15T17:42:59.582 DEBUG:teuthology.orchestra.console.smithi055:pexpect command: ipmitool -H smithi055.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T17:42:59.616 DEBUG:teuthology.orchestra.console.smithi092:pexpect command: ipmitool -H smithi092.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T17:42:59.653 DEBUG:teuthology.orchestra.console.smithi118:pexpect command: ipmitool -H smithi118.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T17:42:59.692 DEBUG:teuthology.orchestra.console.smithi055:check power output: Chassis Power is off 2024-04-15T17:42:59.728 DEBUG:teuthology.orchestra.console.smithi092:check power output: Chassis Power is on 2024-04-15T17:42:59.764 DEBUG:teuthology.orchestra.console.smithi118:check power output: Chassis Power is off 2024-04-15T17:42:59.794 INFO:teuthology.orchestra.console.smithi055:Power off completed 2024-04-15T17:42:59.865 INFO:teuthology.orchestra.console.smithi118:Power off completed 2024-04-15T17:43:03.730 DEBUG:teuthology.orchestra.console.smithi092:pexpect command: ipmitool -H smithi092.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T17:43:03.839 DEBUG:teuthology.orchestra.console.smithi092:check power output: Chassis Power is off 2024-04-15T17:43:03.940 INFO:teuthology.orchestra.console.smithi092:Power off completed 2024-04-15T17:43:04.044 INFO:teuthology.run:Summary data: description: rados/cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/classic task/test_host_drain} duration: 933.5065670013428 failure_reason: '"2024-04-15T17:40:12.715738+0000 mon.a (mon.0) 590 : cluster [WRN] Health check failed: Degraded data redundancy: 2/6 objects degraded (33.333%), 1 pg degraded (PG_DEGRADED)" in cluster log' flavor: default owner: scheduled_teuthology@teuthology success: false 2024-04-15T17:43:04.044 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-15T17:43:04.127 INFO:teuthology.run:FAIL