2024-05-17T23:13:38.305 INFO:root:teuthology version: 0.0.1.dev285+gbb9e32d 2024-05-17T23:13:38.305 DEBUG:teuthology.run:Teuthology command: teuthology --description orch/cephadm/workunits/{0-distro/centos_9.stream_runc agent/off mon_election/connectivity task/test_host_drain} --verbose --archive /home/teuthworker/archive/teuthology-2024-05-17_21:08:02-orch-squid-distro-default-smithi/7711921 --name teuthology-2024-05-17_21:08:02-orch-squid-distro-default-smithi --owner scheduled_teuthology@teuthology -- /home/teuthworker/archive/teuthology-2024-05-17_21:08:02-orch-squid-distro-default-smithi/7711921/orig.config.yaml 2024-05-17T23:13:38.335 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-05-17T23:13:38.414 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-05-17_21:08:02-orch-squid-distro-default-smithi/7711921 branch: squid description: orch/cephadm/workunits/{0-distro/centos_9.stream_runc agent/off mon_election/connectivity task/test_host_drain} email: ceph-qa@ceph.com first_in_suite: false job_id: '7711921' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-05-17_21:08:02-orch-squid-distro-default-smithi no_nested_subset: false nuke-on-error: true os_type: centos os_version: 9.stream overrides: admin_socket: branch: squid ceph: conf: global: mon election default strategy: 3 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: false mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) - MON_DOWN log-only-match: - CEPHADM_ sha1: 0c7e7c0d119197fe4dc956046e4e3cc87821f1f8 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 0c7e7c0d119197fe4dc956046e4e3cc87821f1f8 selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: squid sha1: 5e65bbc034a18315fbc4c0d4136f3c11b643c2a3 owner: scheduled_teuthology@teuthology priority: 100 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: 2462 sha1: 0c7e7c0d119197fe4dc956046e4e3cc87821f1f8 sleep_before_teardown: 0 subset: 8/64 suite: orch suite_branch: squid suite_path: /home/teuthworker/src/git.ceph.com_ceph_5e65bbc034a18315fbc4c0d4136f3c11b643c2a3/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: 5e65bbc034a18315fbc4c0d4136f3c11b643c2a3 targets: smithi027.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOX9zxmU9qSIxlc6iQyH9cFTLaRLKOWyugWfsRCzzH4PHDZXAYUJaXXbt62LFFOsvdABWiBsBpv+kOm66xYtl1k= smithi110.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDmhABDyjc2OV9M+B8J8pBwc03JTl5aniA6zseNqNftyvnYRRZa2FX6PzBQzyn9gNZJDruwptutXJaJY3xQGfuo= smithi204.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBL5lUvOqFxzrqYvcy5J+h1DocZzZI7qSmYWcA4ostKoxj6tKkkyP/mfFiUta6eboZhZehaTRTacUsqmcdnn32VQ= tasks: - pexec: all: - sudo dnf install runc -y - sudo sed -i 's/^#runtime = "crun"/runtime = "runc"/g' /usr/share/containers/containers.conf - sudo sed -i 's/runtime = "crun"/#runtime = "crun"/g' /usr/share/containers/containers.conf - install: null - cephadm: null - cephadm.shell: host.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: bb9e32da229c89506a41d514c5982485274ba989 timestamp: 2024-05-17_21:08:02 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2698841 2024-05-17T23:13:38.414 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_5e65bbc034a18315fbc4c0d4136f3c11b643c2a3/qa; will attempt to use it 2024-05-17T23:13:38.415 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_5e65bbc034a18315fbc4c0d4136f3c11b643c2a3/qa/tasks 2024-05-17T23:13:38.415 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-05-17T23:13:38.417 INFO:teuthology.task.internal:Checking packages... 2024-05-17T23:13:38.445 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash '0c7e7c0d119197fe4dc956046e4e3cc87821f1f8' 2024-05-17T23:13:38.445 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-05-17T23:13:38.445 INFO:teuthology.packaging:ref: None 2024-05-17T23:13:38.445 INFO:teuthology.packaging:tag: None 2024-05-17T23:13:38.445 INFO:teuthology.packaging:branch: squid 2024-05-17T23:13:38.445 INFO:teuthology.packaging:sha1: 0c7e7c0d119197fe4dc956046e4e3cc87821f1f8 2024-05-17T23:13:38.445 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=squid 2024-05-17T23:13:38.616 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-2689.g5e65bbc0 2024-05-17T23:13:38.618 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-05-17T23:13:38.625 INFO:teuthology.task.internal:no buildpackages task found 2024-05-17T23:13:38.625 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-05-17T23:13:38.659 INFO:teuthology.task.internal:Saving configuration 2024-05-17T23:13:38.672 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-05-17T23:13:38.726 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-05-17T23:13:38.751 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi027.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-05-17_21:08:02-orch-squid-distro-default-smithi/7711921', '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-05-17 23:07:01.468402', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOX9zxmU9qSIxlc6iQyH9cFTLaRLKOWyugWfsRCzzH4PHDZXAYUJaXXbt62LFFOsvdABWiBsBpv+kOm66xYtl1k='} 2024-05-17T23:13:38.775 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi110.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-05-17_21:08:02-orch-squid-distro-default-smithi/7711921', '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-05-17 23:07:01.470376', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDmhABDyjc2OV9M+B8J8pBwc03JTl5aniA6zseNqNftyvnYRRZa2FX6PzBQzyn9gNZJDruwptutXJaJY3xQGfuo='} 2024-05-17T23:13:38.800 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi204.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-05-17_21:08:02-orch-squid-distro-default-smithi/7711921', '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-05-17 23:07:01.471881', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBL5lUvOqFxzrqYvcy5J+h1DocZzZI7qSmYWcA4ostKoxj6tKkkyP/mfFiUta6eboZhZehaTRTacUsqmcdnn32VQ='} 2024-05-17T23:13:38.800 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-05-17T23:13:38.807 INFO:teuthology.task.internal:roles: ubuntu@smithi027.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-05-17T23:13:38.807 INFO:teuthology.task.internal:roles: ubuntu@smithi110.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-05-17T23:13:38.807 INFO:teuthology.task.internal:roles: ubuntu@smithi204.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-05-17T23:13:38.807 INFO:teuthology.run_tasks:Running task console_log... 2024-05-17T23:13:38.907 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f65a96e3ac0>, signals=[15]) 2024-05-17T23:13:38.907 INFO:teuthology.run_tasks:Running task internal.connect... 2024-05-17T23:13:38.913 INFO:teuthology.task.internal:Opening connections... 2024-05-17T23:13:38.913 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi027.front.sepia.ceph.com 2024-05-17T23:13:38.916 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-17T23:13:38.991 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi110.front.sepia.ceph.com 2024-05-17T23:13:38.991 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi110.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-17T23:13:39.062 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi204.front.sepia.ceph.com 2024-05-17T23:13:39.063 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi204.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-17T23:13:39.138 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-05-17T23:13:39.145 DEBUG:teuthology.orchestra.run.smithi027:> uname -m 2024-05-17T23:13:39.163 INFO:teuthology.orchestra.run.smithi027.stdout:x86_64 2024-05-17T23:13:39.164 DEBUG:teuthology.orchestra.run.smithi027:> cat /etc/os-release 2024-05-17T23:13:39.222 INFO:teuthology.orchestra.run.smithi027.stdout:NAME="CentOS Stream" 2024-05-17T23:13:39.222 INFO:teuthology.orchestra.run.smithi027.stdout:VERSION="9" 2024-05-17T23:13:39.222 INFO:teuthology.orchestra.run.smithi027.stdout:ID="centos" 2024-05-17T23:13:39.222 INFO:teuthology.orchestra.run.smithi027.stdout:ID_LIKE="rhel fedora" 2024-05-17T23:13:39.222 INFO:teuthology.orchestra.run.smithi027.stdout:VERSION_ID="9" 2024-05-17T23:13:39.223 INFO:teuthology.orchestra.run.smithi027.stdout:PLATFORM_ID="platform:el9" 2024-05-17T23:13:39.223 INFO:teuthology.orchestra.run.smithi027.stdout:PRETTY_NAME="CentOS Stream 9" 2024-05-17T23:13:39.223 INFO:teuthology.orchestra.run.smithi027.stdout:ANSI_COLOR="0;31" 2024-05-17T23:13:39.223 INFO:teuthology.orchestra.run.smithi027.stdout:LOGO="fedora-logo-icon" 2024-05-17T23:13:39.223 INFO:teuthology.orchestra.run.smithi027.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-05-17T23:13:39.223 INFO:teuthology.orchestra.run.smithi027.stdout:HOME_URL="https://centos.org/" 2024-05-17T23:13:39.223 INFO:teuthology.orchestra.run.smithi027.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-05-17T23:13:39.223 INFO:teuthology.orchestra.run.smithi027.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-05-17T23:13:39.223 INFO:teuthology.orchestra.run.smithi027.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-05-17T23:13:39.224 INFO:teuthology.lock.ops:Updating smithi027.front.sepia.ceph.com on lock server 2024-05-17T23:13:39.241 DEBUG:teuthology.orchestra.run.smithi110:> uname -m 2024-05-17T23:13:39.259 INFO:teuthology.orchestra.run.smithi110.stdout:x86_64 2024-05-17T23:13:39.259 DEBUG:teuthology.orchestra.run.smithi110:> cat /etc/os-release 2024-05-17T23:13:39.317 INFO:teuthology.orchestra.run.smithi110.stdout:NAME="CentOS Stream" 2024-05-17T23:13:39.317 INFO:teuthology.orchestra.run.smithi110.stdout:VERSION="9" 2024-05-17T23:13:39.317 INFO:teuthology.orchestra.run.smithi110.stdout:ID="centos" 2024-05-17T23:13:39.317 INFO:teuthology.orchestra.run.smithi110.stdout:ID_LIKE="rhel fedora" 2024-05-17T23:13:39.317 INFO:teuthology.orchestra.run.smithi110.stdout:VERSION_ID="9" 2024-05-17T23:13:39.317 INFO:teuthology.orchestra.run.smithi110.stdout:PLATFORM_ID="platform:el9" 2024-05-17T23:13:39.317 INFO:teuthology.orchestra.run.smithi110.stdout:PRETTY_NAME="CentOS Stream 9" 2024-05-17T23:13:39.318 INFO:teuthology.orchestra.run.smithi110.stdout:ANSI_COLOR="0;31" 2024-05-17T23:13:39.318 INFO:teuthology.orchestra.run.smithi110.stdout:LOGO="fedora-logo-icon" 2024-05-17T23:13:39.318 INFO:teuthology.orchestra.run.smithi110.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-05-17T23:13:39.318 INFO:teuthology.orchestra.run.smithi110.stdout:HOME_URL="https://centos.org/" 2024-05-17T23:13:39.318 INFO:teuthology.orchestra.run.smithi110.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-05-17T23:13:39.318 INFO:teuthology.orchestra.run.smithi110.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-05-17T23:13:39.318 INFO:teuthology.orchestra.run.smithi110.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-05-17T23:13:39.318 INFO:teuthology.lock.ops:Updating smithi110.front.sepia.ceph.com on lock server 2024-05-17T23:13:39.341 DEBUG:teuthology.orchestra.run.smithi204:> uname -m 2024-05-17T23:13:39.359 INFO:teuthology.orchestra.run.smithi204.stdout:x86_64 2024-05-17T23:13:39.359 DEBUG:teuthology.orchestra.run.smithi204:> cat /etc/os-release 2024-05-17T23:13:39.417 INFO:teuthology.orchestra.run.smithi204.stdout:NAME="CentOS Stream" 2024-05-17T23:13:39.417 INFO:teuthology.orchestra.run.smithi204.stdout:VERSION="9" 2024-05-17T23:13:39.417 INFO:teuthology.orchestra.run.smithi204.stdout:ID="centos" 2024-05-17T23:13:39.417 INFO:teuthology.orchestra.run.smithi204.stdout:ID_LIKE="rhel fedora" 2024-05-17T23:13:39.417 INFO:teuthology.orchestra.run.smithi204.stdout:VERSION_ID="9" 2024-05-17T23:13:39.417 INFO:teuthology.orchestra.run.smithi204.stdout:PLATFORM_ID="platform:el9" 2024-05-17T23:13:39.417 INFO:teuthology.orchestra.run.smithi204.stdout:PRETTY_NAME="CentOS Stream 9" 2024-05-17T23:13:39.417 INFO:teuthology.orchestra.run.smithi204.stdout:ANSI_COLOR="0;31" 2024-05-17T23:13:39.417 INFO:teuthology.orchestra.run.smithi204.stdout:LOGO="fedora-logo-icon" 2024-05-17T23:13:39.417 INFO:teuthology.orchestra.run.smithi204.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-05-17T23:13:39.418 INFO:teuthology.orchestra.run.smithi204.stdout:HOME_URL="https://centos.org/" 2024-05-17T23:13:39.418 INFO:teuthology.orchestra.run.smithi204.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-05-17T23:13:39.418 INFO:teuthology.orchestra.run.smithi204.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-05-17T23:13:39.418 INFO:teuthology.orchestra.run.smithi204.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-05-17T23:13:39.418 INFO:teuthology.lock.ops:Updating smithi204.front.sepia.ceph.com on lock server 2024-05-17T23:13:39.449 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-05-17T23:13:39.681 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-05-17T23:13:39.706 INFO:teuthology.task.internal:Checking for old test directory... 2024-05-17T23:13:39.706 DEBUG:teuthology.orchestra.run.smithi027:> test '!' -e /home/ubuntu/cephtest 2024-05-17T23:13:39.711 DEBUG:teuthology.orchestra.run.smithi110:> test '!' -e /home/ubuntu/cephtest 2024-05-17T23:13:39.716 DEBUG:teuthology.orchestra.run.smithi204:> test '!' -e /home/ubuntu/cephtest 2024-05-17T23:13:39.733 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-05-17T23:13:39.757 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-05-17T23:13:39.757 DEBUG:teuthology.orchestra.run.smithi027:> test -z $(ls -A /var/lib/ceph) 2024-05-17T23:13:39.772 DEBUG:teuthology.orchestra.run.smithi110:> test -z $(ls -A /var/lib/ceph) 2024-05-17T23:13:39.775 DEBUG:teuthology.orchestra.run.smithi204:> test -z $(ls -A /var/lib/ceph) 2024-05-17T23:13:39.965 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-05-17T23:13:40.062 INFO:teuthology.run_tasks:Running task kernel... 2024-05-17T23:13:40.075 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-05-17T23:13:40.075 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-05-17T23:13:40.076 DEBUG:teuthology.orchestra.run.smithi027:> test -f /run/.containerenv -o -f /.dockerenv 2024-05-17T23:13:40.076 DEBUG:teuthology.orchestra.run.smithi110:> test -f /run/.containerenv -o -f /.dockerenv 2024-05-17T23:13:40.077 DEBUG:teuthology.orchestra.run.smithi204:> test -f /run/.containerenv -o -f /.dockerenv 2024-05-17T23:13:40.093 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-17T23:13:40.094 DEBUG:teuthology.orchestra.run.smithi110:> uname -r 2024-05-17T23:13:40.095 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-17T23:13:40.095 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-17T23:13:40.095 DEBUG:teuthology.orchestra.run.smithi027:> uname -r 2024-05-17T23:13:40.096 DEBUG:teuthology.orchestra.run.smithi204:> uname -r 2024-05-17T23:13:40.151 INFO:teuthology.orchestra.run.smithi110.stdout:5.14.0-437.el9.x86_64 2024-05-17T23:13:40.152 INFO:teuthology.task.kernel:Running kernel on smithi110: 5.14.0-437.el9.x86_64 2024-05-17T23:13:40.152 DEBUG:teuthology.orchestra.run.smithi110:> sudo yum install -y kernel 2024-05-17T23:13:40.153 INFO:teuthology.orchestra.run.smithi204.stdout:5.14.0-437.el9.x86_64 2024-05-17T23:13:40.153 INFO:teuthology.task.kernel:Running kernel on smithi204: 5.14.0-437.el9.x86_64 2024-05-17T23:13:40.153 DEBUG:teuthology.orchestra.run.smithi204:> sudo yum install -y kernel 2024-05-17T23:13:40.154 INFO:teuthology.orchestra.run.smithi027.stdout:5.14.0-437.el9.x86_64 2024-05-17T23:13:40.155 INFO:teuthology.task.kernel:Running kernel on smithi027: 5.14.0-437.el9.x86_64 2024-05-17T23:13:40.155 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum install -y kernel 2024-05-17T23:13:42.346 INFO:teuthology.orchestra.run.smithi027.stdout:CentOS Stream 9 - BaseOS 14 MB/s | 8.1 MB 00:00 2024-05-17T23:13:43.444 INFO:teuthology.orchestra.run.smithi204.stdout:CentOS Stream 9 - BaseOS 5.0 MB/s | 8.1 MB 00:01 2024-05-17T23:13:43.524 INFO:teuthology.orchestra.run.smithi110.stdout:CentOS Stream 9 - BaseOS 4.5 MB/s | 8.1 MB 00:01 2024-05-17T23:13:44.314 INFO:teuthology.orchestra.run.smithi027.stdout:CentOS Stream 9 - AppStream 23 MB/s | 19 MB 00:00 2024-05-17T23:13:45.879 INFO:teuthology.orchestra.run.smithi204.stdout:CentOS Stream 9 - AppStream 14 MB/s | 19 MB 00:01 2024-05-17T23:13:47.583 INFO:teuthology.orchestra.run.smithi110.stdout:CentOS Stream 9 - AppStream 6.4 MB/s | 19 MB 00:02 2024-05-17T23:13:48.556 INFO:teuthology.orchestra.run.smithi027.stdout:CentOS Stream 9 - CRB 11 MB/s | 6.2 MB 00:00 2024-05-17T23:13:49.988 INFO:teuthology.orchestra.run.smithi204.stdout:CentOS Stream 9 - CRB 12 MB/s | 6.2 MB 00:00 2024-05-17T23:13:51.215 INFO:teuthology.orchestra.run.smithi027.stdout:CentOS Stream 9 - Extras packages 11 kB/s | 16 kB 00:01 2024-05-17T23:13:51.447 INFO:teuthology.orchestra.run.smithi204.stdout:CentOS Stream 9 - Extras packages 55 kB/s | 16 kB 00:00 2024-05-17T23:13:53.401 INFO:teuthology.orchestra.run.smithi110.stdout:CentOS Stream 9 - CRB 2.9 MB/s | 6.2 MB 00:02 2024-05-17T23:13:53.533 INFO:teuthology.orchestra.run.smithi027.stdout:Extra Packages for Enterprise Linux 9.8 MB/s | 21 MB 00:02 2024-05-17T23:13:55.693 INFO:teuthology.orchestra.run.smithi204.stdout:Extra Packages for Enterprise Linux 5.1 MB/s | 21 MB 00:04 2024-05-17T23:13:55.926 INFO:teuthology.orchestra.run.smithi110.stdout:CentOS Stream 9 - Extras packages 14 kB/s | 16 kB 00:01 2024-05-17T23:13:57.855 INFO:teuthology.orchestra.run.smithi110.stdout:Extra Packages for Enterprise Linux 12 MB/s | 21 MB 00:01 2024-05-17T23:13:58.884 INFO:teuthology.orchestra.run.smithi027.stdout:lab-extras 32 kB/s | 1.7 kB 00:00 2024-05-17T23:14:00.823 INFO:teuthology.orchestra.run.smithi204.stdout:lab-extras 32 kB/s | 1.7 kB 00:00 2024-05-17T23:14:00.915 INFO:teuthology.orchestra.run.smithi027.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-05-17T23:14:00.915 INFO:teuthology.orchestra.run.smithi027.stdout:Package kernel-5.14.0-437.el9.x86_64 is already installed. 2024-05-17T23:14:01.017 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-05-17T23:14:01.033 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-05-17T23:14:01.034 INFO:teuthology.orchestra.run.smithi027.stdout: Package Architecture Version Repository Size 2024-05-17T23:14:01.034 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-05-17T23:14:01.034 INFO:teuthology.orchestra.run.smithi027.stdout:Installing: 2024-05-17T23:14:01.034 INFO:teuthology.orchestra.run.smithi027.stdout: kernel x86_64 5.14.0-446.el9 baseos 550 k 2024-05-17T23:14:01.034 INFO:teuthology.orchestra.run.smithi027.stdout:Installing dependencies: 2024-05-17T23:14:01.034 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-core x86_64 5.14.0-446.el9 baseos 15 M 2024-05-17T23:14:01.034 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-modules x86_64 5.14.0-446.el9 baseos 34 M 2024-05-17T23:14:01.034 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-modules-core x86_64 5.14.0-446.el9 baseos 28 M 2024-05-17T23:14:01.034 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-05-17T23:14:01.034 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction Summary 2024-05-17T23:14:01.034 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-05-17T23:14:01.034 INFO:teuthology.orchestra.run.smithi027.stdout:Install 4 Packages 2024-05-17T23:14:01.034 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-05-17T23:14:01.035 INFO:teuthology.orchestra.run.smithi027.stdout:Total download size: 78 M 2024-05-17T23:14:01.035 INFO:teuthology.orchestra.run.smithi027.stdout:Installed size: 123 M 2024-05-17T23:14:01.035 INFO:teuthology.orchestra.run.smithi027.stdout:Downloading Packages: 2024-05-17T23:14:01.376 INFO:teuthology.orchestra.run.smithi027.stdout:(1/4): kernel-5.14.0-446.el9.x86_64.rpm 2.4 MB/s | 550 kB 00:00 2024-05-17T23:14:01.994 INFO:teuthology.orchestra.run.smithi027.stdout:(2/4): kernel-core-5.14.0-446.el9.x86_64.rpm 18 MB/s | 15 MB 00:00 2024-05-17T23:14:02.585 INFO:teuthology.orchestra.run.smithi027.stdout:(3/4): kernel-modules-core-5.14.0-446.el9.x86_6 23 MB/s | 28 MB 00:01 2024-05-17T23:14:02.771 INFO:teuthology.orchestra.run.smithi204.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-05-17T23:14:02.772 INFO:teuthology.orchestra.run.smithi204.stdout:Package kernel-5.14.0-437.el9.x86_64 is already installed. 2024-05-17T23:14:02.867 INFO:teuthology.orchestra.run.smithi204.stdout:Dependencies resolved. 2024-05-17T23:14:02.874 INFO:teuthology.orchestra.run.smithi204.stdout:================================================================================ 2024-05-17T23:14:02.874 INFO:teuthology.orchestra.run.smithi204.stdout: Package Architecture Version Repository Size 2024-05-17T23:14:02.874 INFO:teuthology.orchestra.run.smithi204.stdout:================================================================================ 2024-05-17T23:14:02.874 INFO:teuthology.orchestra.run.smithi204.stdout:Installing: 2024-05-17T23:14:02.874 INFO:teuthology.orchestra.run.smithi204.stdout: kernel x86_64 5.14.0-446.el9 baseos 550 k 2024-05-17T23:14:02.874 INFO:teuthology.orchestra.run.smithi204.stdout:Installing dependencies: 2024-05-17T23:14:02.874 INFO:teuthology.orchestra.run.smithi204.stdout: kernel-core x86_64 5.14.0-446.el9 baseos 15 M 2024-05-17T23:14:02.874 INFO:teuthology.orchestra.run.smithi204.stdout: kernel-modules x86_64 5.14.0-446.el9 baseos 34 M 2024-05-17T23:14:02.874 INFO:teuthology.orchestra.run.smithi204.stdout: kernel-modules-core x86_64 5.14.0-446.el9 baseos 28 M 2024-05-17T23:14:02.875 INFO:teuthology.orchestra.run.smithi204.stdout: 2024-05-17T23:14:02.875 INFO:teuthology.orchestra.run.smithi204.stdout:Transaction Summary 2024-05-17T23:14:02.875 INFO:teuthology.orchestra.run.smithi204.stdout:================================================================================ 2024-05-17T23:14:02.875 INFO:teuthology.orchestra.run.smithi204.stdout:Install 4 Packages 2024-05-17T23:14:02.875 INFO:teuthology.orchestra.run.smithi204.stdout: 2024-05-17T23:14:02.875 INFO:teuthology.orchestra.run.smithi204.stdout:Total download size: 78 M 2024-05-17T23:14:02.875 INFO:teuthology.orchestra.run.smithi204.stdout:Installed size: 123 M 2024-05-17T23:14:02.876 INFO:teuthology.orchestra.run.smithi204.stdout:Downloading Packages: 2024-05-17T23:14:02.952 INFO:teuthology.orchestra.run.smithi110.stdout:lab-extras 13 kB/s | 1.7 kB 00:00 2024-05-17T23:14:03.158 INFO:teuthology.orchestra.run.smithi110.stdout:Last metadata expiration check: 0:00:01 ago on Fri 17 May 2024 11:14:02 PM UTC. 2024-05-17T23:14:03.175 INFO:teuthology.orchestra.run.smithi204.stdout:(1/4): kernel-5.14.0-446.el9.x86_64.rpm 2.8 MB/s | 550 kB 00:00 2024-05-17T23:14:03.302 INFO:teuthology.orchestra.run.smithi027.stdout:(4/4): kernel-modules-5.14.0-446.el9.x86_64.rpm 16 MB/s | 34 MB 00:02 2024-05-17T23:14:03.303 INFO:teuthology.orchestra.run.smithi027.stdout:-------------------------------------------------------------------------------- 2024-05-17T23:14:03.303 INFO:teuthology.orchestra.run.smithi027.stdout:Total 34 MB/s | 78 MB 00:02 2024-05-17T23:14:03.842 INFO:teuthology.orchestra.run.smithi204.stdout:(2/4): kernel-core-5.14.0-446.el9.x86_64.rpm 18 MB/s | 15 MB 00:00 2024-05-17T23:14:04.013 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction check 2024-05-17T23:14:04.450 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction check succeeded. 2024-05-17T23:14:04.451 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction test 2024-05-17T23:14:04.945 INFO:teuthology.orchestra.run.smithi110.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-05-17T23:14:04.945 INFO:teuthology.orchestra.run.smithi110.stdout:Package kernel-5.14.0-437.el9.x86_64 is already installed. 2024-05-17T23:14:05.000 INFO:teuthology.orchestra.run.smithi204.stdout:(3/4): kernel-modules-5.14.0-446.el9.x86_64.rpm 17 MB/s | 34 MB 00:02 2024-05-17T23:14:05.041 INFO:teuthology.orchestra.run.smithi110.stdout:Dependencies resolved. 2024-05-17T23:14:05.054 INFO:teuthology.orchestra.run.smithi110.stdout:================================================================================ 2024-05-17T23:14:05.054 INFO:teuthology.orchestra.run.smithi110.stdout: Package Architecture Version Repository Size 2024-05-17T23:14:05.054 INFO:teuthology.orchestra.run.smithi110.stdout:================================================================================ 2024-05-17T23:14:05.054 INFO:teuthology.orchestra.run.smithi110.stdout:Installing: 2024-05-17T23:14:05.054 INFO:teuthology.orchestra.run.smithi110.stdout: kernel x86_64 5.14.0-446.el9 baseos 550 k 2024-05-17T23:14:05.054 INFO:teuthology.orchestra.run.smithi110.stdout:Installing dependencies: 2024-05-17T23:14:05.054 INFO:teuthology.orchestra.run.smithi110.stdout: kernel-core x86_64 5.14.0-446.el9 baseos 15 M 2024-05-17T23:14:05.054 INFO:teuthology.orchestra.run.smithi110.stdout: kernel-modules x86_64 5.14.0-446.el9 baseos 34 M 2024-05-17T23:14:05.054 INFO:teuthology.orchestra.run.smithi110.stdout: kernel-modules-core x86_64 5.14.0-446.el9 baseos 28 M 2024-05-17T23:14:05.054 INFO:teuthology.orchestra.run.smithi110.stdout: 2024-05-17T23:14:05.054 INFO:teuthology.orchestra.run.smithi110.stdout:Transaction Summary 2024-05-17T23:14:05.055 INFO:teuthology.orchestra.run.smithi110.stdout:================================================================================ 2024-05-17T23:14:05.055 INFO:teuthology.orchestra.run.smithi110.stdout:Install 4 Packages 2024-05-17T23:14:05.055 INFO:teuthology.orchestra.run.smithi110.stdout: 2024-05-17T23:14:05.055 INFO:teuthology.orchestra.run.smithi110.stdout:Total download size: 78 M 2024-05-17T23:14:05.055 INFO:teuthology.orchestra.run.smithi110.stdout:Installed size: 123 M 2024-05-17T23:14:05.055 INFO:teuthology.orchestra.run.smithi110.stdout:Downloading Packages: 2024-05-17T23:14:05.397 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction test succeeded. 2024-05-17T23:14:05.397 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction 2024-05-17T23:14:05.417 INFO:teuthology.orchestra.run.smithi204.stdout:(4/4): kernel-modules-core-5.14.0-446.el9.x86_6 12 MB/s | 28 MB 00:02 2024-05-17T23:14:05.418 INFO:teuthology.orchestra.run.smithi204.stdout:-------------------------------------------------------------------------------- 2024-05-17T23:14:05.418 INFO:teuthology.orchestra.run.smithi204.stdout:Total 31 MB/s | 78 MB 00:02 2024-05-17T23:14:05.729 INFO:teuthology.orchestra.run.smithi110.stdout:(1/4): kernel-5.14.0-446.el9.x86_64.rpm 1.6 MB/s | 550 kB 00:00 2024-05-17T23:14:06.099 INFO:teuthology.orchestra.run.smithi204.stdout:Running transaction check 2024-05-17T23:14:06.432 INFO:teuthology.orchestra.run.smithi204.stdout:Transaction check succeeded. 2024-05-17T23:14:06.432 INFO:teuthology.orchestra.run.smithi204.stdout:Running transaction test 2024-05-17T23:14:06.879 INFO:teuthology.orchestra.run.smithi110.stdout:(2/4): kernel-core-5.14.0-446.el9.x86_64.rpm 10 MB/s | 15 MB 00:01 2024-05-17T23:14:07.358 INFO:teuthology.orchestra.run.smithi204.stdout:Transaction test succeeded. 2024-05-17T23:14:07.359 INFO:teuthology.orchestra.run.smithi204.stdout:Running transaction 2024-05-17T23:14:07.755 INFO:teuthology.orchestra.run.smithi110.stdout:(3/4): kernel-modules-core-5.14.0-446.el9.x86_6 14 MB/s | 28 MB 00:02 2024-05-17T23:14:07.928 INFO:teuthology.orchestra.run.smithi027.stdout: Preparing : 1/1 2024-05-17T23:14:08.063 INFO:teuthology.orchestra.run.smithi110.stdout:(4/4): kernel-modules-5.14.0-446.el9.x86_64.rpm 13 MB/s | 34 MB 00:02 2024-05-17T23:14:08.063 INFO:teuthology.orchestra.run.smithi110.stdout:-------------------------------------------------------------------------------- 2024-05-17T23:14:08.063 INFO:teuthology.orchestra.run.smithi110.stdout:Total 26 MB/s | 78 MB 00:03 2024-05-17T23:14:08.575 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : kernel-modules-core-5.14.0-446.el9.x86_64 1/4 2024-05-17T23:14:08.653 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : kernel-core-5.14.0-446.el9.x86_64 2/4 2024-05-17T23:14:08.744 INFO:teuthology.orchestra.run.smithi110.stdout:Running transaction check 2024-05-17T23:14:09.089 INFO:teuthology.orchestra.run.smithi110.stdout:Transaction check succeeded. 2024-05-17T23:14:09.089 INFO:teuthology.orchestra.run.smithi110.stdout:Running transaction test 2024-05-17T23:14:09.761 INFO:teuthology.orchestra.run.smithi204.stdout: Preparing : 1/1 2024-05-17T23:14:10.013 INFO:teuthology.orchestra.run.smithi110.stdout:Transaction test succeeded. 2024-05-17T23:14:10.013 INFO:teuthology.orchestra.run.smithi110.stdout:Running transaction 2024-05-17T23:14:10.420 INFO:teuthology.orchestra.run.smithi204.stdout: Installing : kernel-modules-core-5.14.0-446.el9.x86_64 1/4 2024-05-17T23:14:10.502 INFO:teuthology.orchestra.run.smithi204.stdout: Installing : kernel-core-5.14.0-446.el9.x86_64 2/4 2024-05-17T23:14:11.449 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: kernel-core-5.14.0-446.el9.x86_64 2/4 2024-05-17T23:14:11.582 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : kernel-modules-5.14.0-446.el9.x86_64 3/4 2024-05-17T23:14:12.385 INFO:teuthology.orchestra.run.smithi110.stdout: Preparing : 1/1 2024-05-17T23:14:13.043 INFO:teuthology.orchestra.run.smithi110.stdout: Installing : kernel-modules-core-5.14.0-446.el9.x86_64 1/4 2024-05-17T23:14:13.130 INFO:teuthology.orchestra.run.smithi110.stdout: Installing : kernel-core-5.14.0-446.el9.x86_64 2/4 2024-05-17T23:14:13.182 INFO:teuthology.orchestra.run.smithi204.stdout: Running scriptlet: kernel-core-5.14.0-446.el9.x86_64 2/4 2024-05-17T23:14:13.317 INFO:teuthology.orchestra.run.smithi204.stdout: Installing : kernel-modules-5.14.0-446.el9.x86_64 3/4 2024-05-17T23:14:15.793 INFO:teuthology.orchestra.run.smithi110.stdout: Running scriptlet: kernel-core-5.14.0-446.el9.x86_64 2/4 2024-05-17T23:14:15.927 INFO:teuthology.orchestra.run.smithi110.stdout: Installing : kernel-modules-5.14.0-446.el9.x86_64 3/4 2024-05-17T23:14:16.656 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: kernel-modules-5.14.0-446.el9.x86_64 3/4 2024-05-17T23:14:16.702 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : kernel-5.14.0-446.el9.x86_64 4/4 2024-05-17T23:14:18.035 INFO:teuthology.orchestra.run.smithi204.stdout: Running scriptlet: kernel-modules-5.14.0-446.el9.x86_64 3/4 2024-05-17T23:14:18.078 INFO:teuthology.orchestra.run.smithi204.stdout: Installing : kernel-5.14.0-446.el9.x86_64 4/4 2024-05-17T23:14:20.603 INFO:teuthology.orchestra.run.smithi110.stdout: Running scriptlet: kernel-modules-5.14.0-446.el9.x86_64 3/4 2024-05-17T23:14:20.722 INFO:teuthology.orchestra.run.smithi110.stdout: Installing : kernel-5.14.0-446.el9.x86_64 4/4 2024-05-17T23:14:21.798 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: kernel-modules-core-5.14.0-446.el9.x86_64 4/4 2024-05-17T23:14:22.840 INFO:teuthology.orchestra.run.smithi204.stdout: Running scriptlet: kernel-modules-core-5.14.0-446.el9.x86_64 4/4 2024-05-17T23:14:25.466 INFO:teuthology.orchestra.run.smithi110.stdout: Running scriptlet: kernel-modules-core-5.14.0-446.el9.x86_64 4/4 2024-05-17T23:14:52.270 INFO:teuthology.orchestra.run.smithi204.stdout: Running scriptlet: kernel-core-5.14.0-446.el9.x86_64 4/4 2024-05-17T23:14:52.309 INFO:teuthology.orchestra.run.smithi204.stdout: Running scriptlet: kernel-modules-5.14.0-446.el9.x86_64 4/4 2024-05-17T23:14:52.600 INFO:teuthology.orchestra.run.smithi204.stdout: Running scriptlet: kernel-5.14.0-446.el9.x86_64 4/4 2024-05-17T23:14:52.601 INFO:teuthology.orchestra.run.smithi204.stdout: Verifying : kernel-5.14.0-446.el9.x86_64 1/4 2024-05-17T23:14:52.601 INFO:teuthology.orchestra.run.smithi204.stdout: Verifying : kernel-core-5.14.0-446.el9.x86_64 2/4 2024-05-17T23:14:52.601 INFO:teuthology.orchestra.run.smithi204.stdout: Verifying : kernel-modules-5.14.0-446.el9.x86_64 3/4 2024-05-17T23:14:52.609 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: kernel-core-5.14.0-446.el9.x86_64 4/4 2024-05-17T23:14:52.649 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: kernel-modules-5.14.0-446.el9.x86_64 4/4 2024-05-17T23:14:53.027 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: kernel-5.14.0-446.el9.x86_64 4/4 2024-05-17T23:14:53.027 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : kernel-5.14.0-446.el9.x86_64 1/4 2024-05-17T23:14:53.027 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : kernel-core-5.14.0-446.el9.x86_64 2/4 2024-05-17T23:14:53.027 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : kernel-modules-5.14.0-446.el9.x86_64 3/4 2024-05-17T23:14:53.339 INFO:teuthology.orchestra.run.smithi204.stdout: Verifying : kernel-modules-core-5.14.0-446.el9.x86_64 4/4 2024-05-17T23:14:53.339 INFO:teuthology.orchestra.run.smithi204.stdout: 2024-05-17T23:14:53.339 INFO:teuthology.orchestra.run.smithi204.stdout:Installed: 2024-05-17T23:14:53.339 INFO:teuthology.orchestra.run.smithi204.stdout: kernel-5.14.0-446.el9.x86_64 2024-05-17T23:14:53.339 INFO:teuthology.orchestra.run.smithi204.stdout: kernel-core-5.14.0-446.el9.x86_64 2024-05-17T23:14:53.339 INFO:teuthology.orchestra.run.smithi204.stdout: kernel-modules-5.14.0-446.el9.x86_64 2024-05-17T23:14:53.339 INFO:teuthology.orchestra.run.smithi204.stdout: kernel-modules-core-5.14.0-446.el9.x86_64 2024-05-17T23:14:53.339 INFO:teuthology.orchestra.run.smithi204.stdout: 2024-05-17T23:14:53.340 INFO:teuthology.orchestra.run.smithi204.stdout:Complete! 2024-05-17T23:14:53.674 DEBUG:teuthology.orchestra.run.smithi204:> rpm -q kernel | sort -rV | head -n 1 2024-05-17T23:14:53.768 INFO:teuthology.orchestra.run.smithi204.stdout:kernel-5.14.0-446.el9.x86_64 2024-05-17T23:14:53.768 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-446.el9.x86_64 2024-05-17T23:14:53.768 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-437.el9.x86_64 Expected: 5.14.0-446.el9.x86_64 2024-05-17T23:14:53.768 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-05-17T23:14:53.769 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-05-17T23:14:53.769 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-05-17T23:14:53.769 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi204.front.sepia.ceph.com, path=None, version=distro) 2024-05-17T23:14:53.769 DEBUG:teuthology.orchestra.run.smithi204:> rpm -q kernel | sort -rV | head -n 1 2024-05-17T23:14:53.819 INFO:teuthology.orchestra.run.smithi204.stdout:kernel-5.14.0-446.el9.x86_64 2024-05-17T23:14:53.819 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-446.el9.x86_64 2024-05-17T23:14:53.820 DEBUG:teuthology.orchestra.run.smithi204:> sudo rpm -qi grub2-tools 2024-05-17T23:14:53.833 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : kernel-modules-core-5.14.0-446.el9.x86_64 4/4 2024-05-17T23:14:53.833 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-05-17T23:14:53.833 INFO:teuthology.orchestra.run.smithi027.stdout:Installed: 2024-05-17T23:14:53.833 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-5.14.0-446.el9.x86_64 2024-05-17T23:14:53.833 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-core-5.14.0-446.el9.x86_64 2024-05-17T23:14:53.833 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-modules-5.14.0-446.el9.x86_64 2024-05-17T23:14:53.833 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-modules-core-5.14.0-446.el9.x86_64 2024-05-17T23:14:53.833 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-05-17T23:14:53.833 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-05-17T23:14:53.859 INFO:teuthology.orchestra.run.smithi204.stdout:Name : grub2-tools 2024-05-17T23:14:53.859 INFO:teuthology.orchestra.run.smithi204.stdout:Epoch : 1 2024-05-17T23:14:53.860 INFO:teuthology.orchestra.run.smithi204.stdout:Version : 2.06 2024-05-17T23:14:53.860 INFO:teuthology.orchestra.run.smithi204.stdout:Release : 68.el9 2024-05-17T23:14:53.860 INFO:teuthology.orchestra.run.smithi204.stdout:Architecture: x86_64 2024-05-17T23:14:53.860 INFO:teuthology.orchestra.run.smithi204.stdout:Install Date: Fri 19 Apr 2024 09:32:39 PM UTC 2024-05-17T23:14:53.860 INFO:teuthology.orchestra.run.smithi204.stdout:Group : Unspecified 2024-05-17T23:14:53.860 INFO:teuthology.orchestra.run.smithi204.stdout:Size : 8264254 2024-05-17T23:14:53.860 INFO:teuthology.orchestra.run.smithi204.stdout:License : GPLv3+ 2024-05-17T23:14:53.860 INFO:teuthology.orchestra.run.smithi204.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-05-17T23:14:53.860 INFO:teuthology.orchestra.run.smithi204.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-05-17T23:14:53.860 INFO:teuthology.orchestra.run.smithi204.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-05-17T23:14:53.860 INFO:teuthology.orchestra.run.smithi204.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-05-17T23:14:53.860 INFO:teuthology.orchestra.run.smithi204.stdout:Packager : builder@centos.org 2024-05-17T23:14:53.860 INFO:teuthology.orchestra.run.smithi204.stdout:Vendor : CentOS 2024-05-17T23:14:53.861 INFO:teuthology.orchestra.run.smithi204.stdout:URL : http://www.gnu.org/software/grub/ 2024-05-17T23:14:53.861 INFO:teuthology.orchestra.run.smithi204.stdout:Summary : Support tools for GRUB. 2024-05-17T23:14:53.861 INFO:teuthology.orchestra.run.smithi204.stdout:Description : 2024-05-17T23:14:53.861 INFO:teuthology.orchestra.run.smithi204.stdout: 2024-05-17T23:14:53.861 INFO:teuthology.orchestra.run.smithi204.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-05-17T23:14:53.861 INFO:teuthology.orchestra.run.smithi204.stdout:customizable bootloader with modular architecture. It supports a rich 2024-05-17T23:14:53.861 INFO:teuthology.orchestra.run.smithi204.stdout:variety of kernel formats, file systems, computer architectures and 2024-05-17T23:14:53.861 INFO:teuthology.orchestra.run.smithi204.stdout:hardware devices. 2024-05-17T23:14:53.861 INFO:teuthology.orchestra.run.smithi204.stdout: 2024-05-17T23:14:53.861 INFO:teuthology.orchestra.run.smithi204.stdout:This subpackage provides tools for support of all platforms. 2024-05-17T23:14:53.862 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-05-17T23:14:53.862 INFO:teuthology.task.kernel:Updating grub on smithi204 to boot 5.14.0-446.el9.x86_64 2024-05-17T23:14:53.862 DEBUG:teuthology.orchestra.run.smithi204:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-05-17T23:14:54.197 DEBUG:teuthology.orchestra.run.smithi027:> rpm -q kernel | sort -rV | head -n 1 2024-05-17T23:14:54.281 INFO:teuthology.orchestra.run.smithi027.stdout:kernel-5.14.0-446.el9.x86_64 2024-05-17T23:14:54.282 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-446.el9.x86_64 2024-05-17T23:14:54.282 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-437.el9.x86_64 Expected: 5.14.0-446.el9.x86_64 2024-05-17T23:14:54.282 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-05-17T23:14:54.282 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-05-17T23:14:54.282 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-05-17T23:14:54.282 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi027.front.sepia.ceph.com, path=None, version=distro) 2024-05-17T23:14:54.282 DEBUG:teuthology.orchestra.run.smithi027:> rpm -q kernel | sort -rV | head -n 1 2024-05-17T23:14:54.333 INFO:teuthology.orchestra.run.smithi027.stdout:kernel-5.14.0-446.el9.x86_64 2024-05-17T23:14:54.334 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-446.el9.x86_64 2024-05-17T23:14:54.334 DEBUG:teuthology.orchestra.run.smithi027:> sudo rpm -qi grub2-tools 2024-05-17T23:14:54.365 INFO:teuthology.orchestra.run.smithi027.stdout:Name : grub2-tools 2024-05-17T23:14:54.365 INFO:teuthology.orchestra.run.smithi027.stdout:Epoch : 1 2024-05-17T23:14:54.365 INFO:teuthology.orchestra.run.smithi027.stdout:Version : 2.06 2024-05-17T23:14:54.365 INFO:teuthology.orchestra.run.smithi027.stdout:Release : 68.el9 2024-05-17T23:14:54.365 INFO:teuthology.orchestra.run.smithi027.stdout:Architecture: x86_64 2024-05-17T23:14:54.365 INFO:teuthology.orchestra.run.smithi027.stdout:Install Date: Fri 19 Apr 2024 09:32:39 PM UTC 2024-05-17T23:14:54.365 INFO:teuthology.orchestra.run.smithi027.stdout:Group : Unspecified 2024-05-17T23:14:54.365 INFO:teuthology.orchestra.run.smithi027.stdout:Size : 8264254 2024-05-17T23:14:54.365 INFO:teuthology.orchestra.run.smithi027.stdout:License : GPLv3+ 2024-05-17T23:14:54.366 INFO:teuthology.orchestra.run.smithi027.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-05-17T23:14:54.366 INFO:teuthology.orchestra.run.smithi027.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-05-17T23:14:54.366 INFO:teuthology.orchestra.run.smithi027.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-05-17T23:14:54.366 INFO:teuthology.orchestra.run.smithi027.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-05-17T23:14:54.366 INFO:teuthology.orchestra.run.smithi027.stdout:Packager : builder@centos.org 2024-05-17T23:14:54.366 INFO:teuthology.orchestra.run.smithi027.stdout:Vendor : CentOS 2024-05-17T23:14:54.366 INFO:teuthology.orchestra.run.smithi027.stdout:URL : http://www.gnu.org/software/grub/ 2024-05-17T23:14:54.366 INFO:teuthology.orchestra.run.smithi027.stdout:Summary : Support tools for GRUB. 2024-05-17T23:14:54.366 INFO:teuthology.orchestra.run.smithi027.stdout:Description : 2024-05-17T23:14:54.366 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-05-17T23:14:54.366 INFO:teuthology.orchestra.run.smithi027.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-05-17T23:14:54.366 INFO:teuthology.orchestra.run.smithi027.stdout:customizable bootloader with modular architecture. It supports a rich 2024-05-17T23:14:54.366 INFO:teuthology.orchestra.run.smithi027.stdout:variety of kernel formats, file systems, computer architectures and 2024-05-17T23:14:54.367 INFO:teuthology.orchestra.run.smithi027.stdout:hardware devices. 2024-05-17T23:14:54.367 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-05-17T23:14:54.367 INFO:teuthology.orchestra.run.smithi027.stdout:This subpackage provides tools for support of all platforms. 2024-05-17T23:14:54.368 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-05-17T23:14:54.368 INFO:teuthology.task.kernel:Updating grub on smithi027 to boot 5.14.0-446.el9.x86_64 2024-05-17T23:14:54.368 DEBUG:teuthology.orchestra.run.smithi027:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-05-17T23:14:54.504 INFO:teuthology.orchestra.run.smithi204.stderr:Generating grub configuration file ... 2024-05-17T23:14:54.811 INFO:teuthology.orchestra.run.smithi110.stdout: Running scriptlet: kernel-core-5.14.0-446.el9.x86_64 4/4 2024-05-17T23:14:54.850 INFO:teuthology.orchestra.run.smithi110.stdout: Running scriptlet: kernel-modules-5.14.0-446.el9.x86_64 4/4 2024-05-17T23:14:55.026 INFO:teuthology.orchestra.run.smithi027.stderr:Generating grub configuration file ... 2024-05-17T23:14:55.240 INFO:teuthology.orchestra.run.smithi110.stdout: Running scriptlet: kernel-5.14.0-446.el9.x86_64 4/4 2024-05-17T23:14:55.240 INFO:teuthology.orchestra.run.smithi110.stdout: Verifying : kernel-5.14.0-446.el9.x86_64 1/4 2024-05-17T23:14:55.240 INFO:teuthology.orchestra.run.smithi110.stdout: Verifying : kernel-core-5.14.0-446.el9.x86_64 2/4 2024-05-17T23:14:55.240 INFO:teuthology.orchestra.run.smithi110.stdout: Verifying : kernel-modules-5.14.0-446.el9.x86_64 3/4 2024-05-17T23:14:55.915 INFO:teuthology.orchestra.run.smithi204.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-05-17T23:14:55.946 INFO:teuthology.orchestra.run.smithi204.stderr:done 2024-05-17T23:14:55.948 DEBUG:teuthology.orchestra.run.smithi204:> mktemp 2024-05-17T23:14:55.964 INFO:teuthology.orchestra.run.smithi204.stdout:/tmp/tmp.PUqHm87VCX 2024-05-17T23:14:55.965 DEBUG:teuthology.orchestra.run.smithi204:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.PUqHm87VCX 2024-05-17T23:14:56.032 DEBUG:teuthology.orchestra.run.smithi204:> sudo chmod 0666 /tmp/tmp.PUqHm87VCX 2024-05-17T23:14:56.088 INFO:teuthology.orchestra.run.smithi110.stdout: Verifying : kernel-modules-core-5.14.0-446.el9.x86_64 4/4 2024-05-17T23:14:56.088 INFO:teuthology.orchestra.run.smithi110.stdout: 2024-05-17T23:14:56.088 INFO:teuthology.orchestra.run.smithi110.stdout:Installed: 2024-05-17T23:14:56.088 INFO:teuthology.orchestra.run.smithi110.stdout: kernel-5.14.0-446.el9.x86_64 2024-05-17T23:14:56.088 INFO:teuthology.orchestra.run.smithi110.stdout: kernel-core-5.14.0-446.el9.x86_64 2024-05-17T23:14:56.088 INFO:teuthology.orchestra.run.smithi110.stdout: kernel-modules-5.14.0-446.el9.x86_64 2024-05-17T23:14:56.089 INFO:teuthology.orchestra.run.smithi110.stdout: kernel-modules-core-5.14.0-446.el9.x86_64 2024-05-17T23:14:56.089 INFO:teuthology.orchestra.run.smithi110.stdout: 2024-05-17T23:14:56.089 INFO:teuthology.orchestra.run.smithi110.stdout:Complete! 2024-05-17T23:14:56.168 DEBUG:teuthology.orchestra.remote:smithi204:/tmp/tmp.PUqHm87VCX is 6KB 2024-05-17T23:14:56.267 DEBUG:teuthology.orchestra.run.smithi204:> rm -fr /tmp/tmp.PUqHm87VCX 2024-05-17T23:14:56.281 DEBUG:teuthology.orchestra.run.smithi204:> sudo /bin/ls /boot/loader/entries || true 2024-05-17T23:14:56.343 INFO:teuthology.orchestra.run.smithi204.stdout:7fc8828e06d0482694bcf4a447d13cb6-0-rescue.conf 2024-05-17T23:14:56.343 INFO:teuthology.orchestra.run.smithi204.stdout:7fc8828e06d0482694bcf4a447d13cb6-5.14.0-239.el9.x86_64.conf 2024-05-17T23:14:56.344 INFO:teuthology.orchestra.run.smithi204.stdout:7fc8828e06d0482694bcf4a447d13cb6-5.14.0-437.el9.x86_64.conf 2024-05-17T23:14:56.344 INFO:teuthology.orchestra.run.smithi204.stdout:7fc8828e06d0482694bcf4a447d13cb6-5.14.0-446.el9.x86_64.conf 2024-05-17T23:14:56.345 DEBUG:teuthology.orchestra.run.smithi204:> sudo grub2-set-default 7fc8828e06d0482694bcf4a447d13cb6-5.14.0-446.el9.x86_64 2024-05-17T23:14:56.407 INFO:teuthology.orchestra.run.smithi027.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-05-17T23:14:56.430 INFO:teuthology.orchestra.run.smithi027.stderr:done 2024-05-17T23:14:56.432 DEBUG:teuthology.orchestra.run.smithi027:> mktemp 2024-05-17T23:14:56.440 DEBUG:teuthology.orchestra.run.smithi110:> rpm -q kernel | sort -rV | head -n 1 2024-05-17T23:14:56.447 INFO:teuthology.orchestra.run.smithi027.stdout:/tmp/tmp.7rw6gYuRGv 2024-05-17T23:14:56.447 DEBUG:teuthology.orchestra.run.smithi027:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.7rw6gYuRGv 2024-05-17T23:14:56.500 DEBUG:teuthology.orchestra.run.smithi204:> sudo shutdown -r now 2024-05-17T23:14:56.511 INFO:teuthology.orchestra.run.smithi110.stdout:kernel-5.14.0-446.el9.x86_64 2024-05-17T23:14:56.511 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-446.el9.x86_64 2024-05-17T23:14:56.512 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-437.el9.x86_64 Expected: 5.14.0-446.el9.x86_64 2024-05-17T23:14:56.512 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-05-17T23:14:56.512 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-05-17T23:14:56.512 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-05-17T23:14:56.512 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi110.front.sepia.ceph.com, path=None, version=distro) 2024-05-17T23:14:56.512 DEBUG:teuthology.orchestra.run.smithi110:> rpm -q kernel | sort -rV | head -n 1 2024-05-17T23:14:56.513 DEBUG:teuthology.orchestra.run.smithi027:> sudo chmod 0666 /tmp/tmp.7rw6gYuRGv 2024-05-17T23:14:56.563 INFO:teuthology.orchestra.run.smithi110.stdout:kernel-5.14.0-446.el9.x86_64 2024-05-17T23:14:56.563 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-446.el9.x86_64 2024-05-17T23:14:56.563 DEBUG:teuthology.orchestra.run.smithi110:> sudo rpm -qi grub2-tools 2024-05-17T23:14:56.593 INFO:teuthology.orchestra.run.smithi110.stdout:Name : grub2-tools 2024-05-17T23:14:56.593 INFO:teuthology.orchestra.run.smithi110.stdout:Epoch : 1 2024-05-17T23:14:56.593 INFO:teuthology.orchestra.run.smithi110.stdout:Version : 2.06 2024-05-17T23:14:56.593 INFO:teuthology.orchestra.run.smithi110.stdout:Release : 68.el9 2024-05-17T23:14:56.593 INFO:teuthology.orchestra.run.smithi110.stdout:Architecture: x86_64 2024-05-17T23:14:56.594 INFO:teuthology.orchestra.run.smithi110.stdout:Install Date: Fri 19 Apr 2024 09:32:39 PM UTC 2024-05-17T23:14:56.594 INFO:teuthology.orchestra.run.smithi110.stdout:Group : Unspecified 2024-05-17T23:14:56.594 INFO:teuthology.orchestra.run.smithi110.stdout:Size : 8264254 2024-05-17T23:14:56.594 INFO:teuthology.orchestra.run.smithi110.stdout:License : GPLv3+ 2024-05-17T23:14:56.594 INFO:teuthology.orchestra.run.smithi110.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-05-17T23:14:56.594 INFO:teuthology.orchestra.run.smithi110.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-05-17T23:14:56.594 INFO:teuthology.orchestra.run.smithi110.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-05-17T23:14:56.594 INFO:teuthology.orchestra.run.smithi110.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-05-17T23:14:56.594 INFO:teuthology.orchestra.run.smithi110.stdout:Packager : builder@centos.org 2024-05-17T23:14:56.594 INFO:teuthology.orchestra.run.smithi110.stdout:Vendor : CentOS 2024-05-17T23:14:56.594 INFO:teuthology.orchestra.run.smithi110.stdout:URL : http://www.gnu.org/software/grub/ 2024-05-17T23:14:56.594 INFO:teuthology.orchestra.run.smithi110.stdout:Summary : Support tools for GRUB. 2024-05-17T23:14:56.594 INFO:teuthology.orchestra.run.smithi110.stdout:Description : 2024-05-17T23:14:56.595 INFO:teuthology.orchestra.run.smithi110.stdout: 2024-05-17T23:14:56.595 INFO:teuthology.orchestra.run.smithi110.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-05-17T23:14:56.595 INFO:teuthology.orchestra.run.smithi110.stdout:customizable bootloader with modular architecture. It supports a rich 2024-05-17T23:14:56.595 INFO:teuthology.orchestra.run.smithi110.stdout:variety of kernel formats, file systems, computer architectures and 2024-05-17T23:14:56.595 INFO:teuthology.orchestra.run.smithi110.stdout:hardware devices. 2024-05-17T23:14:56.595 INFO:teuthology.orchestra.run.smithi110.stdout: 2024-05-17T23:14:56.595 INFO:teuthology.orchestra.run.smithi110.stdout:This subpackage provides tools for support of all platforms. 2024-05-17T23:14:56.596 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-05-17T23:14:56.596 INFO:teuthology.task.kernel:Updating grub on smithi110 to boot 5.14.0-446.el9.x86_64 2024-05-17T23:14:56.596 DEBUG:teuthology.orchestra.run.smithi110:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-05-17T23:14:56.651 DEBUG:teuthology.orchestra.remote:smithi027:/tmp/tmp.7rw6gYuRGv is 6KB 2024-05-17T23:14:56.700 DEBUG:teuthology.orchestra.run.smithi027:> rm -fr /tmp/tmp.7rw6gYuRGv 2024-05-17T23:14:56.715 DEBUG:teuthology.orchestra.run.smithi027:> sudo /bin/ls /boot/loader/entries || true 2024-05-17T23:14:56.776 INFO:teuthology.orchestra.run.smithi027.stdout:7fc8828e06d0482694bcf4a447d13cb6-0-rescue.conf 2024-05-17T23:14:56.776 INFO:teuthology.orchestra.run.smithi027.stdout:7fc8828e06d0482694bcf4a447d13cb6-5.14.0-239.el9.x86_64.conf 2024-05-17T23:14:56.777 INFO:teuthology.orchestra.run.smithi027.stdout:7fc8828e06d0482694bcf4a447d13cb6-5.14.0-437.el9.x86_64.conf 2024-05-17T23:14:56.777 INFO:teuthology.orchestra.run.smithi027.stdout:7fc8828e06d0482694bcf4a447d13cb6-5.14.0-446.el9.x86_64.conf 2024-05-17T23:14:56.778 DEBUG:teuthology.orchestra.run.smithi027:> sudo grub2-set-default 7fc8828e06d0482694bcf4a447d13cb6-5.14.0-446.el9.x86_64 2024-05-17T23:14:56.932 DEBUG:teuthology.orchestra.run.smithi027:> sudo shutdown -r now 2024-05-17T23:14:57.311 INFO:teuthology.orchestra.run.smithi110.stderr:Generating grub configuration file ... 2024-05-17T23:14:58.734 INFO:teuthology.orchestra.run.smithi110.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-05-17T23:14:58.760 INFO:teuthology.orchestra.run.smithi110.stderr:done 2024-05-17T23:14:58.762 DEBUG:teuthology.orchestra.run.smithi110:> mktemp 2024-05-17T23:14:58.822 INFO:teuthology.orchestra.run.smithi110.stdout:/tmp/tmp.pKEhVcu6fO 2024-05-17T23:14:58.823 DEBUG:teuthology.orchestra.run.smithi110:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.pKEhVcu6fO 2024-05-17T23:14:58.898 DEBUG:teuthology.orchestra.run.smithi110:> sudo chmod 0666 /tmp/tmp.pKEhVcu6fO 2024-05-17T23:14:59.038 DEBUG:teuthology.orchestra.remote:smithi110:/tmp/tmp.pKEhVcu6fO is 6KB 2024-05-17T23:14:59.086 DEBUG:teuthology.orchestra.run.smithi110:> rm -fr /tmp/tmp.pKEhVcu6fO 2024-05-17T23:14:59.100 DEBUG:teuthology.orchestra.run.smithi110:> sudo /bin/ls /boot/loader/entries || true 2024-05-17T23:14:59.162 INFO:teuthology.orchestra.run.smithi110.stdout:7fc8828e06d0482694bcf4a447d13cb6-0-rescue.conf 2024-05-17T23:14:59.162 INFO:teuthology.orchestra.run.smithi110.stdout:7fc8828e06d0482694bcf4a447d13cb6-5.14.0-239.el9.x86_64.conf 2024-05-17T23:14:59.162 INFO:teuthology.orchestra.run.smithi110.stdout:7fc8828e06d0482694bcf4a447d13cb6-5.14.0-437.el9.x86_64.conf 2024-05-17T23:14:59.162 INFO:teuthology.orchestra.run.smithi110.stdout:7fc8828e06d0482694bcf4a447d13cb6-5.14.0-446.el9.x86_64.conf 2024-05-17T23:14:59.163 DEBUG:teuthology.orchestra.run.smithi110:> sudo grub2-set-default 7fc8828e06d0482694bcf4a447d13cb6-5.14.0-446.el9.x86_64 2024-05-17T23:14:59.311 DEBUG:teuthology.orchestra.run.smithi110:> sudo shutdown -r now 2024-05-17T23:15:26.530 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-05-17T23:15:26.531 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi204.front.sepia.ceph.com' 2024-05-17T23:15:26.532 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi204.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-17T23:15:26.935 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-05-17T23:15:26.936 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-05-17T23:15:26.936 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-17T23:15:29.314 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-05-17T23:15:29.314 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi110.front.sepia.ceph.com' 2024-05-17T23:15:29.315 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi110.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-17T23:15:45.311 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.27 2024-05-17T23:15:47.870 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.110 2024-05-17T23:15:54.314 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-05-17T23:15:54.315 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-17T23:15:56.874 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi110.front.sepia.ceph.com' 2024-05-17T23:15:56.874 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi110.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-17T23:15:57.374 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.27 2024-05-17T23:16:01.183 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.204 2024-05-17T23:16:09.383 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-05-17T23:16:09.384 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-17T23:16:10.185 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi204.front.sepia.ceph.com' 2024-05-17T23:16:10.186 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi204.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-17T23:16:12.446 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.27 2024-05-17T23:16:27.459 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-05-17T23:16:27.459 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-17T23:16:28.574 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.204 2024-05-17T23:16:30.526 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.27 2024-05-17T23:16:40.584 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi204.front.sepia.ceph.com' 2024-05-17T23:16:40.585 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi204.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-17T23:16:40.980 DEBUG:teuthology.orchestra.run.smithi204:> true 2024-05-17T23:16:41.437 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi204.front.sepia.ceph.com' 2024-05-17T23:16:41.437 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.14.0-446.el9.x86_64"... 2024-05-17T23:16:41.437 DEBUG:teuthology.orchestra.run.smithi204:> uname -r 2024-05-17T23:16:41.452 INFO:teuthology.orchestra.run.smithi204.stdout:5.14.0-446.el9.x86_64 2024-05-17T23:16:41.453 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-446.el9.x86_64 vs 5.14.0-446.el9.x86_64 2024-05-17T23:16:41.453 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-05-17T23:16:41.453 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-05-17T23:16:42.453 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-05-17T23:16:42.454 DEBUG:teuthology.orchestra.run.smithi204:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-05-17T23:16:42.556 INFO:teuthology.orchestra.run.smithi204.stdout:ttyS1 2024-05-17T23:16:42.610 DEBUG:teuthology.parallel:result is None 2024-05-17T23:16:48.527 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-05-17T23:16:48.528 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-17T23:16:56.877 DEBUG:teuthology.orchestra.remote:timed out 2024-05-17T23:17:06.974 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.27 2024-05-17T23:17:08.878 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi110.front.sepia.ceph.com' 2024-05-17T23:17:08.879 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi110.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-17T23:17:09.228 DEBUG:teuthology.orchestra.run.smithi110:> true 2024-05-17T23:17:09.604 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi110.front.sepia.ceph.com' 2024-05-17T23:17:09.605 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-446.el9.x86_64"... 2024-05-17T23:17:09.605 DEBUG:teuthology.orchestra.run.smithi110:> uname -r 2024-05-17T23:17:09.624 INFO:teuthology.orchestra.run.smithi110.stdout:5.14.0-446.el9.x86_64 2024-05-17T23:17:09.625 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-446.el9.x86_64 vs 5.14.0-446.el9.x86_64 2024-05-17T23:17:09.625 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-05-17T23:17:09.625 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-05-17T23:17:10.626 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-05-17T23:17:10.626 DEBUG:teuthology.orchestra.run.smithi110:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-05-17T23:17:10.698 INFO:teuthology.orchestra.run.smithi110.stdout:ttyS1 2024-05-17T23:17:10.731 DEBUG:teuthology.parallel:result is None 2024-05-17T23:17:27.975 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-05-17T23:17:27.976 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-05-17T23:17:28.315 DEBUG:teuthology.orchestra.run.smithi027:> true 2024-05-17T23:17:28.702 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-05-17T23:17:28.702 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-446.el9.x86_64"... 2024-05-17T23:17:28.702 DEBUG:teuthology.orchestra.run.smithi027:> uname -r 2024-05-17T23:17:28.717 INFO:teuthology.orchestra.run.smithi027.stdout:5.14.0-446.el9.x86_64 2024-05-17T23:17:28.717 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-446.el9.x86_64 vs 5.14.0-446.el9.x86_64 2024-05-17T23:17:28.718 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-05-17T23:17:28.718 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-05-17T23:17:29.719 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-05-17T23:17:29.719 DEBUG:teuthology.orchestra.run.smithi027:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-05-17T23:17:29.785 INFO:teuthology.orchestra.run.smithi027.stdout:ttyS1 2024-05-17T23:17:29.820 DEBUG:teuthology.parallel:result is None 2024-05-17T23:17:29.820 INFO:teuthology.run_tasks:Running task internal.base... 2024-05-17T23:17:29.828 INFO:teuthology.task.internal:Creating test directory... 2024-05-17T23:17:29.828 DEBUG:teuthology.orchestra.run.smithi027:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-05-17T23:17:29.830 DEBUG:teuthology.orchestra.run.smithi110:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-05-17T23:17:29.832 DEBUG:teuthology.orchestra.run.smithi204:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-05-17T23:17:29.853 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-05-17T23:17:29.860 INFO:teuthology.run_tasks:Running task internal.archive... 2024-05-17T23:17:29.886 INFO:teuthology.task.internal:Creating archive directory... 2024-05-17T23:17:29.887 DEBUG:teuthology.orchestra.run.smithi027:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-05-17T23:17:29.889 DEBUG:teuthology.orchestra.run.smithi110:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-05-17T23:17:29.891 DEBUG:teuthology.orchestra.run.smithi204:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-05-17T23:17:30.002 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-05-17T23:17:30.010 INFO:teuthology.task.internal:Enabling coredump saving... 2024-05-17T23:17:30.011 DEBUG:teuthology.orchestra.run.smithi027:> 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-05-17T23:17:30.014 DEBUG:teuthology.orchestra.run.smithi110:> 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-05-17T23:17:30.016 DEBUG:teuthology.orchestra.run.smithi204:> 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-05-17T23:17:30.061 INFO:teuthology.orchestra.run.smithi110.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-05-17T23:17:30.072 INFO:teuthology.orchestra.run.smithi110.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-05-17T23:17:30.073 INFO:teuthology.orchestra.run.smithi204.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-05-17T23:17:30.085 INFO:teuthology.orchestra.run.smithi204.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-05-17T23:17:30.151 INFO:teuthology.orchestra.run.smithi027.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-05-17T23:17:30.162 INFO:teuthology.orchestra.run.smithi027.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-05-17T23:17:30.164 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-05-17T23:17:30.171 INFO:teuthology.task.internal:Configuring sudo... 2024-05-17T23:17:30.171 DEBUG:teuthology.orchestra.run.smithi027:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-05-17T23:17:30.173 DEBUG:teuthology.orchestra.run.smithi110:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-05-17T23:17:30.176 DEBUG:teuthology.orchestra.run.smithi204:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-05-17T23:17:30.204 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-05-17T23:17:30.213 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-05-17T23:17:30.213 DEBUG:teuthology.orchestra.run.smithi027:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-05-17T23:17:30.240 DEBUG:teuthology.orchestra.run.smithi110:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-05-17T23:17:30.244 DEBUG:teuthology.orchestra.run.smithi204:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-05-17T23:17:30.261 DEBUG:teuthology.orchestra.run.smithi027:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-05-17T23:17:30.337 DEBUG:teuthology.orchestra.run.smithi027:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-05-17T23:17:30.387 DEBUG:teuthology.orchestra.run.smithi027:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-05-17T23:17:30.484 DEBUG:teuthology.orchestra.run.smithi027:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-05-17T23:17:30.560 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-05-17T23:17:30.560 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-05-17T23:17:30.602 DEBUG:teuthology.orchestra.run.smithi110:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-05-17T23:17:30.648 DEBUG:teuthology.orchestra.run.smithi110:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-05-17T23:17:30.721 DEBUG:teuthology.orchestra.run.smithi110:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-05-17T23:17:30.762 DEBUG:teuthology.orchestra.run.smithi110:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-05-17T23:17:30.808 DEBUG:teuthology.orchestra.run.smithi110:> set -ex 2024-05-17T23:17:30.808 DEBUG:teuthology.orchestra.run.smithi110:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-05-17T23:17:30.874 DEBUG:teuthology.orchestra.run.smithi204:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-05-17T23:17:30.920 DEBUG:teuthology.orchestra.run.smithi204:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-05-17T23:17:30.975 DEBUG:teuthology.orchestra.run.smithi204:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-05-17T23:17:31.061 DEBUG:teuthology.orchestra.run.smithi204:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-05-17T23:17:31.103 DEBUG:teuthology.orchestra.run.smithi204:> set -ex 2024-05-17T23:17:31.103 DEBUG:teuthology.orchestra.run.smithi204:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-05-17T23:17:31.170 DEBUG:teuthology.orchestra.run.smithi027:> sudo service rsyslog restart 2024-05-17T23:17:31.173 DEBUG:teuthology.orchestra.run.smithi110:> sudo service rsyslog restart 2024-05-17T23:17:31.175 DEBUG:teuthology.orchestra.run.smithi204:> sudo service rsyslog restart 2024-05-17T23:17:31.212 INFO:teuthology.orchestra.run.smithi110.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-05-17T23:17:31.245 INFO:teuthology.orchestra.run.smithi027.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-05-17T23:17:31.256 INFO:teuthology.orchestra.run.smithi204.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-05-17T23:17:31.597 INFO:teuthology.run_tasks:Running task internal.timer... 2024-05-17T23:17:31.604 INFO:teuthology.task.internal:Starting timer... 2024-05-17T23:17:31.604 INFO:teuthology.run_tasks:Running task pcp... 2024-05-17T23:17:31.632 INFO:teuthology.run_tasks:Running task selinux... 2024-05-17T23:17:31.664 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-05-17T23:17:31.664 DEBUG:teuthology.orchestra.run.smithi027:> sudo service auditd rotate 2024-05-17T23:17:31.801 INFO:teuthology.orchestra.run.smithi027.stdout:Rotating logs: 2024-05-17T23:17:31.803 DEBUG:teuthology.orchestra.run.smithi110:> sudo service auditd rotate 2024-05-17T23:17:31.850 INFO:teuthology.orchestra.run.smithi110.stdout:Rotating logs: 2024-05-17T23:17:31.852 DEBUG:teuthology.orchestra.run.smithi204:> sudo service auditd rotate 2024-05-17T23:17:31.921 INFO:teuthology.orchestra.run.smithi204.stdout:Rotating logs: 2024-05-17T23:17:31.923 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-05-17T23:17:31.923 DEBUG:teuthology.orchestra.run.smithi027:> /usr/sbin/getenforce 2024-05-17T23:17:32.055 INFO:teuthology.orchestra.run.smithi027.stdout:Permissive 2024-05-17T23:17:32.055 DEBUG:teuthology.orchestra.run.smithi110:> /usr/sbin/getenforce 2024-05-17T23:17:32.140 INFO:teuthology.orchestra.run.smithi110.stdout:Permissive 2024-05-17T23:17:32.140 DEBUG:teuthology.orchestra.run.smithi204:> /usr/sbin/getenforce 2024-05-17T23:17:32.210 INFO:teuthology.orchestra.run.smithi204.stdout:Permissive 2024-05-17T23:17:32.210 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi027.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi110.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi204.front.sepia.ceph.com': 'permissive'} 2024-05-17T23:17:32.210 DEBUG:teuthology.orchestra.run.smithi027:> 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-05-17T23:17:32.240 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-17T23:17:32.241 DEBUG:teuthology.orchestra.run.smithi110:> 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-05-17T23:17:32.271 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-17T23:17:32.272 DEBUG:teuthology.orchestra.run.smithi204:> 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-05-17T23:17:32.299 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-17T23:17:32.300 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-05-17T23:17:32.300 DEBUG:teuthology.orchestra.run.smithi027:> sudo /usr/sbin/setenforce permissive 2024-05-17T23:17:32.332 DEBUG:teuthology.orchestra.run.smithi110:> sudo /usr/sbin/setenforce permissive 2024-05-17T23:17:32.367 DEBUG:teuthology.orchestra.run.smithi204:> sudo /usr/sbin/setenforce permissive 2024-05-17T23:17:32.394 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-05-17T23:17:32.403 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-05-17T23:17:32.405 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-05-17T23:17:32.527 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-05-17T23:17:32.537 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-05-17T23:17:32.538 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi027.front.sepia.ceph.com,smithi110.front.sepia.ceph.com,smithi204.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-05-17T23:21:22.898 INFO:teuthology.task.ansible:Archiving ansible failure log at: /home/teuthworker/archive/teuthology-2024-05-17_21:08:02-orch-squid-distro-default-smithi/7711921/ansible_failures.yaml 2024-05-17T23:21:22.900 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_bb9e32da229c89506a41d514c5982485274ba989/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/home/teuthworker/src/git.ceph.com_teuthology_bb9e32da229c89506a41d514c5982485274ba989/teuthology/task/__init__.py", line 123, in __enter__ self.begin() File "/home/teuthworker/src/git.ceph.com_teuthology_bb9e32da229c89506a41d514c5982485274ba989/teuthology/task/ansible.py", line 508, in begin super(CephLab, self).begin() File "/home/teuthworker/src/git.ceph.com_teuthology_bb9e32da229c89506a41d514c5982485274ba989/teuthology/task/ansible.py", line 342, in begin self.execute_playbook() File "/home/teuthworker/src/git.ceph.com_teuthology_bb9e32da229c89506a41d514c5982485274ba989/teuthology/task/ansible.py", line 374, in execute_playbook self._handle_failure(command, status) File "/home/teuthworker/src/git.ceph.com_teuthology_bb9e32da229c89506a41d514c5982485274ba989/teuthology/task/ansible.py", line 402, in _handle_failure raise AnsibleFailedError(failures) teuthology.exceptions.AnsibleFailedError: ['Unsupported parameters for (stat) module: get_md5. Supported parameters include: checksum_algorithm, follow, get_attributes, get_checksum, get_mime, path (attr, attributes, checksum, checksum_algo, dest, mime, mime-type, mime_type, name).'] 2024-05-17T23:21:23.093 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=ab478ea58b044778a1c53577bfee000e Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_bb9e32da229c89506a41d514c5982485274ba989/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/home/teuthworker/src/git.ceph.com_teuthology_bb9e32da229c89506a41d514c5982485274ba989/teuthology/task/__init__.py", line 123, in __enter__ self.begin() File "/home/teuthworker/src/git.ceph.com_teuthology_bb9e32da229c89506a41d514c5982485274ba989/teuthology/task/ansible.py", line 508, in begin super(CephLab, self).begin() File "/home/teuthworker/src/git.ceph.com_teuthology_bb9e32da229c89506a41d514c5982485274ba989/teuthology/task/ansible.py", line 342, in begin self.execute_playbook() File "/home/teuthworker/src/git.ceph.com_teuthology_bb9e32da229c89506a41d514c5982485274ba989/teuthology/task/ansible.py", line 374, in execute_playbook self._handle_failure(command, status) File "/home/teuthworker/src/git.ceph.com_teuthology_bb9e32da229c89506a41d514c5982485274ba989/teuthology/task/ansible.py", line 402, in _handle_failure raise AnsibleFailedError(failures) teuthology.exceptions.AnsibleFailedError: ['Unsupported parameters for (stat) module: get_md5. Supported parameters include: checksum_algorithm, follow, get_attributes, get_checksum, get_mime, path (attr, attributes, checksum, checksum_algo, dest, mime, mime-type, mime_type, name).'] 2024-05-17T23:21:23.095 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-05-17T23:21:23.103 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-05-17T23:21:23.104 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-05-17T23:21:23.197 DEBUG:teuthology.orchestra.run.smithi027:> 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-05-17T23:21:23.262 DEBUG:teuthology.orchestra.run.smithi110:> 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-05-17T23:21:23.323 DEBUG:teuthology.orchestra.run.smithi204:> 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-05-17T23:21:23.384 DEBUG:teuthology.orchestra.run.smithi027:> 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-05-17T23:21:23.414 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-17T23:21:23.415 DEBUG:teuthology.orchestra.run.smithi110:> 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-05-17T23:21:23.444 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-17T23:21:23.445 DEBUG:teuthology.orchestra.run.smithi204:> 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-05-17T23:21:23.475 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-17T23:21:23.476 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-05-17T23:21:23.485 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-05-17T23:21:23.517 INFO:teuthology.task.internal:Duration was 231.913453 seconds 2024-05-17T23:21:23.518 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-05-17T23:21:23.568 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-05-17T23:21:23.568 DEBUG:teuthology.orchestra.run.smithi027:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-05-17T23:21:23.570 DEBUG:teuthology.orchestra.run.smithi110:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-05-17T23:21:23.576 DEBUG:teuthology.orchestra.run.smithi204:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-05-17T23:21:23.611 INFO:teuthology.orchestra.run.smithi027.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-05-17T23:21:23.616 INFO:teuthology.orchestra.run.smithi110.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-05-17T23:21:23.618 INFO:teuthology.orchestra.run.smithi204.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-05-17T23:21:24.119 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-05-17T23:21:24.119 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi027.front.sepia.ceph.com 2024-05-17T23:21:24.119 DEBUG:teuthology.orchestra.run.smithi027:> 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-05-17T23:21:24.190 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi110.front.sepia.ceph.com 2024-05-17T23:21:24.191 DEBUG:teuthology.orchestra.run.smithi110:> 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-05-17T23:21:24.220 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi204.front.sepia.ceph.com 2024-05-17T23:21:24.220 DEBUG:teuthology.orchestra.run.smithi204:> 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-05-17T23:21:24.249 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-05-17T23:21:24.250 DEBUG:teuthology.orchestra.run.smithi027:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-05-17T23:21:24.252 DEBUG:teuthology.orchestra.run.smithi110:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-05-17T23:21:24.263 DEBUG:teuthology.orchestra.run.smithi204:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-05-17T23:21:24.321 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-05-17T23:21:24.321 DEBUG:teuthology.orchestra.run.smithi027:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-05-17T23:21:24.323 DEBUG:teuthology.orchestra.run.smithi110:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-05-17T23:21:24.333 DEBUG:teuthology.orchestra.run.smithi204:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-05-17T23:21:24.452 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-05-17T23:21:24.461 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-05-17T23:21:24.461 DEBUG:teuthology.orchestra.run.smithi027:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-05-17T23:21:24.488 DEBUG:teuthology.orchestra.run.smithi110:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-05-17T23:21:24.513 DEBUG:teuthology.orchestra.run.smithi204:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-05-17T23:21:24.540 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-05-17T23:21:24.552 DEBUG:teuthology.orchestra.run.smithi027:> 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-05-17T23:21:24.554 DEBUG:teuthology.orchestra.run.smithi110:> 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-05-17T23:21:24.557 DEBUG:teuthology.orchestra.run.smithi204:> 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-05-17T23:21:24.576 INFO:teuthology.orchestra.run.smithi027.stdout:kernel.core_pattern = core 2024-05-17T23:21:24.581 INFO:teuthology.orchestra.run.smithi110.stdout:kernel.core_pattern = core 2024-05-17T23:21:24.605 INFO:teuthology.orchestra.run.smithi204.stdout:kernel.core_pattern = core 2024-05-17T23:21:24.628 DEBUG:teuthology.orchestra.run.smithi027:> test -e /home/ubuntu/cephtest/archive/coredump 2024-05-17T23:21:24.654 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-17T23:21:24.654 DEBUG:teuthology.orchestra.run.smithi110:> test -e /home/ubuntu/cephtest/archive/coredump 2024-05-17T23:21:24.668 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-17T23:21:24.669 DEBUG:teuthology.orchestra.run.smithi204:> test -e /home/ubuntu/cephtest/archive/coredump 2024-05-17T23:21:24.684 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-05-17T23:21:24.684 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-05-17T23:21:24.696 INFO:teuthology.task.internal:Transferring archived files... 2024-05-17T23:21:24.697 DEBUG:teuthology.misc:Transferring archived files from smithi027:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-05-17_21:08:02-orch-squid-distro-default-smithi/7711921/remote/smithi027 2024-05-17T23:21:24.698 DEBUG:teuthology.orchestra.run.smithi027:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-05-17T23:21:24.763 DEBUG:teuthology.misc:Transferring archived files from smithi110:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-05-17_21:08:02-orch-squid-distro-default-smithi/7711921/remote/smithi110 2024-05-17T23:21:24.764 DEBUG:teuthology.orchestra.run.smithi110:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-05-17T23:21:24.846 DEBUG:teuthology.misc:Transferring archived files from smithi204:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-05-17_21:08:02-orch-squid-distro-default-smithi/7711921/remote/smithi204 2024-05-17T23:21:24.847 DEBUG:teuthology.orchestra.run.smithi204:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-05-17T23:21:24.887 INFO:teuthology.task.internal:Removing archive directory... 2024-05-17T23:21:24.887 DEBUG:teuthology.orchestra.run.smithi027:> rm -rf -- /home/ubuntu/cephtest/archive 2024-05-17T23:21:24.889 DEBUG:teuthology.orchestra.run.smithi110:> rm -rf -- /home/ubuntu/cephtest/archive 2024-05-17T23:21:24.892 DEBUG:teuthology.orchestra.run.smithi204:> rm -rf -- /home/ubuntu/cephtest/archive 2024-05-17T23:21:24.938 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-05-17T23:21:24.949 INFO:teuthology.task.internal:Not uploading archives. 2024-05-17T23:21:24.949 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-05-17T23:21:24.994 INFO:teuthology.task.internal:Tidying up after the test... 2024-05-17T23:21:24.995 DEBUG:teuthology.orchestra.run.smithi027:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-05-17T23:21:24.997 DEBUG:teuthology.orchestra.run.smithi110:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-05-17T23:21:25.002 DEBUG:teuthology.orchestra.run.smithi204:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-05-17T23:21:25.010 INFO:teuthology.orchestra.run.smithi027.stdout: 266028 4 drwxr-xr-x 2 ubuntu ubuntu 4096 May 17 23:21 /home/ubuntu/cephtest 2024-05-17T23:21:25.012 INFO:teuthology.orchestra.run.smithi110.stdout: 262165 4 drwxr-xr-x 2 ubuntu ubuntu 4096 May 17 23:21 /home/ubuntu/cephtest 2024-05-17T23:21:25.017 INFO:teuthology.orchestra.run.smithi204.stdout: 262165 4 drwxr-xr-x 2 ubuntu ubuntu 4096 May 17 23:21 /home/ubuntu/cephtest 2024-05-17T23:21:25.018 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-05-17T23:21:25.045 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-05-17T23:21:25.148 INFO:teuthology.run:Summary data: description: orch/cephadm/workunits/{0-distro/centos_9.stream_runc agent/off mon_election/connectivity task/test_host_drain} duration: 231.91345310211182 failure_reason: '[''Unsupported parameters for (stat) module: get_md5. Supported parameters include: checksum_algorithm, follow, get_attributes, get_checksum, get_mime, path (attr, attributes, checksum, checksum_algo, dest, mime, mime-type, mime_type, name).'']' owner: scheduled_teuthology@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=ab478ea58b044778a1c53577bfee000e status: dead success: false 2024-05-17T23:21:25.148 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-05-17T23:21:25.249 INFO:teuthology.run:DEAD