2024-06-30T13:03:57.103 INFO:root:teuthology version: 0.0.1.dev303+g861a8dc 2024-06-30T13:03:57.103 DEBUG:teuthology.run:Teuthology command: teuthology --name teuthology-2024-06-10_22:08:02-orch-reef-distro-default-smithi --verbose --description orch/cephadm/workunits/{0-distro/rhel_8.6_container_tools_3.0 agent/on mon_election/connectivity task/test_host_drain} --archive /home/teuthworker/archive/teuthology-2024-06-10_22:08:02-orch-reef-distro-default-smithi/7749624 --owner scheduled_teuthology@teuthology -- /home/teuthworker/archive/teuthology-2024-06-10_22:08:02-orch-reef-distro-default-smithi/7749624/orig.config.yaml 2024-06-30T13:03:57.131 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-06-30T13:03:57.211 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-06-10_22:08:02-orch-reef-distro-default-smithi/7749624 branch: reef description: orch/cephadm/workunits/{0-distro/rhel_8.6_container_tools_3.0 agent/on mon_election/connectivity task/test_host_drain} email: ceph-qa@ceph.com first_in_suite: false job_id: '7749624' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-06-10_22:08:02-orch-reef-distro-default-smithi no_nested_subset: false os_type: rhel os_version: '8.6' overrides: admin_socket: branch: reef ceph: conf: global: mon election default strategy: 3 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: true 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\) sha1: f1abf795f4fc15bf2f30ac90c811a53ab21d5d65 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: f1abf795f4fc15bf2f30ac90c811a53ab21d5d65 selinux: whitelist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: reef sha1: 16b16b98599950a27899283412b0a32cd03699ac owner: scheduled_teuthology@teuthology priority: 930 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: 9459 sha1: f1abf795f4fc15bf2f30ac90c811a53ab21d5d65 sleep_before_teardown: 0 subset: 38/64 suite: orch suite_branch: reef suite_path: /home/teuthworker/src/git.ceph.com_ceph_16b16b98599950a27899283412b0a32cd03699ac/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: 16b16b98599950a27899283412b0a32cd03699ac targets: smithi003.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBNxY4OUONGfkfWiO5cB4V1fxFcaLflXrKjIE7nBCBOJOxCXbWP3CrP9oEwdlUYeuLpNGScwV+D4WRy+hkw7vgRs= smithi159.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBI/yFzs/HEtY/cKAhV2mrLT4CD0qlFnaSV/nLu+eb29mOhOgQbZgXuuvfVhsgeDaHo0f7fZSST2/sH+sj0HkMks= smithi189.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDatsADhdAQVSKFG5gAr5kDSHxNCM9AjJsbW7Bvy6cE8oBKkL2GlMDdw0JNBzlRkf3TA+AiXvY/tijVxL+Kz3BI= tasks: - pexec: all: - sudo cp /etc/containers/registries.conf /etc/containers/registries.conf.backup - sudo dnf -y module reset container-tools - sudo dnf -y module install container-tools:3.0 --allowerasing --nobest - sudo cp /etc/containers/registries.conf.backup /etc/containers/registries.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: 861a8dcf7aa816a26e13f039336f7ed0a9aec0fa timestamp: 2024-06-10_22:08:02 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2698093 2024-06-30T13:03:57.211 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_16b16b98599950a27899283412b0a32cd03699ac/qa; will attempt to use it 2024-06-30T13:03:57.212 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_16b16b98599950a27899283412b0a32cd03699ac/qa/tasks 2024-06-30T13:03:57.212 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-06-30T13:03:57.214 INFO:teuthology.task.internal:Checking packages... 2024-06-30T13:03:57.232 INFO:teuthology.task.internal:Checking packages for os_type 'rhel', flavor 'default' and ceph hash 'f1abf795f4fc15bf2f30ac90c811a53ab21d5d65' 2024-06-30T13:03:57.233 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-06-30T13:03:57.233 INFO:teuthology.packaging:ref: None 2024-06-30T13:03:57.233 INFO:teuthology.packaging:tag: None 2024-06-30T13:03:57.233 INFO:teuthology.packaging:branch: reef 2024-06-30T13:03:57.233 INFO:teuthology.packaging:sha1: f1abf795f4fc15bf2f30ac90c811a53ab21d5d65 2024-06-30T13:03:57.233 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&ref=reef 2024-06-30T13:03:57.491 INFO:teuthology.task.internal:Found packages for ceph version 18.2.3-0 2024-06-30T13:03:57.492 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-06-30T13:03:57.499 INFO:teuthology.task.internal:no buildpackages task found 2024-06-30T13:03:57.499 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-06-30T13:03:57.514 INFO:teuthology.task.internal:Saving configuration 2024-06-30T13:03:57.527 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-06-30T13:03:57.533 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-06-30T13:03:57.559 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi003.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-06-10_22:08:02-orch-reef-distro-default-smithi/7749624', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'rhel', 'os_version': '8.6', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-06-30 12:58:39.214209', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBNxY4OUONGfkfWiO5cB4V1fxFcaLflXrKjIE7nBCBOJOxCXbWP3CrP9oEwdlUYeuLpNGScwV+D4WRy+hkw7vgRs='} 2024-06-30T13:03:57.579 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi159.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-06-10_22:08:02-orch-reef-distro-default-smithi/7749624', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'rhel', 'os_version': '8.6', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-06-30 12:58:39.215293', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBI/yFzs/HEtY/cKAhV2mrLT4CD0qlFnaSV/nLu+eb29mOhOgQbZgXuuvfVhsgeDaHo0f7fZSST2/sH+sj0HkMks='} 2024-06-30T13:03:57.601 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi189.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-06-10_22:08:02-orch-reef-distro-default-smithi/7749624', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'rhel', 'os_version': '8.6', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-06-30 12:58:39.212881', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDatsADhdAQVSKFG5gAr5kDSHxNCM9AjJsbW7Bvy6cE8oBKkL2GlMDdw0JNBzlRkf3TA+AiXvY/tijVxL+Kz3BI='} 2024-06-30T13:03:57.601 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-06-30T13:03:57.606 INFO:teuthology.task.internal:roles: ubuntu@smithi003.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-06-30T13:03:57.606 INFO:teuthology.task.internal:roles: ubuntu@smithi159.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-06-30T13:03:57.606 INFO:teuthology.task.internal:roles: ubuntu@smithi189.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-06-30T13:03:57.607 INFO:teuthology.run_tasks:Running task console_log... 2024-06-30T13:03:57.699 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7ff38f263ac0>, signals=[15]) 2024-06-30T13:03:57.699 INFO:teuthology.run_tasks:Running task internal.connect... 2024-06-30T13:03:57.705 INFO:teuthology.task.internal:Opening connections... 2024-06-30T13:03:57.705 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi003.front.sepia.ceph.com 2024-06-30T13:03:57.706 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi003.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-06-30T13:03:57.797 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi159.front.sepia.ceph.com 2024-06-30T13:03:57.797 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi159.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-06-30T13:03:57.870 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi189.front.sepia.ceph.com 2024-06-30T13:03:57.871 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi189.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-06-30T13:03:57.941 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-06-30T13:03:57.948 DEBUG:teuthology.orchestra.run.smithi003:> uname -m 2024-06-30T13:03:57.971 INFO:teuthology.orchestra.run.smithi003.stdout:x86_64 2024-06-30T13:03:57.971 DEBUG:teuthology.orchestra.run.smithi003:> cat /etc/os-release 2024-06-30T13:03:58.032 INFO:teuthology.orchestra.run.smithi003.stdout:NAME="Red Hat Enterprise Linux" 2024-06-30T13:03:58.032 INFO:teuthology.orchestra.run.smithi003.stdout:VERSION="8.6 (Ootpa)" 2024-06-30T13:03:58.032 INFO:teuthology.orchestra.run.smithi003.stdout:ID="rhel" 2024-06-30T13:03:58.032 INFO:teuthology.orchestra.run.smithi003.stdout:ID_LIKE="fedora" 2024-06-30T13:03:58.033 INFO:teuthology.orchestra.run.smithi003.stdout:VERSION_ID="8.6" 2024-06-30T13:03:58.033 INFO:teuthology.orchestra.run.smithi003.stdout:PLATFORM_ID="platform:el8" 2024-06-30T13:03:58.033 INFO:teuthology.orchestra.run.smithi003.stdout:PRETTY_NAME="Red Hat Enterprise Linux 8.6 (Ootpa)" 2024-06-30T13:03:58.033 INFO:teuthology.orchestra.run.smithi003.stdout:ANSI_COLOR="0;31" 2024-06-30T13:03:58.033 INFO:teuthology.orchestra.run.smithi003.stdout:CPE_NAME="cpe:/o:redhat:enterprise_linux:8::baseos" 2024-06-30T13:03:58.033 INFO:teuthology.orchestra.run.smithi003.stdout:HOME_URL="https://www.redhat.com/" 2024-06-30T13:03:58.033 INFO:teuthology.orchestra.run.smithi003.stdout:DOCUMENTATION_URL="https://access.redhat.com/documentation/red_hat_enterprise_linux/8/" 2024-06-30T13:03:58.033 INFO:teuthology.orchestra.run.smithi003.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-06-30T13:03:58.033 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-06-30T13:03:58.033 INFO:teuthology.orchestra.run.smithi003.stdout:REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 8" 2024-06-30T13:03:58.033 INFO:teuthology.orchestra.run.smithi003.stdout:REDHAT_BUGZILLA_PRODUCT_VERSION=8.6 2024-06-30T13:03:58.033 INFO:teuthology.orchestra.run.smithi003.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux" 2024-06-30T13:03:58.033 INFO:teuthology.orchestra.run.smithi003.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="8.6" 2024-06-30T13:03:58.034 INFO:teuthology.lock.ops:Updating smithi003.front.sepia.ceph.com on lock server 2024-06-30T13:03:58.056 DEBUG:teuthology.orchestra.run.smithi159:> uname -m 2024-06-30T13:03:58.077 INFO:teuthology.orchestra.run.smithi159.stdout:x86_64 2024-06-30T13:03:58.077 DEBUG:teuthology.orchestra.run.smithi159:> cat /etc/os-release 2024-06-30T13:03:58.136 INFO:teuthology.orchestra.run.smithi159.stdout:NAME="Red Hat Enterprise Linux" 2024-06-30T13:03:58.136 INFO:teuthology.orchestra.run.smithi159.stdout:VERSION="8.6 (Ootpa)" 2024-06-30T13:03:58.136 INFO:teuthology.orchestra.run.smithi159.stdout:ID="rhel" 2024-06-30T13:03:58.136 INFO:teuthology.orchestra.run.smithi159.stdout:ID_LIKE="fedora" 2024-06-30T13:03:58.136 INFO:teuthology.orchestra.run.smithi159.stdout:VERSION_ID="8.6" 2024-06-30T13:03:58.137 INFO:teuthology.orchestra.run.smithi159.stdout:PLATFORM_ID="platform:el8" 2024-06-30T13:03:58.137 INFO:teuthology.orchestra.run.smithi159.stdout:PRETTY_NAME="Red Hat Enterprise Linux 8.6 (Ootpa)" 2024-06-30T13:03:58.137 INFO:teuthology.orchestra.run.smithi159.stdout:ANSI_COLOR="0;31" 2024-06-30T13:03:58.137 INFO:teuthology.orchestra.run.smithi159.stdout:CPE_NAME="cpe:/o:redhat:enterprise_linux:8::baseos" 2024-06-30T13:03:58.137 INFO:teuthology.orchestra.run.smithi159.stdout:HOME_URL="https://www.redhat.com/" 2024-06-30T13:03:58.137 INFO:teuthology.orchestra.run.smithi159.stdout:DOCUMENTATION_URL="https://access.redhat.com/documentation/red_hat_enterprise_linux/8/" 2024-06-30T13:03:58.137 INFO:teuthology.orchestra.run.smithi159.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-06-30T13:03:58.137 INFO:teuthology.orchestra.run.smithi159.stdout: 2024-06-30T13:03:58.137 INFO:teuthology.orchestra.run.smithi159.stdout:REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 8" 2024-06-30T13:03:58.137 INFO:teuthology.orchestra.run.smithi159.stdout:REDHAT_BUGZILLA_PRODUCT_VERSION=8.6 2024-06-30T13:03:58.137 INFO:teuthology.orchestra.run.smithi159.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux" 2024-06-30T13:03:58.137 INFO:teuthology.orchestra.run.smithi159.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="8.6" 2024-06-30T13:03:58.137 INFO:teuthology.lock.ops:Updating smithi159.front.sepia.ceph.com on lock server 2024-06-30T13:03:58.164 DEBUG:teuthology.orchestra.run.smithi189:> uname -m 2024-06-30T13:03:58.185 INFO:teuthology.orchestra.run.smithi189.stdout:x86_64 2024-06-30T13:03:58.186 DEBUG:teuthology.orchestra.run.smithi189:> cat /etc/os-release 2024-06-30T13:03:58.244 INFO:teuthology.orchestra.run.smithi189.stdout:NAME="Red Hat Enterprise Linux" 2024-06-30T13:03:58.244 INFO:teuthology.orchestra.run.smithi189.stdout:VERSION="8.6 (Ootpa)" 2024-06-30T13:03:58.244 INFO:teuthology.orchestra.run.smithi189.stdout:ID="rhel" 2024-06-30T13:03:58.245 INFO:teuthology.orchestra.run.smithi189.stdout:ID_LIKE="fedora" 2024-06-30T13:03:58.245 INFO:teuthology.orchestra.run.smithi189.stdout:VERSION_ID="8.6" 2024-06-30T13:03:58.245 INFO:teuthology.orchestra.run.smithi189.stdout:PLATFORM_ID="platform:el8" 2024-06-30T13:03:58.245 INFO:teuthology.orchestra.run.smithi189.stdout:PRETTY_NAME="Red Hat Enterprise Linux 8.6 (Ootpa)" 2024-06-30T13:03:58.245 INFO:teuthology.orchestra.run.smithi189.stdout:ANSI_COLOR="0;31" 2024-06-30T13:03:58.245 INFO:teuthology.orchestra.run.smithi189.stdout:CPE_NAME="cpe:/o:redhat:enterprise_linux:8::baseos" 2024-06-30T13:03:58.245 INFO:teuthology.orchestra.run.smithi189.stdout:HOME_URL="https://www.redhat.com/" 2024-06-30T13:03:58.245 INFO:teuthology.orchestra.run.smithi189.stdout:DOCUMENTATION_URL="https://access.redhat.com/documentation/red_hat_enterprise_linux/8/" 2024-06-30T13:03:58.245 INFO:teuthology.orchestra.run.smithi189.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-06-30T13:03:58.245 INFO:teuthology.orchestra.run.smithi189.stdout: 2024-06-30T13:03:58.245 INFO:teuthology.orchestra.run.smithi189.stdout:REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 8" 2024-06-30T13:03:58.245 INFO:teuthology.orchestra.run.smithi189.stdout:REDHAT_BUGZILLA_PRODUCT_VERSION=8.6 2024-06-30T13:03:58.245 INFO:teuthology.orchestra.run.smithi189.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux" 2024-06-30T13:03:58.245 INFO:teuthology.orchestra.run.smithi189.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="8.6" 2024-06-30T13:03:58.246 INFO:teuthology.lock.ops:Updating smithi189.front.sepia.ceph.com on lock server 2024-06-30T13:03:58.264 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-06-30T13:03:58.272 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-06-30T13:03:58.277 INFO:teuthology.task.internal:Checking for old test directory... 2024-06-30T13:03:58.277 DEBUG:teuthology.orchestra.run.smithi003:> test '!' -e /home/ubuntu/cephtest 2024-06-30T13:03:58.280 DEBUG:teuthology.orchestra.run.smithi159:> test '!' -e /home/ubuntu/cephtest 2024-06-30T13:03:58.282 DEBUG:teuthology.orchestra.run.smithi189:> test '!' -e /home/ubuntu/cephtest 2024-06-30T13:03:58.303 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-06-30T13:03:58.308 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-06-30T13:03:58.308 DEBUG:teuthology.orchestra.run.smithi003:> test -z $(ls -A /var/lib/ceph) 2024-06-30T13:03:58.340 DEBUG:teuthology.orchestra.run.smithi159:> test -z $(ls -A /var/lib/ceph) 2024-06-30T13:03:58.342 DEBUG:teuthology.orchestra.run.smithi189:> test -z $(ls -A /var/lib/ceph) 2024-06-30T13:03:58.371 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-06-30T13:03:58.438 INFO:teuthology.run_tasks:Running task kernel... 2024-06-30T13:03:58.452 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-06-30T13:03:58.452 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-06-30T13:03:58.452 DEBUG:teuthology.orchestra.run.smithi003:> test -f /run/.containerenv -o -f /.dockerenv 2024-06-30T13:03:58.453 DEBUG:teuthology.orchestra.run.smithi159:> test -f /run/.containerenv -o -f /.dockerenv 2024-06-30T13:03:58.453 DEBUG:teuthology.orchestra.run.smithi189:> test -f /run/.containerenv -o -f /.dockerenv 2024-06-30T13:03:58.471 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-06-30T13:03:58.471 DEBUG:teuthology.orchestra.run.smithi189:> uname -r 2024-06-30T13:03:58.472 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-06-30T13:03:58.472 DEBUG:teuthology.orchestra.run.smithi159:> uname -r 2024-06-30T13:03:58.473 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-06-30T13:03:58.473 DEBUG:teuthology.orchestra.run.smithi003:> uname -r 2024-06-30T13:03:58.529 INFO:teuthology.orchestra.run.smithi189.stdout:4.18.0-513.9.1.el8_9.x86_64 2024-06-30T13:03:58.530 INFO:teuthology.task.kernel:Running kernel on smithi189: 4.18.0-513.9.1.el8_9.x86_64 2024-06-30T13:03:58.530 DEBUG:teuthology.orchestra.run.smithi189:> sudo yum install -y kernel 2024-06-30T13:03:58.532 INFO:teuthology.orchestra.run.smithi159.stdout:4.18.0-513.9.1.el8_9.x86_64 2024-06-30T13:03:58.532 INFO:teuthology.task.kernel:Running kernel on smithi159: 4.18.0-513.9.1.el8_9.x86_64 2024-06-30T13:03:58.532 DEBUG:teuthology.orchestra.run.smithi159:> sudo yum install -y kernel 2024-06-30T13:03:58.534 INFO:teuthology.orchestra.run.smithi003.stdout:4.18.0-513.9.1.el8_9.x86_64 2024-06-30T13:03:58.534 INFO:teuthology.task.kernel:Running kernel on smithi003: 4.18.0-513.9.1.el8_9.x86_64 2024-06-30T13:03:58.534 DEBUG:teuthology.orchestra.run.smithi003:> sudo yum install -y kernel 2024-06-30T13:04:00.008 INFO:teuthology.orchestra.run.smithi189.stdout:Updating Subscription Management repositories. 2024-06-30T13:04:00.008 INFO:teuthology.orchestra.run.smithi189.stdout:Unable to read consumer identity 2024-06-30T13:04:00.103 INFO:teuthology.orchestra.run.smithi003.stdout:Updating Subscription Management repositories. 2024-06-30T13:04:00.104 INFO:teuthology.orchestra.run.smithi003.stdout:Unable to read consumer identity 2024-06-30T13:04:00.156 INFO:teuthology.orchestra.run.smithi159.stdout:Updating Subscription Management repositories. 2024-06-30T13:04:00.156 INFO:teuthology.orchestra.run.smithi159.stdout:Unable to read consumer identity 2024-06-30T13:04:00.430 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-06-30T13:04:00.430 INFO:teuthology.orchestra.run.smithi003.stdout:This system is not registered with an entitlement server. You can use subscription-manager to register. 2024-06-30T13:04:00.430 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-06-30T13:04:00.436 INFO:teuthology.orchestra.run.smithi189.stdout: 2024-06-30T13:04:00.436 INFO:teuthology.orchestra.run.smithi189.stdout:This system is not registered with an entitlement server. You can use subscription-manager to register. 2024-06-30T13:04:00.436 INFO:teuthology.orchestra.run.smithi189.stdout: 2024-06-30T13:04:00.479 INFO:teuthology.orchestra.run.smithi159.stdout: 2024-06-30T13:04:00.479 INFO:teuthology.orchestra.run.smithi159.stdout:This system is not registered with an entitlement server. You can use subscription-manager to register. 2024-06-30T13:04:00.479 INFO:teuthology.orchestra.run.smithi159.stdout: 2024-06-30T13:04:02.063 INFO:teuthology.orchestra.run.smithi003.stdout:Copr repo for python3-asyncssh owned by ceph 18 kB/s | 3.5 kB 00:00 2024-06-30T13:04:02.094 INFO:teuthology.orchestra.run.smithi189.stdout:Copr repo for python3-asyncssh owned by ceph 23 kB/s | 3.5 kB 00:00 2024-06-30T13:04:02.235 INFO:teuthology.orchestra.run.smithi159.stdout:Copr repo for python3-asyncssh owned by ceph 14 kB/s | 3.5 kB 00:00 2024-06-30T13:04:02.799 INFO:teuthology.orchestra.run.smithi003.stdout:Extra Packages for Enterprise Linux 19 MB/s | 14 MB 00:00 2024-06-30T13:04:02.863 INFO:teuthology.orchestra.run.smithi159.stdout:Extra Packages for Enterprise Linux 25 MB/s | 14 MB 00:00 2024-06-30T13:04:02.998 INFO:teuthology.orchestra.run.smithi189.stdout:Extra Packages for Enterprise Linux 16 MB/s | 14 MB 00:00 2024-06-30T13:04:07.011 INFO:teuthology.orchestra.run.smithi159.stdout:lab-extras 393 kB/s | 24 kB 00:00 2024-06-30T13:04:07.104 INFO:teuthology.orchestra.run.smithi189.stdout:lab-extras 442 kB/s | 24 kB 00:00 2024-06-30T13:04:07.701 INFO:teuthology.orchestra.run.smithi003.stdout:lab-extras 313 kB/s | 24 kB 00:00 2024-06-30T13:04:07.755 INFO:teuthology.orchestra.run.smithi159.stdout:Package kernel-4.18.0-513.9.1.el8_9.x86_64 is already installed. 2024-06-30T13:04:07.755 INFO:teuthology.orchestra.run.smithi159.stdout:Package kernel-4.18.0-372.9.1.el8.x86_64 is already installed. 2024-06-30T13:04:07.821 INFO:teuthology.orchestra.run.smithi159.stdout:Dependencies resolved. 2024-06-30T13:04:07.822 INFO:teuthology.orchestra.run.smithi159.stdout:Nothing to do. 2024-06-30T13:04:07.823 INFO:teuthology.orchestra.run.smithi159.stdout:Complete! 2024-06-30T13:04:07.848 INFO:teuthology.orchestra.run.smithi189.stdout:Package kernel-4.18.0-513.9.1.el8_9.x86_64 is already installed. 2024-06-30T13:04:07.848 INFO:teuthology.orchestra.run.smithi189.stdout:Package kernel-4.18.0-372.9.1.el8.x86_64 is already installed. 2024-06-30T13:04:07.921 INFO:teuthology.orchestra.run.smithi189.stdout:Dependencies resolved. 2024-06-30T13:04:07.922 INFO:teuthology.orchestra.run.smithi189.stdout:Nothing to do. 2024-06-30T13:04:07.922 INFO:teuthology.orchestra.run.smithi189.stdout:Complete! 2024-06-30T13:04:07.953 DEBUG:teuthology.orchestra.run.smithi159:> echo no | sudo yum reinstall kernel || true 2024-06-30T13:04:08.052 DEBUG:teuthology.orchestra.run.smithi189:> echo no | sudo yum reinstall kernel || true 2024-06-30T13:04:08.331 INFO:teuthology.orchestra.run.smithi159.stdout:Updating Subscription Management repositories. 2024-06-30T13:04:08.332 INFO:teuthology.orchestra.run.smithi159.stdout:Unable to read consumer identity 2024-06-30T13:04:08.428 INFO:teuthology.orchestra.run.smithi189.stdout:Updating Subscription Management repositories. 2024-06-30T13:04:08.428 INFO:teuthology.orchestra.run.smithi189.stdout:Unable to read consumer identity 2024-06-30T13:04:08.533 INFO:teuthology.orchestra.run.smithi003.stdout:Package kernel-4.18.0-513.9.1.el8_9.x86_64 is already installed. 2024-06-30T13:04:08.533 INFO:teuthology.orchestra.run.smithi003.stdout:Package kernel-4.18.0-372.9.1.el8.x86_64 is already installed. 2024-06-30T13:04:08.602 INFO:teuthology.orchestra.run.smithi159.stdout: 2024-06-30T13:04:08.602 INFO:teuthology.orchestra.run.smithi159.stdout:This system is not registered with an entitlement server. You can use subscription-manager to register. 2024-06-30T13:04:08.602 INFO:teuthology.orchestra.run.smithi159.stdout: 2024-06-30T13:04:08.617 INFO:teuthology.orchestra.run.smithi003.stdout:Dependencies resolved. 2024-06-30T13:04:08.619 INFO:teuthology.orchestra.run.smithi003.stdout:Nothing to do. 2024-06-30T13:04:08.619 INFO:teuthology.orchestra.run.smithi003.stdout:Complete! 2024-06-30T13:04:08.648 INFO:teuthology.orchestra.run.smithi189.stdout: 2024-06-30T13:04:08.648 INFO:teuthology.orchestra.run.smithi189.stdout:This system is not registered with an entitlement server. You can use subscription-manager to register. 2024-06-30T13:04:08.648 INFO:teuthology.orchestra.run.smithi189.stdout: 2024-06-30T13:04:08.790 DEBUG:teuthology.orchestra.run.smithi003:> echo no | sudo yum reinstall kernel || true 2024-06-30T13:04:08.915 INFO:teuthology.orchestra.run.smithi159.stdout:Last metadata expiration check: 0:00:02 ago on Sun 30 Jun 2024 01:04:06 PM UTC. 2024-06-30T13:04:08.960 INFO:teuthology.orchestra.run.smithi189.stdout:Last metadata expiration check: 0:00:01 ago on Sun 30 Jun 2024 01:04:07 PM UTC. 2024-06-30T13:04:08.992 INFO:teuthology.orchestra.run.smithi159.stdout:Installed package kernel-4.18.0-513.9.1.el8_9.x86_64 (from rhel-8-for-x86_64-baseos-rpms) not available. 2024-06-30T13:04:09.000 INFO:teuthology.orchestra.run.smithi159.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2024-06-30T13:04:09.032 INFO:teuthology.orchestra.run.smithi189.stdout:Installed package kernel-4.18.0-513.9.1.el8_9.x86_64 (from rhel-8-for-x86_64-baseos-rpms) not available. 2024-06-30T13:04:09.045 INFO:teuthology.orchestra.run.smithi159.stderr:Error: No packages marked for reinstall. 2024-06-30T13:04:09.048 INFO:teuthology.orchestra.run.smithi189.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2024-06-30T13:04:09.092 DEBUG:teuthology.orchestra.run.smithi159:> sudo yum reinstall -y kernel || true 2024-06-30T13:04:09.094 INFO:teuthology.orchestra.run.smithi189.stderr:Error: No packages marked for reinstall. 2024-06-30T13:04:09.141 DEBUG:teuthology.orchestra.run.smithi189:> sudo yum reinstall -y kernel || true 2024-06-30T13:04:09.178 INFO:teuthology.orchestra.run.smithi003.stdout:Updating Subscription Management repositories. 2024-06-30T13:04:09.178 INFO:teuthology.orchestra.run.smithi003.stdout:Unable to read consumer identity 2024-06-30T13:04:09.383 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-06-30T13:04:09.383 INFO:teuthology.orchestra.run.smithi003.stdout:This system is not registered with an entitlement server. You can use subscription-manager to register. 2024-06-30T13:04:09.383 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-06-30T13:04:09.428 INFO:teuthology.orchestra.run.smithi159.stdout:Updating Subscription Management repositories. 2024-06-30T13:04:09.428 INFO:teuthology.orchestra.run.smithi159.stdout:Unable to read consumer identity 2024-06-30T13:04:09.474 INFO:teuthology.orchestra.run.smithi189.stdout:Updating Subscription Management repositories. 2024-06-30T13:04:09.474 INFO:teuthology.orchestra.run.smithi189.stdout:Unable to read consumer identity 2024-06-30T13:04:09.621 INFO:teuthology.orchestra.run.smithi159.stdout: 2024-06-30T13:04:09.621 INFO:teuthology.orchestra.run.smithi159.stdout:This system is not registered with an entitlement server. You can use subscription-manager to register. 2024-06-30T13:04:09.621 INFO:teuthology.orchestra.run.smithi159.stdout: 2024-06-30T13:04:09.719 INFO:teuthology.orchestra.run.smithi189.stdout: 2024-06-30T13:04:09.719 INFO:teuthology.orchestra.run.smithi189.stdout:This system is not registered with an entitlement server. You can use subscription-manager to register. 2024-06-30T13:04:09.719 INFO:teuthology.orchestra.run.smithi189.stdout: 2024-06-30T13:04:09.750 INFO:teuthology.orchestra.run.smithi003.stdout:Last metadata expiration check: 0:00:02 ago on Sun 30 Jun 2024 01:04:07 PM UTC. 2024-06-30T13:04:09.845 INFO:teuthology.orchestra.run.smithi003.stdout:Installed package kernel-4.18.0-513.9.1.el8_9.x86_64 (from rhel-8-for-x86_64-baseos-rpms) not available. 2024-06-30T13:04:09.845 INFO:teuthology.orchestra.run.smithi003.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2024-06-30T13:04:09.884 INFO:teuthology.orchestra.run.smithi003.stderr:Error: No packages marked for reinstall. 2024-06-30T13:04:09.924 INFO:teuthology.orchestra.run.smithi159.stdout:Last metadata expiration check: 0:00:03 ago on Sun 30 Jun 2024 01:04:06 PM UTC. 2024-06-30T13:04:09.939 DEBUG:teuthology.orchestra.run.smithi003:> sudo yum reinstall -y kernel || true 2024-06-30T13:04:09.987 INFO:teuthology.orchestra.run.smithi159.stdout:Installed package kernel-4.18.0-513.9.1.el8_9.x86_64 (from rhel-8-for-x86_64-baseos-rpms) not available. 2024-06-30T13:04:09.987 INFO:teuthology.orchestra.run.smithi159.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2024-06-30T13:04:10.024 INFO:teuthology.orchestra.run.smithi189.stdout:Last metadata expiration check: 0:00:03 ago on Sun 30 Jun 2024 01:04:07 PM UTC. 2024-06-30T13:04:10.026 INFO:teuthology.orchestra.run.smithi159.stderr:Error: No packages marked for reinstall. 2024-06-30T13:04:10.073 DEBUG:teuthology.orchestra.run.smithi159:> rpm -q kernel | sort -rV | head -n 1 2024-06-30T13:04:10.091 INFO:teuthology.orchestra.run.smithi189.stdout:Installed package kernel-4.18.0-513.9.1.el8_9.x86_64 (from rhel-8-for-x86_64-baseos-rpms) not available. 2024-06-30T13:04:10.091 INFO:teuthology.orchestra.run.smithi189.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2024-06-30T13:04:10.133 INFO:teuthology.orchestra.run.smithi189.stderr:Error: No packages marked for reinstall. 2024-06-30T13:04:10.187 DEBUG:teuthology.orchestra.run.smithi189:> rpm -q kernel | sort -rV | head -n 1 2024-06-30T13:04:10.247 INFO:teuthology.orchestra.run.smithi159.stdout:kernel-4.18.0-513.9.1.el8_9.x86_64 2024-06-30T13:04:10.247 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-513.9.1.el8_9.x86_64 2024-06-30T13:04:10.248 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2024-06-30T13:04:10.248 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-06-30T13:04:10.248 DEBUG:teuthology.orchestra.run.smithi159:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-06-30T13:04:10.278 INFO:teuthology.orchestra.run.smithi159.stdout:ttyS1 2024-06-30T13:04:10.297 DEBUG:teuthology.parallel:result is None 2024-06-30T13:04:10.323 INFO:teuthology.orchestra.run.smithi003.stdout:Updating Subscription Management repositories. 2024-06-30T13:04:10.324 INFO:teuthology.orchestra.run.smithi003.stdout:Unable to read consumer identity 2024-06-30T13:04:10.345 INFO:teuthology.orchestra.run.smithi189.stdout:kernel-4.18.0-513.9.1.el8_9.x86_64 2024-06-30T13:04:10.346 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-513.9.1.el8_9.x86_64 2024-06-30T13:04:10.346 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2024-06-30T13:04:10.346 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-06-30T13:04:10.347 DEBUG:teuthology.orchestra.run.smithi189:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-06-30T13:04:10.380 INFO:teuthology.orchestra.run.smithi189.stdout:ttyS1 2024-06-30T13:04:10.392 DEBUG:teuthology.parallel:result is None 2024-06-30T13:04:10.564 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-06-30T13:04:10.565 INFO:teuthology.orchestra.run.smithi003.stdout:This system is not registered with an entitlement server. You can use subscription-manager to register. 2024-06-30T13:04:10.565 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-06-30T13:04:10.922 INFO:teuthology.orchestra.run.smithi003.stdout:Last metadata expiration check: 0:00:03 ago on Sun 30 Jun 2024 01:04:07 PM UTC. 2024-06-30T13:04:10.995 INFO:teuthology.orchestra.run.smithi003.stdout:Installed package kernel-4.18.0-513.9.1.el8_9.x86_64 (from rhel-8-for-x86_64-baseos-rpms) not available. 2024-06-30T13:04:10.995 INFO:teuthology.orchestra.run.smithi003.stdout:Installed package kernel-4.18.0-372.9.1.el8.x86_64 (from anaconda) not available. 2024-06-30T13:04:11.023 INFO:teuthology.orchestra.run.smithi003.stderr:Error: No packages marked for reinstall. 2024-06-30T13:04:11.083 DEBUG:teuthology.orchestra.run.smithi003:> rpm -q kernel | sort -rV | head -n 1 2024-06-30T13:04:11.256 INFO:teuthology.orchestra.run.smithi003.stdout:kernel-4.18.0-513.9.1.el8_9.x86_64 2024-06-30T13:04:11.257 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-513.9.1.el8_9.x86_64 2024-06-30T13:04:11.257 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2024-06-30T13:04:11.257 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-06-30T13:04:11.257 DEBUG:teuthology.orchestra.run.smithi003:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-06-30T13:04:11.290 INFO:teuthology.orchestra.run.smithi003.stdout:ttyS1 2024-06-30T13:04:11.311 DEBUG:teuthology.parallel:result is None 2024-06-30T13:04:11.311 INFO:teuthology.run_tasks:Running task internal.base... 2024-06-30T13:04:11.317 INFO:teuthology.task.internal:Creating test directory... 2024-06-30T13:04:11.318 DEBUG:teuthology.orchestra.run.smithi003:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-06-30T13:04:11.354 DEBUG:teuthology.orchestra.run.smithi159:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-06-30T13:04:11.356 DEBUG:teuthology.orchestra.run.smithi189:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-06-30T13:04:11.377 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-06-30T13:04:11.383 INFO:teuthology.run_tasks:Running task internal.archive... 2024-06-30T13:04:11.388 INFO:teuthology.task.internal:Creating archive directory... 2024-06-30T13:04:11.388 DEBUG:teuthology.orchestra.run.smithi003:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-06-30T13:04:11.415 DEBUG:teuthology.orchestra.run.smithi159:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-06-30T13:04:11.417 DEBUG:teuthology.orchestra.run.smithi189:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-06-30T13:04:11.468 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-06-30T13:04:11.474 INFO:teuthology.task.internal:Enabling coredump saving... 2024-06-30T13:04:11.474 DEBUG:teuthology.orchestra.run.smithi003:> 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-06-30T13:04:11.484 DEBUG:teuthology.orchestra.run.smithi159:> 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-06-30T13:04:11.488 DEBUG:teuthology.orchestra.run.smithi189:> 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-06-30T13:04:11.526 INFO:teuthology.orchestra.run.smithi189.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-06-30T13:04:11.533 INFO:teuthology.orchestra.run.smithi159.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-06-30T13:04:11.534 INFO:teuthology.orchestra.run.smithi003.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-06-30T13:04:11.538 INFO:teuthology.orchestra.run.smithi189.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-06-30T13:04:11.545 INFO:teuthology.orchestra.run.smithi159.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-06-30T13:04:11.548 INFO:teuthology.orchestra.run.smithi003.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-06-30T13:04:11.550 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-06-30T13:04:11.556 INFO:teuthology.task.internal:Configuring sudo... 2024-06-30T13:04:11.574 DEBUG:teuthology.orchestra.run.smithi003:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-06-30T13:04:11.576 DEBUG:teuthology.orchestra.run.smithi159:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-06-30T13:04:11.579 DEBUG:teuthology.orchestra.run.smithi189:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-06-30T13:04:11.609 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-06-30T13:04:11.618 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-06-30T13:04:11.618 DEBUG:teuthology.orchestra.run.smithi003:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-06-30T13:04:11.652 DEBUG:teuthology.orchestra.run.smithi159:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-06-30T13:04:11.654 DEBUG:teuthology.orchestra.run.smithi189:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-06-30T13:04:11.671 DEBUG:teuthology.orchestra.run.smithi003:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-06-30T13:04:11.760 DEBUG:teuthology.orchestra.run.smithi003:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-06-30T13:04:11.823 DEBUG:teuthology.orchestra.run.smithi003:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-06-30T13:04:11.871 DEBUG:teuthology.orchestra.run.smithi003:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-06-30T13:04:11.919 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-06-30T13:04:11.919 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-06-30T13:04:11.993 DEBUG:teuthology.orchestra.run.smithi159:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-06-30T13:04:12.040 DEBUG:teuthology.orchestra.run.smithi159:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-06-30T13:04:12.096 DEBUG:teuthology.orchestra.run.smithi159:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-06-30T13:04:12.180 DEBUG:teuthology.orchestra.run.smithi159:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-06-30T13:04:12.226 DEBUG:teuthology.orchestra.run.smithi159:> set -ex 2024-06-30T13:04:12.226 DEBUG:teuthology.orchestra.run.smithi159:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-06-30T13:04:12.295 DEBUG:teuthology.orchestra.run.smithi189:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-06-30T13:04:12.340 DEBUG:teuthology.orchestra.run.smithi189:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-06-30T13:04:12.397 DEBUG:teuthology.orchestra.run.smithi189:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-06-30T13:04:12.482 DEBUG:teuthology.orchestra.run.smithi189:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-06-30T13:04:12.527 DEBUG:teuthology.orchestra.run.smithi189:> set -ex 2024-06-30T13:04:12.527 DEBUG:teuthology.orchestra.run.smithi189:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-06-30T13:04:12.596 DEBUG:teuthology.orchestra.run.smithi003:> sudo service rsyslog restart 2024-06-30T13:04:12.599 DEBUG:teuthology.orchestra.run.smithi159:> sudo service rsyslog restart 2024-06-30T13:04:12.601 DEBUG:teuthology.orchestra.run.smithi189:> sudo service rsyslog restart 2024-06-30T13:04:12.647 INFO:teuthology.orchestra.run.smithi159.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-06-30T13:04:12.649 INFO:teuthology.orchestra.run.smithi003.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-06-30T13:04:12.685 INFO:teuthology.orchestra.run.smithi189.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-06-30T13:04:13.138 INFO:teuthology.run_tasks:Running task internal.timer... 2024-06-30T13:04:13.151 INFO:teuthology.task.internal:Starting timer... 2024-06-30T13:04:13.151 INFO:teuthology.run_tasks:Running task pcp... 2024-06-30T13:04:13.192 INFO:teuthology.run_tasks:Running task selinux... 2024-06-30T13:04:13.199 DEBUG:teuthology.task:Applying overrides for task selinux: {'whitelist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-06-30T13:04:13.200 DEBUG:teuthology.orchestra.run.smithi003:> sudo service auditd rotate 2024-06-30T13:04:13.278 INFO:teuthology.orchestra.run.smithi003.stdout:Rotating logs: 2024-06-30T13:04:13.280 DEBUG:teuthology.orchestra.run.smithi159:> sudo service auditd rotate 2024-06-30T13:04:13.346 INFO:teuthology.orchestra.run.smithi159.stdout:Rotating logs: 2024-06-30T13:04:13.349 DEBUG:teuthology.orchestra.run.smithi189:> sudo service auditd rotate 2024-06-30T13:04:13.413 INFO:teuthology.orchestra.run.smithi189.stdout:Rotating logs: 2024-06-30T13:04:13.415 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-06-30T13:04:13.415 DEBUG:teuthology.orchestra.run.smithi003:> /usr/sbin/getenforce 2024-06-30T13:04:13.449 INFO:teuthology.orchestra.run.smithi003.stdout:Permissive 2024-06-30T13:04:13.449 DEBUG:teuthology.orchestra.run.smithi159:> /usr/sbin/getenforce 2024-06-30T13:04:13.471 INFO:teuthology.orchestra.run.smithi159.stdout:Permissive 2024-06-30T13:04:13.471 DEBUG:teuthology.orchestra.run.smithi189:> /usr/sbin/getenforce 2024-06-30T13:04:13.495 INFO:teuthology.orchestra.run.smithi189.stdout:Permissive 2024-06-30T13:04:13.495 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi003.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi159.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi189.front.sepia.ceph.com': 'permissive'} 2024-06-30T13:04:13.495 DEBUG:teuthology.orchestra.run.smithi003:> 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 2024-06-30T13:04:13.524 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-06-30T13:04:13.525 DEBUG:teuthology.orchestra.run.smithi159:> 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 2024-06-30T13:04:13.555 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-06-30T13:04:13.556 DEBUG:teuthology.orchestra.run.smithi189:> 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 2024-06-30T13:04:13.583 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-06-30T13:04:13.584 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-06-30T13:04:13.584 DEBUG:teuthology.orchestra.run.smithi003:> sudo /usr/sbin/setenforce permissive 2024-06-30T13:04:13.619 DEBUG:teuthology.orchestra.run.smithi159:> sudo /usr/sbin/setenforce permissive 2024-06-30T13:04:13.648 DEBUG:teuthology.orchestra.run.smithi189:> sudo /usr/sbin/setenforce permissive 2024-06-30T13:04:13.675 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-06-30T13:04:13.684 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-06-30T13:04:13.686 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-06-30T13:04:13.787 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-06-30T13:04:13.797 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-06-30T13:04:13.798 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi003.front.sepia.ceph.com,smithi159.front.sepia.ceph.com,smithi189.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-06-30T13:15:12.593 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi003.front.sepia.ceph.com'), Remote(name='ubuntu@smithi159.front.sepia.ceph.com'), Remote(name='ubuntu@smithi189.front.sepia.ceph.com')] 2024-06-30T13:15:12.595 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi003.front.sepia.ceph.com' 2024-06-30T13:15:12.596 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi003.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-06-30T13:15:12.680 DEBUG:teuthology.orchestra.run.smithi003:> true 2024-06-30T13:15:12.751 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi003.front.sepia.ceph.com' 2024-06-30T13:15:12.752 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi159.front.sepia.ceph.com' 2024-06-30T13:15:12.752 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi159.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-06-30T13:15:12.828 DEBUG:teuthology.orchestra.run.smithi159:> true 2024-06-30T13:15:12.897 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi159.front.sepia.ceph.com' 2024-06-30T13:15:12.897 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi189.front.sepia.ceph.com' 2024-06-30T13:15:12.898 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi189.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-06-30T13:15:12.971 DEBUG:teuthology.orchestra.run.smithi189:> true 2024-06-30T13:15:13.039 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi189.front.sepia.ceph.com' 2024-06-30T13:15:13.040 INFO:teuthology.run_tasks:Running task clock... 2024-06-30T13:15:13.051 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-06-30T13:15:13.051 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-06-30T13:15:13.052 DEBUG:teuthology.orchestra.run.smithi003:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-06-30T13:15:13.054 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-06-30T13:15:13.054 DEBUG:teuthology.orchestra.run.smithi159:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-06-30T13:15:13.056 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-06-30T13:15:13.057 DEBUG:teuthology.orchestra.run.smithi189:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-06-30T13:15:13.086 INFO:teuthology.orchestra.run.smithi159.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-06-30T13:15:13.091 INFO:teuthology.orchestra.run.smithi003.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-06-30T13:15:13.100 INFO:teuthology.orchestra.run.smithi159.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-06-30T13:15:13.109 INFO:teuthology.orchestra.run.smithi003.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-06-30T13:15:13.112 INFO:teuthology.orchestra.run.smithi189.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-06-30T13:15:13.127 INFO:teuthology.orchestra.run.smithi189.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-06-30T13:15:13.167 INFO:teuthology.orchestra.run.smithi159.stderr:sudo: ntpd: command not found 2024-06-30T13:15:13.179 INFO:teuthology.orchestra.run.smithi159.stdout:506 Cannot talk to daemon 2024-06-30T13:15:13.191 INFO:teuthology.orchestra.run.smithi003.stderr:sudo: ntpd: command not found 2024-06-30T13:15:13.194 INFO:teuthology.orchestra.run.smithi159.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-06-30T13:15:13.206 INFO:teuthology.orchestra.run.smithi003.stdout:506 Cannot talk to daemon 2024-06-30T13:15:13.206 INFO:teuthology.orchestra.run.smithi189.stderr:sudo: ntpd: command not found 2024-06-30T13:15:13.208 INFO:teuthology.orchestra.run.smithi159.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-06-30T13:15:13.218 INFO:teuthology.orchestra.run.smithi189.stdout:506 Cannot talk to daemon 2024-06-30T13:15:13.224 INFO:teuthology.orchestra.run.smithi003.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-06-30T13:15:13.232 INFO:teuthology.orchestra.run.smithi189.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-06-30T13:15:13.241 INFO:teuthology.orchestra.run.smithi003.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-06-30T13:15:13.246 INFO:teuthology.orchestra.run.smithi189.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-06-30T13:15:13.273 INFO:teuthology.orchestra.run.smithi159.stderr:bash: ntpq: command not found 2024-06-30T13:15:13.276 INFO:teuthology.orchestra.run.smithi159.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-06-30T13:15:13.277 INFO:teuthology.orchestra.run.smithi159.stdout:=============================================================================== 2024-06-30T13:15:13.277 INFO:teuthology.orchestra.run.smithi159.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-06-30T13:15:13.277 INFO:teuthology.orchestra.run.smithi159.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-06-30T13:15:13.277 INFO:teuthology.orchestra.run.smithi159.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-06-30T13:15:13.277 INFO:teuthology.orchestra.run.smithi159.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-06-30T13:15:13.325 INFO:teuthology.orchestra.run.smithi189.stderr:bash: ntpq: command not found 2024-06-30T13:15:13.329 INFO:teuthology.orchestra.run.smithi189.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-06-30T13:15:13.329 INFO:teuthology.orchestra.run.smithi189.stdout:=============================================================================== 2024-06-30T13:15:13.329 INFO:teuthology.orchestra.run.smithi189.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-06-30T13:15:13.329 INFO:teuthology.orchestra.run.smithi189.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-06-30T13:15:13.330 INFO:teuthology.orchestra.run.smithi189.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-06-30T13:15:13.330 INFO:teuthology.orchestra.run.smithi189.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-06-30T13:15:13.330 INFO:teuthology.orchestra.run.smithi003.stderr:bash: ntpq: command not found 2024-06-30T13:15:13.334 INFO:teuthology.orchestra.run.smithi003.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-06-30T13:15:13.334 INFO:teuthology.orchestra.run.smithi003.stdout:=============================================================================== 2024-06-30T13:15:13.334 INFO:teuthology.orchestra.run.smithi003.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-06-30T13:15:13.334 INFO:teuthology.orchestra.run.smithi003.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-06-30T13:15:13.334 INFO:teuthology.orchestra.run.smithi003.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-06-30T13:15:13.334 INFO:teuthology.orchestra.run.smithi003.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-06-30T13:15:13.335 INFO:teuthology.run_tasks:Running task pexec... 2024-06-30T13:15:13.345 INFO:teuthology.task.pexec:Executing custom commands... 2024-06-30T13:15:13.345 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi003.front.sepia.ceph.com 2024-06-30T13:15:13.345 DEBUG:teuthology.orchestra.run.smithi003:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-06-30T13:15:13.346 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi159.front.sepia.ceph.com 2024-06-30T13:15:13.346 DEBUG:teuthology.orchestra.run.smithi159:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-06-30T13:15:13.346 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi189.front.sepia.ceph.com 2024-06-30T13:15:13.347 DEBUG:teuthology.orchestra.run.smithi189:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-06-30T13:15:13.725 INFO:teuthology.orchestra.run.smithi159.stdout:Updating Subscription Management repositories. 2024-06-30T13:15:13.747 INFO:teuthology.orchestra.run.smithi189.stdout:Updating Subscription Management repositories. 2024-06-30T13:15:13.809 INFO:teuthology.orchestra.run.smithi003.stdout:Updating Subscription Management repositories. 2024-06-30T13:15:15.592 INFO:teuthology.orchestra.run.smithi159.stdout:Red Hat Enterprise Linux 8 for x86_64 - AppStre 32 kB/s | 4.5 kB 00:00 2024-06-30T13:15:15.643 INFO:teuthology.orchestra.run.smithi189.stdout:Red Hat Enterprise Linux 8 for x86_64 - BaseOS 38 kB/s | 4.1 kB 00:00 2024-06-30T13:15:15.665 INFO:teuthology.orchestra.run.smithi003.stdout:Red Hat Enterprise Linux 8 for x86_64 - AppStre 29 kB/s | 4.5 kB 00:00 2024-06-30T13:15:16.014 INFO:teuthology.orchestra.run.smithi189.stdout:Red Hat Enterprise Linux 8 for x86_64 - AppStre 28 kB/s | 4.5 kB 00:00 2024-06-30T13:15:16.280 INFO:teuthology.orchestra.run.smithi159.stdout:Red Hat Enterprise Linux 8 for x86_64 - BaseOS 30 kB/s | 4.1 kB 00:00 2024-06-30T13:15:16.497 INFO:teuthology.orchestra.run.smithi003.stdout:Red Hat Enterprise Linux 8 for x86_64 - BaseOS 20 kB/s | 4.1 kB 00:00 2024-06-30T13:15:18.935 INFO:teuthology.orchestra.run.smithi189.stdout:Dependencies resolved. 2024-06-30T13:15:18.936 INFO:teuthology.orchestra.run.smithi189.stdout:================================================================================ 2024-06-30T13:15:18.936 INFO:teuthology.orchestra.run.smithi189.stdout: Package Architecture Version Repository Size 2024-06-30T13:15:18.936 INFO:teuthology.orchestra.run.smithi189.stdout:================================================================================ 2024-06-30T13:15:18.936 INFO:teuthology.orchestra.run.smithi189.stdout:Resetting modules: 2024-06-30T13:15:18.936 INFO:teuthology.orchestra.run.smithi189.stdout: container-tools 2024-06-30T13:15:18.936 INFO:teuthology.orchestra.run.smithi189.stdout: 2024-06-30T13:15:18.937 INFO:teuthology.orchestra.run.smithi189.stdout:Transaction Summary 2024-06-30T13:15:18.937 INFO:teuthology.orchestra.run.smithi189.stdout:================================================================================ 2024-06-30T13:15:18.937 INFO:teuthology.orchestra.run.smithi189.stdout: 2024-06-30T13:15:19.153 INFO:teuthology.orchestra.run.smithi159.stdout:Dependencies resolved. 2024-06-30T13:15:19.154 INFO:teuthology.orchestra.run.smithi159.stdout:================================================================================ 2024-06-30T13:15:19.155 INFO:teuthology.orchestra.run.smithi159.stdout: Package Architecture Version Repository Size 2024-06-30T13:15:19.155 INFO:teuthology.orchestra.run.smithi159.stdout:================================================================================ 2024-06-30T13:15:19.155 INFO:teuthology.orchestra.run.smithi159.stdout:Resetting modules: 2024-06-30T13:15:19.155 INFO:teuthology.orchestra.run.smithi159.stdout: container-tools 2024-06-30T13:15:19.155 INFO:teuthology.orchestra.run.smithi159.stdout: 2024-06-30T13:15:19.155 INFO:teuthology.orchestra.run.smithi159.stdout:Transaction Summary 2024-06-30T13:15:19.155 INFO:teuthology.orchestra.run.smithi159.stdout:================================================================================ 2024-06-30T13:15:19.155 INFO:teuthology.orchestra.run.smithi159.stdout: 2024-06-30T13:15:19.895 INFO:teuthology.orchestra.run.smithi003.stdout:Dependencies resolved. 2024-06-30T13:15:19.897 INFO:teuthology.orchestra.run.smithi003.stdout:================================================================================ 2024-06-30T13:15:19.897 INFO:teuthology.orchestra.run.smithi003.stdout: Package Architecture Version Repository Size 2024-06-30T13:15:19.897 INFO:teuthology.orchestra.run.smithi003.stdout:================================================================================ 2024-06-30T13:15:19.897 INFO:teuthology.orchestra.run.smithi003.stdout:Resetting modules: 2024-06-30T13:15:19.897 INFO:teuthology.orchestra.run.smithi003.stdout: container-tools 2024-06-30T13:15:19.898 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-06-30T13:15:19.898 INFO:teuthology.orchestra.run.smithi003.stdout:Transaction Summary 2024-06-30T13:15:19.898 INFO:teuthology.orchestra.run.smithi003.stdout:================================================================================ 2024-06-30T13:15:19.898 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-06-30T13:15:32.630 INFO:teuthology.orchestra.run.smithi003.stdout:Complete! 2024-06-30T13:15:33.169 INFO:teuthology.orchestra.run.smithi003.stdout:Updating Subscription Management repositories. 2024-06-30T13:15:33.705 INFO:teuthology.orchestra.run.smithi189.stdout:Complete! 2024-06-30T13:15:33.970 INFO:teuthology.orchestra.run.smithi159.stdout:Complete! 2024-06-30T13:15:34.183 INFO:teuthology.orchestra.run.smithi189.stdout:Updating Subscription Management repositories. 2024-06-30T13:15:34.438 INFO:teuthology.orchestra.run.smithi159.stdout:Updating Subscription Management repositories. 2024-06-30T13:15:35.022 INFO:teuthology.orchestra.run.smithi003.stdout:Red Hat Enterprise Linux 8 for x86_64 - AppStre 50 kB/s | 4.5 kB 00:00 2024-06-30T13:15:35.864 INFO:teuthology.orchestra.run.smithi003.stdout:Red Hat Enterprise Linux 8 for x86_64 - BaseOS 18 kB/s | 4.1 kB 00:00 2024-06-30T13:15:36.160 INFO:teuthology.orchestra.run.smithi189.stdout:Red Hat Enterprise Linux 8 for x86_64 - BaseOS 26 kB/s | 4.1 kB 00:00 2024-06-30T13:15:36.346 INFO:teuthology.orchestra.run.smithi159.stdout:Red Hat Enterprise Linux 8 for x86_64 - AppStre 43 kB/s | 4.5 kB 00:00 2024-06-30T13:15:36.481 INFO:teuthology.orchestra.run.smithi189.stdout:Red Hat Enterprise Linux 8 for x86_64 - AppStre 37 kB/s | 4.5 kB 00:00 2024-06-30T13:15:37.000 INFO:teuthology.orchestra.run.smithi159.stdout:Red Hat Enterprise Linux 8 for x86_64 - BaseOS 38 kB/s | 4.1 kB 00:00 2024-06-30T13:15:39.162 INFO:teuthology.orchestra.run.smithi003.stdout:Dependencies resolved. 2024-06-30T13:15:39.345 INFO:teuthology.orchestra.run.smithi003.stdout:========================================================================================================================== 2024-06-30T13:15:39.345 INFO:teuthology.orchestra.run.smithi003.stdout: Package Arch Version Repository Size 2024-06-30T13:15:39.346 INFO:teuthology.orchestra.run.smithi003.stdout:========================================================================================================================== 2024-06-30T13:15:39.346 INFO:teuthology.orchestra.run.smithi003.stdout:Installing group/module packages: 2024-06-30T13:15:39.346 INFO:teuthology.orchestra.run.smithi003.stdout: buildah x86_64 1.19.9-6.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 6.6 M 2024-06-30T13:15:39.346 INFO:teuthology.orchestra.run.smithi003.stdout: cockpit-podman noarch 29-2.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 1.1 M 2024-06-30T13:15:39.346 INFO:teuthology.orchestra.run.smithi003.stdout: crun x86_64 0.18-3.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 185 k 2024-06-30T13:15:39.346 INFO:teuthology.orchestra.run.smithi003.stdout: skopeo x86_64 1:1.2.4-2.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 6.2 M 2024-06-30T13:15:39.346 INFO:teuthology.orchestra.run.smithi003.stdout: toolbox x86_64 0.0.99.3-1.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 2.2 M 2024-06-30T13:15:39.346 INFO:teuthology.orchestra.run.smithi003.stdout: udica noarch 0.2.4-1.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 51 k 2024-06-30T13:15:39.346 INFO:teuthology.orchestra.run.smithi003.stdout:Installing dependencies: 2024-06-30T13:15:39.346 INFO:teuthology.orchestra.run.smithi003.stdout: yajl x86_64 2.1.0-12.el8 rhel-8-for-x86_64-appstream-rpms 41 k 2024-06-30T13:15:39.346 INFO:teuthology.orchestra.run.smithi003.stdout:Downgrading: 2024-06-30T13:15:39.346 INFO:teuthology.orchestra.run.smithi003.stdout: conmon x86_64 2:2.0.26-3.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 51 k 2024-06-30T13:15:39.347 INFO:teuthology.orchestra.run.smithi003.stdout: container-selinux noarch 2:2.189.0-1.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 55 k 2024-06-30T13:15:39.347 INFO:teuthology.orchestra.run.smithi003.stdout: containernetworking-plugins x86_64 0.9.1-1.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 19 M 2024-06-30T13:15:39.347 INFO:teuthology.orchestra.run.smithi003.stdout: containers-common x86_64 1:1.2.4-2.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 91 k 2024-06-30T13:15:39.347 INFO:teuthology.orchestra.run.smithi003.stdout: criu x86_64 3.15-1.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 511 k 2024-06-30T13:15:39.347 INFO:teuthology.orchestra.run.smithi003.stdout: fuse-overlayfs x86_64 1.4.0-2.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 72 k 2024-06-30T13:15:39.347 INFO:teuthology.orchestra.run.smithi003.stdout: libslirp x86_64 4.3.1-1.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 69 k 2024-06-30T13:15:39.347 INFO:teuthology.orchestra.run.smithi003.stdout: podman x86_64 3.0.1-15.module+el8.7.0+18021+1e286cc8 rhel-8-for-x86_64-appstream-rpms 11 M 2024-06-30T13:15:39.347 INFO:teuthology.orchestra.run.smithi003.stdout: podman-catatonit x86_64 3.0.1-15.module+el8.7.0+18021+1e286cc8 rhel-8-for-x86_64-appstream-rpms 323 k 2024-06-30T13:15:39.347 INFO:teuthology.orchestra.run.smithi003.stdout: podman-docker noarch 3.0.1-15.module+el8.7.0+18021+1e286cc8 rhel-8-for-x86_64-appstream-rpms 57 k 2024-06-30T13:15:39.347 INFO:teuthology.orchestra.run.smithi003.stdout: runc x86_64 1.0.0-73.rc95.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 2.9 M 2024-06-30T13:15:39.347 INFO:teuthology.orchestra.run.smithi003.stdout: slirp4netns x86_64 1.1.8-1.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 51 k 2024-06-30T13:15:39.347 INFO:teuthology.orchestra.run.smithi003.stdout:Installing module profiles: 2024-06-30T13:15:39.347 INFO:teuthology.orchestra.run.smithi003.stdout: container-tools/common 2024-06-30T13:15:39.347 INFO:teuthology.orchestra.run.smithi003.stdout:Enabling module streams: 2024-06-30T13:15:39.348 INFO:teuthology.orchestra.run.smithi003.stdout: container-tools 3.0 2024-06-30T13:15:39.348 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-06-30T13:15:39.348 INFO:teuthology.orchestra.run.smithi003.stdout:Transaction Summary 2024-06-30T13:15:39.348 INFO:teuthology.orchestra.run.smithi003.stdout:========================================================================================================================== 2024-06-30T13:15:39.348 INFO:teuthology.orchestra.run.smithi003.stdout:Install 7 Packages 2024-06-30T13:15:39.348 INFO:teuthology.orchestra.run.smithi003.stdout:Downgrade 12 Packages 2024-06-30T13:15:39.348 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-06-30T13:15:39.348 INFO:teuthology.orchestra.run.smithi003.stdout:Total download size: 50 M 2024-06-30T13:15:39.349 INFO:teuthology.orchestra.run.smithi003.stdout:Downloading Packages: 2024-06-30T13:15:39.435 INFO:teuthology.orchestra.run.smithi189.stdout:Dependencies resolved. 2024-06-30T13:15:39.515 INFO:teuthology.orchestra.run.smithi003.stdout:(1/19): conmon-2.0.26-3.module+el8.7.0+16533+44 311 kB/s | 51 kB 00:00 2024-06-30T13:15:39.548 INFO:teuthology.orchestra.run.smithi003.stdout:(2/19): criu-3.15-1.module+el8.7.0+16533+44634e 2.5 MB/s | 511 kB 00:00 2024-06-30T13:15:39.598 INFO:teuthology.orchestra.run.smithi189.stdout:========================================================================================================================== 2024-06-30T13:15:39.598 INFO:teuthology.orchestra.run.smithi189.stdout: Package Arch Version Repository Size 2024-06-30T13:15:39.598 INFO:teuthology.orchestra.run.smithi189.stdout:========================================================================================================================== 2024-06-30T13:15:39.598 INFO:teuthology.orchestra.run.smithi189.stdout:Installing group/module packages: 2024-06-30T13:15:39.598 INFO:teuthology.orchestra.run.smithi189.stdout: buildah x86_64 1.19.9-6.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 6.6 M 2024-06-30T13:15:39.598 INFO:teuthology.orchestra.run.smithi189.stdout: cockpit-podman noarch 29-2.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 1.1 M 2024-06-30T13:15:39.598 INFO:teuthology.orchestra.run.smithi189.stdout: crun x86_64 0.18-3.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 185 k 2024-06-30T13:15:39.598 INFO:teuthology.orchestra.run.smithi189.stdout: skopeo x86_64 1:1.2.4-2.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 6.2 M 2024-06-30T13:15:39.598 INFO:teuthology.orchestra.run.smithi189.stdout: toolbox x86_64 0.0.99.3-1.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 2.2 M 2024-06-30T13:15:39.599 INFO:teuthology.orchestra.run.smithi189.stdout: udica noarch 0.2.4-1.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 51 k 2024-06-30T13:15:39.599 INFO:teuthology.orchestra.run.smithi189.stdout:Installing dependencies: 2024-06-30T13:15:39.599 INFO:teuthology.orchestra.run.smithi189.stdout: yajl x86_64 2.1.0-12.el8 rhel-8-for-x86_64-appstream-rpms 41 k 2024-06-30T13:15:39.599 INFO:teuthology.orchestra.run.smithi189.stdout:Downgrading: 2024-06-30T13:15:39.599 INFO:teuthology.orchestra.run.smithi189.stdout: conmon x86_64 2:2.0.26-3.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 51 k 2024-06-30T13:15:39.599 INFO:teuthology.orchestra.run.smithi189.stdout: container-selinux noarch 2:2.189.0-1.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 55 k 2024-06-30T13:15:39.599 INFO:teuthology.orchestra.run.smithi189.stdout: containernetworking-plugins x86_64 0.9.1-1.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 19 M 2024-06-30T13:15:39.599 INFO:teuthology.orchestra.run.smithi189.stdout: containers-common x86_64 1:1.2.4-2.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 91 k 2024-06-30T13:15:39.599 INFO:teuthology.orchestra.run.smithi189.stdout: criu x86_64 3.15-1.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 511 k 2024-06-30T13:15:39.599 INFO:teuthology.orchestra.run.smithi189.stdout: fuse-overlayfs x86_64 1.4.0-2.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 72 k 2024-06-30T13:15:39.599 INFO:teuthology.orchestra.run.smithi189.stdout: libslirp x86_64 4.3.1-1.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 69 k 2024-06-30T13:15:39.600 INFO:teuthology.orchestra.run.smithi189.stdout: podman x86_64 3.0.1-15.module+el8.7.0+18021+1e286cc8 rhel-8-for-x86_64-appstream-rpms 11 M 2024-06-30T13:15:39.600 INFO:teuthology.orchestra.run.smithi189.stdout: podman-catatonit x86_64 3.0.1-15.module+el8.7.0+18021+1e286cc8 rhel-8-for-x86_64-appstream-rpms 323 k 2024-06-30T13:15:39.600 INFO:teuthology.orchestra.run.smithi189.stdout: podman-docker noarch 3.0.1-15.module+el8.7.0+18021+1e286cc8 rhel-8-for-x86_64-appstream-rpms 57 k 2024-06-30T13:15:39.600 INFO:teuthology.orchestra.run.smithi189.stdout: runc x86_64 1.0.0-73.rc95.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 2.9 M 2024-06-30T13:15:39.600 INFO:teuthology.orchestra.run.smithi189.stdout: slirp4netns x86_64 1.1.8-1.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 51 k 2024-06-30T13:15:39.600 INFO:teuthology.orchestra.run.smithi189.stdout:Installing module profiles: 2024-06-30T13:15:39.600 INFO:teuthology.orchestra.run.smithi189.stdout: container-tools/common 2024-06-30T13:15:39.600 INFO:teuthology.orchestra.run.smithi189.stdout:Enabling module streams: 2024-06-30T13:15:39.600 INFO:teuthology.orchestra.run.smithi189.stdout: container-tools 3.0 2024-06-30T13:15:39.600 INFO:teuthology.orchestra.run.smithi189.stdout: 2024-06-30T13:15:39.600 INFO:teuthology.orchestra.run.smithi189.stdout:Transaction Summary 2024-06-30T13:15:39.600 INFO:teuthology.orchestra.run.smithi189.stdout:========================================================================================================================== 2024-06-30T13:15:39.601 INFO:teuthology.orchestra.run.smithi189.stdout:Install 7 Packages 2024-06-30T13:15:39.601 INFO:teuthology.orchestra.run.smithi189.stdout:Downgrade 12 Packages 2024-06-30T13:15:39.601 INFO:teuthology.orchestra.run.smithi189.stdout: 2024-06-30T13:15:39.601 INFO:teuthology.orchestra.run.smithi189.stdout:Total download size: 50 M 2024-06-30T13:15:39.601 INFO:teuthology.orchestra.run.smithi189.stdout:Downloading Packages: 2024-06-30T13:15:39.632 INFO:teuthology.orchestra.run.smithi003.stdout:(3/19): fuse-overlayfs-1.4.0-2.module+el8.7.0+1 617 kB/s | 72 kB 00:00 2024-06-30T13:15:39.682 INFO:teuthology.orchestra.run.smithi003.stdout:(4/19): libslirp-4.3.1-1.module+el8.7.0+16533+4 516 kB/s | 69 kB 00:00 2024-06-30T13:15:39.752 INFO:teuthology.orchestra.run.smithi189.stdout:(1/19): conmon-2.0.26-3.module+el8.7.0+16533+44 341 kB/s | 51 kB 00:00 2024-06-30T13:15:39.819 INFO:teuthology.orchestra.run.smithi189.stdout:(2/19): criu-3.15-1.module+el8.7.0+16533+44634e 2.3 MB/s | 511 kB 00:00 2024-06-30T13:15:39.833 INFO:teuthology.orchestra.run.smithi003.stdout:(5/19): podman-docker-3.0.1-15.module+el8.7.0+1 381 kB/s | 57 kB 00:00 2024-06-30T13:15:39.835 INFO:teuthology.orchestra.run.smithi189.stdout:(3/19): fuse-overlayfs-1.4.0-2.module+el8.7.0+1 862 kB/s | 72 kB 00:00 2024-06-30T13:15:39.945 INFO:teuthology.orchestra.run.smithi189.stdout:(4/19): libslirp-4.3.1-1.module+el8.7.0+16533+4 551 kB/s | 69 kB 00:00 2024-06-30T13:15:39.954 INFO:teuthology.orchestra.run.smithi159.stdout:Dependencies resolved. 2024-06-30T13:15:40.116 INFO:teuthology.orchestra.run.smithi003.stdout:(6/19): containernetworking-plugins-0.9.1-1.mod 24 MB/s | 19 MB 00:00 2024-06-30T13:15:40.124 INFO:teuthology.orchestra.run.smithi159.stdout:========================================================================================================================== 2024-06-30T13:15:40.124 INFO:teuthology.orchestra.run.smithi159.stdout: Package Arch Version Repository Size 2024-06-30T13:15:40.124 INFO:teuthology.orchestra.run.smithi159.stdout:========================================================================================================================== 2024-06-30T13:15:40.124 INFO:teuthology.orchestra.run.smithi159.stdout:Installing group/module packages: 2024-06-30T13:15:40.124 INFO:teuthology.orchestra.run.smithi159.stdout: buildah x86_64 1.19.9-6.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 6.6 M 2024-06-30T13:15:40.124 INFO:teuthology.orchestra.run.smithi159.stdout: cockpit-podman noarch 29-2.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 1.1 M 2024-06-30T13:15:40.124 INFO:teuthology.orchestra.run.smithi159.stdout: crun x86_64 0.18-3.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 185 k 2024-06-30T13:15:40.124 INFO:teuthology.orchestra.run.smithi159.stdout: skopeo x86_64 1:1.2.4-2.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 6.2 M 2024-06-30T13:15:40.124 INFO:teuthology.orchestra.run.smithi159.stdout: toolbox x86_64 0.0.99.3-1.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 2.2 M 2024-06-30T13:15:40.124 INFO:teuthology.orchestra.run.smithi159.stdout: udica noarch 0.2.4-1.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 51 k 2024-06-30T13:15:40.124 INFO:teuthology.orchestra.run.smithi159.stdout:Installing dependencies: 2024-06-30T13:15:40.124 INFO:teuthology.orchestra.run.smithi159.stdout: yajl x86_64 2.1.0-12.el8 rhel-8-for-x86_64-appstream-rpms 41 k 2024-06-30T13:15:40.124 INFO:teuthology.orchestra.run.smithi159.stdout:Downgrading: 2024-06-30T13:15:40.124 INFO:teuthology.orchestra.run.smithi159.stdout: conmon x86_64 2:2.0.26-3.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 51 k 2024-06-30T13:15:40.125 INFO:teuthology.orchestra.run.smithi159.stdout: container-selinux noarch 2:2.189.0-1.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 55 k 2024-06-30T13:15:40.125 INFO:teuthology.orchestra.run.smithi159.stdout: containernetworking-plugins x86_64 0.9.1-1.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 19 M 2024-06-30T13:15:40.125 INFO:teuthology.orchestra.run.smithi159.stdout: containers-common x86_64 1:1.2.4-2.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 91 k 2024-06-30T13:15:40.125 INFO:teuthology.orchestra.run.smithi159.stdout: criu x86_64 3.15-1.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 511 k 2024-06-30T13:15:40.125 INFO:teuthology.orchestra.run.smithi159.stdout: fuse-overlayfs x86_64 1.4.0-2.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 72 k 2024-06-30T13:15:40.125 INFO:teuthology.orchestra.run.smithi159.stdout: libslirp x86_64 4.3.1-1.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 69 k 2024-06-30T13:15:40.125 INFO:teuthology.orchestra.run.smithi159.stdout: podman x86_64 3.0.1-15.module+el8.7.0+18021+1e286cc8 rhel-8-for-x86_64-appstream-rpms 11 M 2024-06-30T13:15:40.125 INFO:teuthology.orchestra.run.smithi159.stdout: podman-catatonit x86_64 3.0.1-15.module+el8.7.0+18021+1e286cc8 rhel-8-for-x86_64-appstream-rpms 323 k 2024-06-30T13:15:40.125 INFO:teuthology.orchestra.run.smithi159.stdout: podman-docker noarch 3.0.1-15.module+el8.7.0+18021+1e286cc8 rhel-8-for-x86_64-appstream-rpms 57 k 2024-06-30T13:15:40.125 INFO:teuthology.orchestra.run.smithi159.stdout: runc x86_64 1.0.0-73.rc95.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 2.9 M 2024-06-30T13:15:40.125 INFO:teuthology.orchestra.run.smithi159.stdout: slirp4netns x86_64 1.1.8-1.module+el8.7.0+16533+44634e24 rhel-8-for-x86_64-appstream-rpms 51 k 2024-06-30T13:15:40.125 INFO:teuthology.orchestra.run.smithi159.stdout:Installing module profiles: 2024-06-30T13:15:40.125 INFO:teuthology.orchestra.run.smithi159.stdout: container-tools/common 2024-06-30T13:15:40.125 INFO:teuthology.orchestra.run.smithi159.stdout:Enabling module streams: 2024-06-30T13:15:40.125 INFO:teuthology.orchestra.run.smithi159.stdout: container-tools 3.0 2024-06-30T13:15:40.126 INFO:teuthology.orchestra.run.smithi159.stdout: 2024-06-30T13:15:40.126 INFO:teuthology.orchestra.run.smithi159.stdout:Transaction Summary 2024-06-30T13:15:40.126 INFO:teuthology.orchestra.run.smithi159.stdout:========================================================================================================================== 2024-06-30T13:15:40.126 INFO:teuthology.orchestra.run.smithi159.stdout:Install 7 Packages 2024-06-30T13:15:40.126 INFO:teuthology.orchestra.run.smithi159.stdout:Downgrade 12 Packages 2024-06-30T13:15:40.126 INFO:teuthology.orchestra.run.smithi159.stdout: 2024-06-30T13:15:40.126 INFO:teuthology.orchestra.run.smithi159.stdout:Total download size: 50 M 2024-06-30T13:15:40.126 INFO:teuthology.orchestra.run.smithi159.stdout:Downloading Packages: 2024-06-30T13:15:40.203 INFO:teuthology.orchestra.run.smithi189.stdout:(5/19): containernetworking-plugins-0.9.1-1.mod 31 MB/s | 19 MB 00:00 2024-06-30T13:15:40.220 INFO:teuthology.orchestra.run.smithi189.stdout:(6/19): podman-docker-3.0.1-15.module+el8.7.0+1 208 kB/s | 57 kB 00:00 2024-06-30T13:15:40.242 INFO:teuthology.orchestra.run.smithi003.stdout:(7/19): podman-3.0.1-15.module+el8.7.0+18021+1e 17 MB/s | 11 MB 00:00 2024-06-30T13:15:40.258 INFO:teuthology.orchestra.run.smithi003.stdout:(8/19): container-selinux-2.189.0-1.module+el8. 388 kB/s | 55 kB 00:00 2024-06-30T13:15:40.308 INFO:teuthology.orchestra.run.smithi159.stdout:(1/19): conmon-2.0.26-3.module+el8.7.0+16533+44 283 kB/s | 51 kB 00:00 2024-06-30T13:15:40.325 INFO:teuthology.orchestra.run.smithi003.stdout:(9/19): runc-1.0.0-73.rc95.module+el8.7.0+16533 5.8 MB/s | 2.9 MB 00:00 2024-06-30T13:15:40.342 INFO:teuthology.orchestra.run.smithi159.stdout:(2/19): criu-3.15-1.module+el8.7.0+16533+44634e 2.3 MB/s | 511 kB 00:00 2024-06-30T13:15:40.350 INFO:teuthology.orchestra.run.smithi003.stdout:(10/19): podman-catatonit-3.0.1-15.module+el8.7 3.4 MB/s | 323 kB 00:00 2024-06-30T13:15:40.367 INFO:teuthology.orchestra.run.smithi003.stdout:(11/19): containers-common-1.2.4-2.module+el8.7 727 kB/s | 91 kB 00:00 2024-06-30T13:15:40.404 INFO:teuthology.orchestra.run.smithi189.stdout:(7/19): podman-3.0.1-15.module+el8.7.0+18021+1e 19 MB/s | 11 MB 00:00 2024-06-30T13:15:40.420 INFO:teuthology.orchestra.run.smithi189.stdout:(8/19): container-selinux-2.189.0-1.module+el8. 274 kB/s | 55 kB 00:00 2024-06-30T13:15:40.442 INFO:teuthology.orchestra.run.smithi159.stdout:(3/19): fuse-overlayfs-1.4.0-2.module+el8.7.0+1 539 kB/s | 72 kB 00:00 2024-06-30T13:15:40.451 INFO:teuthology.orchestra.run.smithi003.stdout:(12/19): slirp4netns-1.1.8-1.module+el8.7.0+165 408 kB/s | 51 kB 00:00 2024-06-30T13:15:40.496 INFO:teuthology.orchestra.run.smithi189.stdout:(9/19): runc-1.0.0-73.rc95.module+el8.7.0+16533 9.8 MB/s | 2.9 MB 00:00 2024-06-30T13:15:40.501 INFO:teuthology.orchestra.run.smithi003.stdout:(13/19): cockpit-podman-29-2.module+el8.7.0+165 7.1 MB/s | 1.1 MB 00:00 2024-06-30T13:15:40.526 INFO:teuthology.orchestra.run.smithi159.stdout:(4/19): libslirp-4.3.1-1.module+el8.7.0+16533+4 376 kB/s | 69 kB 00:00 2024-06-30T13:15:40.526 INFO:teuthology.orchestra.run.smithi003.stdout:(14/19): crun-0.18-3.module+el8.7.0+16533+44634 1.1 MB/s | 185 kB 00:00 2024-06-30T13:15:40.529 INFO:teuthology.orchestra.run.smithi189.stdout:(10/19): podman-catatonit-3.0.1-15.module+el8.7 2.9 MB/s | 323 kB 00:00 2024-06-30T13:15:40.630 INFO:teuthology.orchestra.run.smithi189.stdout:(11/19): containers-common-1.2.4-2.module+el8.7 404 kB/s | 91 kB 00:00 2024-06-30T13:15:40.644 INFO:teuthology.orchestra.run.smithi003.stdout:(15/19): toolbox-0.0.99.3-1.module+el8.7.0+1653 16 MB/s | 2.2 MB 00:00 2024-06-30T13:15:40.655 INFO:teuthology.orchestra.run.smithi189.stdout:(12/19): slirp4netns-1.1.8-1.module+el8.7.0+165 322 kB/s | 51 kB 00:00 2024-06-30T13:15:40.697 INFO:teuthology.orchestra.run.smithi189.stdout:(13/19): cockpit-podman-29-2.module+el8.7.0+165 6.4 MB/s | 1.1 MB 00:00 2024-06-30T13:15:40.727 INFO:teuthology.orchestra.run.smithi003.stdout:(16/19): skopeo-1.2.4-2.module+el8.7.0+16533+44 22 MB/s | 6.2 MB 00:00 2024-06-30T13:15:40.744 INFO:teuthology.orchestra.run.smithi003.stdout:(17/19): udica-0.2.4-1.module+el8.7.0+16533+446 233 kB/s | 51 kB 00:00 2024-06-30T13:15:40.747 INFO:teuthology.orchestra.run.smithi189.stdout:(14/19): crun-0.18-3.module+el8.7.0+16533+44634 1.5 MB/s | 185 kB 00:00 2024-06-30T13:15:40.802 INFO:teuthology.orchestra.run.smithi159.stdout:(5/19): containernetworking-plugins-0.9.1-1.mod 28 MB/s | 19 MB 00:00 2024-06-30T13:15:40.822 INFO:teuthology.orchestra.run.smithi189.stdout:(15/19): toolbox-0.0.99.3-1.module+el8.7.0+1653 18 MB/s | 2.2 MB 00:00 2024-06-30T13:15:40.826 INFO:teuthology.orchestra.run.smithi159.stdout:(6/19): podman-docker-3.0.1-15.module+el8.7.0+1 190 kB/s | 57 kB 00:00 2024-06-30T13:15:40.861 INFO:teuthology.orchestra.run.smithi003.stdout:(18/19): yajl-2.1.0-12.el8.x86_64.rpm 307 kB/s | 41 kB 00:00 2024-06-30T13:15:40.914 INFO:teuthology.orchestra.run.smithi189.stdout:(16/19): skopeo-1.2.4-2.module+el8.7.0+16533+44 24 MB/s | 6.2 MB 00:00 2024-06-30T13:15:40.948 INFO:teuthology.orchestra.run.smithi189.stdout:(17/19): udica-0.2.4-1.module+el8.7.0+16533+446 253 kB/s | 51 kB 00:00 2024-06-30T13:15:40.960 INFO:teuthology.orchestra.run.smithi159.stdout:(7/19): runc-1.0.0-73.rc95.module+el8.7.0+16533 18 MB/s | 2.9 MB 00:00 2024-06-30T13:15:40.961 INFO:teuthology.orchestra.run.smithi003.stdout:(19/19): buildah-1.19.9-6.module+el8.7.0+16533+ 21 MB/s | 6.6 MB 00:00 2024-06-30T13:15:40.962 INFO:teuthology.orchestra.run.smithi003.stdout:-------------------------------------------------------------------------------- 2024-06-30T13:15:40.962 INFO:teuthology.orchestra.run.smithi003.stdout:Total 31 MB/s | 50 MB 00:01 2024-06-30T13:15:40.985 INFO:teuthology.orchestra.run.smithi159.stdout:(8/19): container-selinux-2.189.0-1.module+el8. 346 kB/s | 55 kB 00:00 2024-06-30T13:15:41.056 INFO:teuthology.orchestra.run.smithi189.stdout:(18/19): yajl-2.1.0-12.el8.x86_64.rpm 289 kB/s | 41 kB 00:00 2024-06-30T13:15:41.119 INFO:teuthology.orchestra.run.smithi159.stdout:(9/19): podman-3.0.1-15.module+el8.7.0+18021+1e 16 MB/s | 11 MB 00:00 2024-06-30T13:15:41.131 INFO:teuthology.orchestra.run.smithi189.stdout:(19/19): buildah-1.19.9-6.module+el8.7.0+16533+ 21 MB/s | 6.6 MB 00:00 2024-06-30T13:15:41.132 INFO:teuthology.orchestra.run.smithi189.stdout:-------------------------------------------------------------------------------- 2024-06-30T13:15:41.132 INFO:teuthology.orchestra.run.smithi189.stdout:Total 32 MB/s | 50 MB 00:01 2024-06-30T13:15:41.136 INFO:teuthology.orchestra.run.smithi159.stdout:(10/19): containers-common-1.2.4-2.module+el8.7 520 kB/s | 91 kB 00:00 2024-06-30T13:15:41.162 INFO:teuthology.orchestra.run.smithi159.stdout:(11/19): podman-catatonit-3.0.1-15.module+el8.7 1.8 MB/s | 323 kB 00:00 2024-06-30T13:15:41.211 INFO:teuthology.orchestra.run.smithi159.stdout:(12/19): slirp4netns-1.1.8-1.module+el8.7.0+165 558 kB/s | 51 kB 00:00 2024-06-30T13:15:41.253 INFO:teuthology.orchestra.run.smithi159.stdout:(13/19): cockpit-podman-29-2.module+el8.7.0+165 9.1 MB/s | 1.1 MB 00:00 2024-06-30T13:15:41.312 INFO:teuthology.orchestra.run.smithi159.stdout:(14/19): crun-0.18-3.module+el8.7.0+16533+44634 1.2 MB/s | 185 kB 00:00 2024-06-30T13:15:41.379 INFO:teuthology.orchestra.run.smithi159.stdout:(15/19): toolbox-0.0.99.3-1.module+el8.7.0+1653 18 MB/s | 2.2 MB 00:00 2024-06-30T13:15:41.396 INFO:teuthology.orchestra.run.smithi159.stdout:(16/19): udica-0.2.4-1.module+el8.7.0+16533+446 606 kB/s | 51 kB 00:00 2024-06-30T13:15:41.494 INFO:teuthology.orchestra.run.smithi003.stdout:Running transaction check 2024-06-30T13:15:41.513 INFO:teuthology.orchestra.run.smithi159.stdout:(17/19): yajl-2.1.0-12.el8.x86_64.rpm 350 kB/s | 41 kB 00:00 2024-06-30T13:15:41.544 INFO:teuthology.orchestra.run.smithi003.stdout:Transaction check succeeded. 2024-06-30T13:15:41.544 INFO:teuthology.orchestra.run.smithi003.stdout:Running transaction test 2024-06-30T13:15:41.613 INFO:teuthology.orchestra.run.smithi159.stdout:(18/19): skopeo-1.2.4-2.module+el8.7.0+16533+44 15 MB/s | 6.2 MB 00:00 2024-06-30T13:15:41.617 INFO:teuthology.orchestra.run.smithi189.stdout:Running transaction check 2024-06-30T13:15:41.662 INFO:teuthology.orchestra.run.smithi189.stdout:Transaction check succeeded. 2024-06-30T13:15:41.662 INFO:teuthology.orchestra.run.smithi189.stdout:Running transaction test 2024-06-30T13:15:41.697 INFO:teuthology.orchestra.run.smithi159.stdout:(19/19): buildah-1.19.9-6.module+el8.7.0+16533+ 21 MB/s | 6.6 MB 00:00 2024-06-30T13:15:41.697 INFO:teuthology.orchestra.run.smithi159.stdout:-------------------------------------------------------------------------------- 2024-06-30T13:15:41.697 INFO:teuthology.orchestra.run.smithi159.stdout:Total 32 MB/s | 50 MB 00:01 2024-06-30T13:15:42.015 INFO:teuthology.orchestra.run.smithi003.stdout:Transaction test succeeded. 2024-06-30T13:15:42.025 INFO:teuthology.orchestra.run.smithi003.stdout:Running transaction 2024-06-30T13:15:42.091 INFO:teuthology.orchestra.run.smithi189.stdout:Transaction test succeeded. 2024-06-30T13:15:42.100 INFO:teuthology.orchestra.run.smithi189.stdout:Running transaction 2024-06-30T13:15:42.183 INFO:teuthology.orchestra.run.smithi159.stdout:Running transaction check 2024-06-30T13:15:42.228 INFO:teuthology.orchestra.run.smithi159.stdout:Transaction check succeeded. 2024-06-30T13:15:42.228 INFO:teuthology.orchestra.run.smithi159.stdout:Running transaction test 2024-06-30T13:15:42.654 INFO:teuthology.orchestra.run.smithi159.stdout:Transaction test succeeded. 2024-06-30T13:15:42.663 INFO:teuthology.orchestra.run.smithi159.stdout:Running transaction 2024-06-30T13:15:43.268 INFO:teuthology.orchestra.run.smithi003.stdout: Preparing : 1/1 2024-06-30T13:15:43.287 INFO:teuthology.orchestra.run.smithi003.stdout: Running scriptlet: container-selinux-2:2.189.0-1.module+el8.7.0+16533+4 1/1 2024-06-30T13:15:43.299 INFO:teuthology.orchestra.run.smithi189.stdout: Preparing : 1/1 2024-06-30T13:15:43.305 INFO:teuthology.orchestra.run.smithi003.stdout: Running scriptlet: container-selinux-2:2.189.0-1.module+el8.7.0+16533 1/31 2024-06-30T13:15:43.315 INFO:teuthology.orchestra.run.smithi189.stdout: Running scriptlet: container-selinux-2:2.189.0-1.module+el8.7.0+16533+4 1/1 2024-06-30T13:15:43.331 INFO:teuthology.orchestra.run.smithi189.stdout: Running scriptlet: container-selinux-2:2.189.0-1.module+el8.7.0+16533 1/31 2024-06-30T13:15:43.473 INFO:teuthology.orchestra.run.smithi003.stdout: Downgrading : container-selinux-2:2.189.0-1.module+el8.7.0+16533 1/31 2024-06-30T13:15:43.519 INFO:teuthology.orchestra.run.smithi189.stdout: Downgrading : container-selinux-2:2.189.0-1.module+el8.7.0+16533 1/31 2024-06-30T13:15:43.877 INFO:teuthology.orchestra.run.smithi159.stdout: Preparing : 1/1 2024-06-30T13:15:43.893 INFO:teuthology.orchestra.run.smithi159.stdout: Running scriptlet: container-selinux-2:2.189.0-1.module+el8.7.0+16533+4 1/1 2024-06-30T13:15:43.910 INFO:teuthology.orchestra.run.smithi159.stdout: Running scriptlet: container-selinux-2:2.189.0-1.module+el8.7.0+16533 1/31 2024-06-30T13:15:44.085 INFO:teuthology.orchestra.run.smithi159.stdout: Downgrading : container-selinux-2:2.189.0-1.module+el8.7.0+16533 1/31 2024-06-30T13:16:00.327 INFO:teuthology.orchestra.run.smithi189.stdout: Running scriptlet: container-selinux-2:2.189.0-1.module+el8.7.0+16533 1/31 2024-06-30T13:16:00.558 INFO:teuthology.orchestra.run.smithi189.stdout: Downgrading : fuse-overlayfs-1.4.0-2.module+el8.7.0+16533+44634e 2/31 2024-06-30T13:16:00.576 INFO:teuthology.orchestra.run.smithi189.stdout: Running scriptlet: fuse-overlayfs-1.4.0-2.module+el8.7.0+16533+44634e 2/31 2024-06-30T13:16:00.740 INFO:teuthology.orchestra.run.smithi189.stdout: Installing : yajl-2.1.0-12.el8.x86_64 3/31 2024-06-30T13:16:00.880 INFO:teuthology.orchestra.run.smithi189.stdout: Downgrading : libslirp-4.3.1-1.module+el8.7.0+16533+44634e24.x86 4/31 2024-06-30T13:16:01.049 INFO:teuthology.orchestra.run.smithi189.stdout: Downgrading : slirp4netns-1.1.8-1.module+el8.7.0+16533+44634e24. 5/31 2024-06-30T13:16:01.049 INFO:teuthology.orchestra.run.smithi189.stdout: Downgrading : containers-common-1:1.2.4-2.module+el8.7.0+16533+4 6/31 2024-06-30T13:16:01.049 INFO:teuthology.orchestra.run.smithi189.stdout:warning: /etc/containers/registries.conf created as /etc/containers/registries.conf.rpmnew 2024-06-30T13:16:01.049 INFO:teuthology.orchestra.run.smithi189.stdout: 2024-06-30T13:16:01.149 INFO:teuthology.orchestra.run.smithi159.stdout: Running scriptlet: container-selinux-2:2.189.0-1.module+el8.7.0+16533 1/31 2024-06-30T13:16:01.340 INFO:teuthology.orchestra.run.smithi159.stdout: Downgrading : fuse-overlayfs-1.4.0-2.module+el8.7.0+16533+44634e 2/31 2024-06-30T13:16:01.358 INFO:teuthology.orchestra.run.smithi159.stdout: Running scriptlet: fuse-overlayfs-1.4.0-2.module+el8.7.0+16533+44634e 2/31 2024-06-30T13:16:01.531 INFO:teuthology.orchestra.run.smithi159.stdout: Installing : yajl-2.1.0-12.el8.x86_64 3/31 2024-06-30T13:16:01.679 INFO:teuthology.orchestra.run.smithi159.stdout: Downgrading : libslirp-4.3.1-1.module+el8.7.0+16533+44634e24.x86 4/31 2024-06-30T13:16:01.779 INFO:teuthology.orchestra.run.smithi189.stdout: Downgrading : criu-3.15-1.module+el8.7.0+16533+44634e24.x86_64 7/31 2024-06-30T13:16:01.932 INFO:teuthology.orchestra.run.smithi159.stdout: Downgrading : slirp4netns-1.1.8-1.module+el8.7.0+16533+44634e24. 5/31 2024-06-30T13:16:01.932 INFO:teuthology.orchestra.run.smithi159.stdout: Downgrading : containers-common-1:1.2.4-2.module+el8.7.0+16533+4 6/31 2024-06-30T13:16:01.932 INFO:teuthology.orchestra.run.smithi159.stdout:warning: /etc/containers/registries.conf created as /etc/containers/registries.conf.rpmnew 2024-06-30T13:16:01.932 INFO:teuthology.orchestra.run.smithi159.stdout: 2024-06-30T13:16:02.694 INFO:teuthology.orchestra.run.smithi159.stdout: Downgrading : criu-3.15-1.module+el8.7.0+16533+44634e24.x86_64 7/31 2024-06-30T13:16:03.212 INFO:teuthology.orchestra.run.smithi003.stdout: Running scriptlet: container-selinux-2:2.189.0-1.module+el8.7.0+16533 1/31 2024-06-30T13:16:03.420 INFO:teuthology.orchestra.run.smithi003.stdout: Downgrading : fuse-overlayfs-1.4.0-2.module+el8.7.0+16533+44634e 2/31 2024-06-30T13:16:03.444 INFO:teuthology.orchestra.run.smithi003.stdout: Running scriptlet: fuse-overlayfs-1.4.0-2.module+el8.7.0+16533+44634e 2/31 2024-06-30T13:16:03.482 INFO:teuthology.orchestra.run.smithi189.stdout: Downgrading : runc-1.0.0-73.rc95.module+el8.7.0+16533+44634e24.x 8/31 2024-06-30T13:16:03.604 INFO:teuthology.orchestra.run.smithi003.stdout: Installing : yajl-2.1.0-12.el8.x86_64 3/31 2024-06-30T13:16:03.738 INFO:teuthology.orchestra.run.smithi189.stdout: Downgrading : containernetworking-plugins-0.9.1-1.module+el8.7.0 9/31 2024-06-30T13:16:03.802 INFO:teuthology.orchestra.run.smithi003.stdout: Downgrading : libslirp-4.3.1-1.module+el8.7.0+16533+44634e24.x86 4/31 2024-06-30T13:16:03.966 INFO:teuthology.orchestra.run.smithi189.stdout: Downgrading : conmon-2:2.0.26-3.module+el8.7.0+16533+44634e24.x8 10/31 2024-06-30T13:16:03.973 INFO:teuthology.orchestra.run.smithi003.stdout: Downgrading : slirp4netns-1.1.8-1.module+el8.7.0+16533+44634e24. 5/31 2024-06-30T13:16:03.974 INFO:teuthology.orchestra.run.smithi003.stdout: Downgrading : containers-common-1:1.2.4-2.module+el8.7.0+16533+4 6/31 2024-06-30T13:16:03.974 INFO:teuthology.orchestra.run.smithi003.stdout:warning: /etc/containers/registries.conf created as /etc/containers/registries.conf.rpmnew 2024-06-30T13:16:03.974 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-06-30T13:16:04.383 INFO:teuthology.orchestra.run.smithi159.stdout: Downgrading : runc-1.0.0-73.rc95.module+el8.7.0+16533+44634e24.x 8/31 2024-06-30T13:16:04.663 INFO:teuthology.orchestra.run.smithi159.stdout: Downgrading : containernetworking-plugins-0.9.1-1.module+el8.7.0 9/31 2024-06-30T13:16:04.760 INFO:teuthology.orchestra.run.smithi003.stdout: Downgrading : criu-3.15-1.module+el8.7.0+16533+44634e24.x86_64 7/31 2024-06-30T13:16:04.857 INFO:teuthology.orchestra.run.smithi159.stdout: Downgrading : conmon-2:2.0.26-3.module+el8.7.0+16533+44634e24.x8 10/31 2024-06-30T13:16:05.261 INFO:teuthology.orchestra.run.smithi189.stdout: Downgrading : podman-catatonit-3.0.1-15.module+el8.7.0+18021+1e2 11/31 2024-06-30T13:16:05.513 INFO:teuthology.orchestra.run.smithi189.stdout: Downgrading : podman-3.0.1-15.module+el8.7.0+18021+1e286cc8.x86_ 12/31 2024-06-30T13:16:05.739 INFO:teuthology.orchestra.run.smithi189.stdout: Downgrading : podman-docker-3.0.1-15.module+el8.7.0+18021+1e286c 13/31 2024-06-30T13:16:06.114 INFO:teuthology.orchestra.run.smithi189.stdout: Installing : cockpit-podman-29-2.module+el8.7.0+16533+44634e24. 14/31 2024-06-30T13:16:06.185 INFO:teuthology.orchestra.run.smithi159.stdout: Downgrading : podman-catatonit-3.0.1-15.module+el8.7.0+18021+1e2 11/31 2024-06-30T13:16:06.454 INFO:teuthology.orchestra.run.smithi159.stdout: Downgrading : podman-3.0.1-15.module+el8.7.0+18021+1e286cc8.x86_ 12/31 2024-06-30T13:16:06.592 INFO:teuthology.orchestra.run.smithi003.stdout: Downgrading : runc-1.0.0-73.rc95.module+el8.7.0+16533+44634e24.x 8/31 2024-06-30T13:16:06.722 INFO:teuthology.orchestra.run.smithi159.stdout: Downgrading : podman-docker-3.0.1-15.module+el8.7.0+18021+1e286c 13/31 2024-06-30T13:16:06.804 INFO:teuthology.orchestra.run.smithi189.stdout: Installing : toolbox-0.0.99.3-1.module+el8.7.0+16533+44634e24.x 15/31 2024-06-30T13:16:06.877 INFO:teuthology.orchestra.run.smithi003.stdout: Downgrading : containernetworking-plugins-0.9.1-1.module+el8.7.0 9/31 2024-06-30T13:16:07.054 INFO:teuthology.orchestra.run.smithi159.stdout: Installing : cockpit-podman-29-2.module+el8.7.0+16533+44634e24. 14/31 2024-06-30T13:16:07.115 INFO:teuthology.orchestra.run.smithi003.stdout: Downgrading : conmon-2:2.0.26-3.module+el8.7.0+16533+44634e24.x8 10/31 2024-06-30T13:16:07.468 INFO:teuthology.orchestra.run.smithi189.stdout: Installing : buildah-1.19.9-6.module+el8.7.0+16533+44634e24.x86 16/31 2024-06-30T13:16:07.656 INFO:teuthology.orchestra.run.smithi189.stdout: Installing : skopeo-1:1.2.4-2.module+el8.7.0+16533+44634e24.x86 17/31 2024-06-30T13:16:07.764 INFO:teuthology.orchestra.run.smithi159.stdout: Installing : toolbox-0.0.99.3-1.module+el8.7.0+16533+44634e24.x 15/31 2024-06-30T13:16:07.823 INFO:teuthology.orchestra.run.smithi189.stdout: Installing : crun-0.18-3.module+el8.7.0+16533+44634e24.x86_64 18/31 2024-06-30T13:16:08.031 INFO:teuthology.orchestra.run.smithi189.stdout: Installing : udica-0.2.4-1.module+el8.7.0+16533+44634e24.noarch 19/31 2024-06-30T13:16:08.150 INFO:teuthology.orchestra.run.smithi189.stdout: Cleanup : podman-docker-3:4.6.1-9.module+el8.9.0+21697+6a5e9 20/31 2024-06-30T13:16:08.164 INFO:teuthology.orchestra.run.smithi189.stdout: Running scriptlet: podman-3:4.6.1-9.module+el8.9.0+21697+6a5e98e7.x86 21/31 2024-06-30T13:16:08.165 INFO:teuthology.orchestra.run.smithi189.stdout: Cleanup : podman-3:4.6.1-9.module+el8.9.0+21697+6a5e98e7.x86 21/31 2024-06-30T13:16:08.430 INFO:teuthology.orchestra.run.smithi159.stdout: Installing : buildah-1.19.9-6.module+el8.7.0+16533+44634e24.x86 16/31 2024-06-30T13:16:08.451 INFO:teuthology.orchestra.run.smithi189.stdout: Running scriptlet: podman-3:4.6.1-9.module+el8.9.0+21697+6a5e98e7.x86 21/31 2024-06-30T13:16:08.521 INFO:teuthology.orchestra.run.smithi003.stdout: Downgrading : podman-catatonit-3.0.1-15.module+el8.7.0+18021+1e2 11/31 2024-06-30T13:16:08.621 INFO:teuthology.orchestra.run.smithi159.stdout: Installing : skopeo-1:1.2.4-2.module+el8.7.0+16533+44634e24.x86 17/31 2024-06-30T13:16:08.666 INFO:teuthology.orchestra.run.smithi189.stdout: Cleanup : containers-common-2:1-70.module+el8.9.0+20326+3870 22/31 2024-06-30T13:16:08.666 INFO:teuthology.orchestra.run.smithi189.stdout: Cleanup : container-selinux-2:2.221.0-1.module+el8.9.0+20326 23/31 2024-06-30T13:16:08.780 INFO:teuthology.orchestra.run.smithi159.stdout: Installing : crun-0.18-3.module+el8.7.0+16533+44634e24.x86_64 18/31 2024-06-30T13:16:08.802 INFO:teuthology.orchestra.run.smithi003.stdout: Downgrading : podman-3.0.1-15.module+el8.7.0+18021+1e286cc8.x86_ 12/31 2024-06-30T13:16:08.834 INFO:teuthology.orchestra.run.smithi189.stdout: Running scriptlet: container-selinux-2:2.221.0-1.module+el8.9.0+20326 23/31 2024-06-30T13:16:08.834 INFO:teuthology.orchestra.run.smithi189.stdout: Cleanup : podman-catatonit-3:4.6.1-9.module+el8.9.0+21697+6a 24/31 2024-06-30T13:16:08.958 INFO:teuthology.orchestra.run.smithi189.stdout: Running scriptlet: podman-catatonit-3:4.6.1-9.module+el8.9.0+21697+6a 24/31 2024-06-30T13:16:08.979 INFO:teuthology.orchestra.run.smithi159.stdout: Installing : udica-0.2.4-1.module+el8.7.0+16533+44634e24.noarch 19/31 2024-06-30T13:16:09.078 INFO:teuthology.orchestra.run.smithi003.stdout: Downgrading : podman-docker-3.0.1-15.module+el8.7.0+18021+1e286c 13/31 2024-06-30T13:16:09.107 INFO:teuthology.orchestra.run.smithi159.stdout: Cleanup : podman-docker-3:4.6.1-9.module+el8.9.0+21697+6a5e9 20/31 2024-06-30T13:16:09.117 INFO:teuthology.orchestra.run.smithi189.stdout: Cleanup : slirp4netns-1.2.1-1.module+el8.9.0+20326+387084d0. 25/31 2024-06-30T13:16:09.121 INFO:teuthology.orchestra.run.smithi159.stdout: Running scriptlet: podman-3:4.6.1-9.module+el8.9.0+21697+6a5e98e7.x86 21/31 2024-06-30T13:16:09.121 INFO:teuthology.orchestra.run.smithi159.stdout: Cleanup : podman-3:4.6.1-9.module+el8.9.0+21697+6a5e98e7.x86 21/31 2024-06-30T13:16:09.291 INFO:teuthology.orchestra.run.smithi189.stdout: Cleanup : runc-1:1.1.9-1.module+el8.9.0+20326+387084d0.x86_6 26/31 2024-06-30T13:16:09.437 INFO:teuthology.orchestra.run.smithi003.stdout: Installing : cockpit-podman-29-2.module+el8.7.0+16533+44634e24. 14/31 2024-06-30T13:16:09.449 INFO:teuthology.orchestra.run.smithi189.stdout: Cleanup : criu-3.18-4.module+el8.9.0+20326+387084d0.x86_64 27/31 2024-06-30T13:16:09.470 INFO:teuthology.orchestra.run.smithi159.stdout: Running scriptlet: podman-3:4.6.1-9.module+el8.9.0+21697+6a5e98e7.x86 21/31 2024-06-30T13:16:09.591 INFO:teuthology.orchestra.run.smithi189.stdout: Cleanup : libslirp-4.4.0-1.module+el8.9.0+20326+387084d0.x86 28/31 2024-06-30T13:16:09.669 INFO:teuthology.orchestra.run.smithi159.stdout: Cleanup : containers-common-2:1-70.module+el8.9.0+20326+3870 22/31 2024-06-30T13:16:09.669 INFO:teuthology.orchestra.run.smithi159.stdout: Cleanup : container-selinux-2:2.221.0-1.module+el8.9.0+20326 23/31 2024-06-30T13:16:09.749 INFO:teuthology.orchestra.run.smithi189.stdout: Cleanup : fuse-overlayfs-1.12-1.module+el8.9.0+20326+387084d 29/31 2024-06-30T13:16:09.874 INFO:teuthology.orchestra.run.smithi159.stdout: Running scriptlet: container-selinux-2:2.221.0-1.module+el8.9.0+20326 23/31 2024-06-30T13:16:09.875 INFO:teuthology.orchestra.run.smithi159.stdout: Cleanup : podman-catatonit-3:4.6.1-9.module+el8.9.0+21697+6a 24/31 2024-06-30T13:16:09.936 INFO:teuthology.orchestra.run.smithi189.stdout: Cleanup : conmon-3:2.1.8-1.module+el8.9.0+20326+387084d0.x86 30/31 2024-06-30T13:16:09.936 INFO:teuthology.orchestra.run.smithi189.stdout: Cleanup : containernetworking-plugins-1:1.3.0-4.module+el8.9 31/31 2024-06-30T13:16:10.015 INFO:teuthology.orchestra.run.smithi159.stdout: Running scriptlet: podman-catatonit-3:4.6.1-9.module+el8.9.0+21697+6a 24/31 2024-06-30T13:16:10.141 INFO:teuthology.orchestra.run.smithi189.stdout: Running scriptlet: containernetworking-plugins-1:1.3.0-4.module+el8.9 31/31 2024-06-30T13:16:10.184 INFO:teuthology.orchestra.run.smithi003.stdout: Installing : toolbox-0.0.99.3-1.module+el8.7.0+16533+44634e24.x 15/31 2024-06-30T13:16:10.198 INFO:teuthology.orchestra.run.smithi159.stdout: Cleanup : slirp4netns-1.2.1-1.module+el8.9.0+20326+387084d0. 25/31 2024-06-30T13:16:10.356 INFO:teuthology.orchestra.run.smithi159.stdout: Cleanup : runc-1:1.1.9-1.module+el8.9.0+20326+387084d0.x86_6 26/31 2024-06-30T13:16:10.552 INFO:teuthology.orchestra.run.smithi159.stdout: Cleanup : criu-3.18-4.module+el8.9.0+20326+387084d0.x86_64 27/31 2024-06-30T13:16:10.706 INFO:teuthology.orchestra.run.smithi159.stdout: Cleanup : libslirp-4.4.0-1.module+el8.9.0+20326+387084d0.x86 28/31 2024-06-30T13:16:10.893 INFO:teuthology.orchestra.run.smithi003.stdout: Installing : buildah-1.19.9-6.module+el8.7.0+16533+44634e24.x86 16/31 2024-06-30T13:16:10.923 INFO:teuthology.orchestra.run.smithi159.stdout: Cleanup : fuse-overlayfs-1.12-1.module+el8.9.0+20326+387084d 29/31 2024-06-30T13:16:11.076 INFO:teuthology.orchestra.run.smithi159.stdout: Cleanup : conmon-3:2.1.8-1.module+el8.9.0+20326+387084d0.x86 30/31 2024-06-30T13:16:11.076 INFO:teuthology.orchestra.run.smithi159.stdout: Cleanup : containernetworking-plugins-1:1.3.0-4.module+el8.9 31/31 2024-06-30T13:16:11.078 INFO:teuthology.orchestra.run.smithi003.stdout: Installing : skopeo-1:1.2.4-2.module+el8.7.0+16533+44634e24.x86 17/31 2024-06-30T13:16:11.264 INFO:teuthology.orchestra.run.smithi003.stdout: Installing : crun-0.18-3.module+el8.7.0+16533+44634e24.x86_64 18/31 2024-06-30T13:16:11.306 INFO:teuthology.orchestra.run.smithi159.stdout: Running scriptlet: containernetworking-plugins-1:1.3.0-4.module+el8.9 31/31 2024-06-30T13:16:11.480 INFO:teuthology.orchestra.run.smithi003.stdout: Installing : udica-0.2.4-1.module+el8.7.0+16533+44634e24.noarch 19/31 2024-06-30T13:16:11.621 INFO:teuthology.orchestra.run.smithi003.stdout: Cleanup : podman-docker-3:4.6.1-9.module+el8.9.0+21697+6a5e9 20/31 2024-06-30T13:16:11.640 INFO:teuthology.orchestra.run.smithi003.stdout: Running scriptlet: podman-3:4.6.1-9.module+el8.9.0+21697+6a5e98e7.x86 21/31 2024-06-30T13:16:11.641 INFO:teuthology.orchestra.run.smithi003.stdout: Cleanup : podman-3:4.6.1-9.module+el8.9.0+21697+6a5e98e7.x86 21/31 2024-06-30T13:16:11.955 INFO:teuthology.orchestra.run.smithi003.stdout: Running scriptlet: podman-3:4.6.1-9.module+el8.9.0+21697+6a5e98e7.x86 21/31 2024-06-30T13:16:12.245 INFO:teuthology.orchestra.run.smithi003.stdout: Cleanup : containers-common-2:1-70.module+el8.9.0+20326+3870 22/31 2024-06-30T13:16:12.245 INFO:teuthology.orchestra.run.smithi003.stdout: Cleanup : container-selinux-2:2.221.0-1.module+el8.9.0+20326 23/31 2024-06-30T13:16:12.455 INFO:teuthology.orchestra.run.smithi003.stdout: Running scriptlet: container-selinux-2:2.221.0-1.module+el8.9.0+20326 23/31 2024-06-30T13:16:12.456 INFO:teuthology.orchestra.run.smithi003.stdout: Cleanup : podman-catatonit-3:4.6.1-9.module+el8.9.0+21697+6a 24/31 2024-06-30T13:16:12.612 INFO:teuthology.orchestra.run.smithi003.stdout: Running scriptlet: podman-catatonit-3:4.6.1-9.module+el8.9.0+21697+6a 24/31 2024-06-30T13:16:12.771 INFO:teuthology.orchestra.run.smithi003.stdout: Cleanup : slirp4netns-1.2.1-1.module+el8.9.0+20326+387084d0. 25/31 2024-06-30T13:16:12.936 INFO:teuthology.orchestra.run.smithi003.stdout: Cleanup : runc-1:1.1.9-1.module+el8.9.0+20326+387084d0.x86_6 26/31 2024-06-30T13:16:13.103 INFO:teuthology.orchestra.run.smithi003.stdout: Cleanup : criu-3.18-4.module+el8.9.0+20326+387084d0.x86_64 27/31 2024-06-30T13:16:13.270 INFO:teuthology.orchestra.run.smithi003.stdout: Cleanup : libslirp-4.4.0-1.module+el8.9.0+20326+387084d0.x86 28/31 2024-06-30T13:16:13.420 INFO:teuthology.orchestra.run.smithi003.stdout: Cleanup : fuse-overlayfs-1.12-1.module+el8.9.0+20326+387084d 29/31 2024-06-30T13:16:13.581 INFO:teuthology.orchestra.run.smithi003.stdout: Cleanup : conmon-3:2.1.8-1.module+el8.9.0+20326+387084d0.x86 30/31 2024-06-30T13:16:13.582 INFO:teuthology.orchestra.run.smithi003.stdout: Cleanup : containernetworking-plugins-1:1.3.0-4.module+el8.9 31/31 2024-06-30T13:16:13.786 INFO:teuthology.orchestra.run.smithi003.stdout: Running scriptlet: containernetworking-plugins-1:1.3.0-4.module+el8.9 31/31 2024-06-30T13:16:27.613 INFO:teuthology.orchestra.run.smithi189.stdout: Running scriptlet: container-selinux-2:2.189.0-1.module+el8.7.0+16533 31/31 2024-06-30T13:16:28.044 INFO:teuthology.orchestra.run.smithi189.stdout: Running scriptlet: containernetworking-plugins-1:1.3.0-4.module+el8.9 31/31 2024-06-30T13:16:28.044 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : conmon-2:2.0.26-3.module+el8.7.0+16533+44634e24.x8 1/31 2024-06-30T13:16:28.044 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : conmon-3:2.1.8-1.module+el8.9.0+20326+387084d0.x86 2/31 2024-06-30T13:16:28.044 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : containernetworking-plugins-0.9.1-1.module+el8.7.0 3/31 2024-06-30T13:16:28.044 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : containernetworking-plugins-1:1.3.0-4.module+el8.9 4/31 2024-06-30T13:16:28.044 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : criu-3.15-1.module+el8.7.0+16533+44634e24.x86_64 5/31 2024-06-30T13:16:28.044 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : criu-3.18-4.module+el8.9.0+20326+387084d0.x86_64 6/31 2024-06-30T13:16:28.044 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : fuse-overlayfs-1.4.0-2.module+el8.7.0+16533+44634e 7/31 2024-06-30T13:16:28.044 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : fuse-overlayfs-1.12-1.module+el8.9.0+20326+387084d 8/31 2024-06-30T13:16:28.045 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : libslirp-4.3.1-1.module+el8.7.0+16533+44634e24.x86 9/31 2024-06-30T13:16:28.045 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : libslirp-4.4.0-1.module+el8.9.0+20326+387084d0.x86 10/31 2024-06-30T13:16:28.045 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : podman-3.0.1-15.module+el8.7.0+18021+1e286cc8.x86_ 11/31 2024-06-30T13:16:28.045 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : podman-3:4.6.1-9.module+el8.9.0+21697+6a5e98e7.x86 12/31 2024-06-30T13:16:28.045 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : podman-docker-3.0.1-15.module+el8.7.0+18021+1e286c 13/31 2024-06-30T13:16:28.045 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : podman-docker-3:4.6.1-9.module+el8.9.0+21697+6a5e9 14/31 2024-06-30T13:16:28.045 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : runc-1.0.0-73.rc95.module+el8.7.0+16533+44634e24.x 15/31 2024-06-30T13:16:28.045 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : runc-1:1.1.9-1.module+el8.9.0+20326+387084d0.x86_6 16/31 2024-06-30T13:16:28.045 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : container-selinux-2:2.189.0-1.module+el8.7.0+16533 17/31 2024-06-30T13:16:28.045 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : container-selinux-2:2.221.0-1.module+el8.9.0+20326 18/31 2024-06-30T13:16:28.045 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : containers-common-1:1.2.4-2.module+el8.7.0+16533+4 19/31 2024-06-30T13:16:28.045 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : containers-common-2:1-70.module+el8.9.0+20326+3870 20/31 2024-06-30T13:16:28.045 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : podman-catatonit-3.0.1-15.module+el8.7.0+18021+1e2 21/31 2024-06-30T13:16:28.046 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : podman-catatonit-3:4.6.1-9.module+el8.9.0+21697+6a 22/31 2024-06-30T13:16:28.046 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : slirp4netns-1.1.8-1.module+el8.7.0+16533+44634e24. 23/31 2024-06-30T13:16:28.046 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : slirp4netns-1.2.1-1.module+el8.9.0+20326+387084d0. 24/31 2024-06-30T13:16:28.046 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : cockpit-podman-29-2.module+el8.7.0+16533+44634e24. 25/31 2024-06-30T13:16:28.046 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : crun-0.18-3.module+el8.7.0+16533+44634e24.x86_64 26/31 2024-06-30T13:16:28.046 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : skopeo-1:1.2.4-2.module+el8.7.0+16533+44634e24.x86 27/31 2024-06-30T13:16:28.046 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : toolbox-0.0.99.3-1.module+el8.7.0+16533+44634e24.x 28/31 2024-06-30T13:16:28.046 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : udica-0.2.4-1.module+el8.7.0+16533+44634e24.noarch 29/31 2024-06-30T13:16:28.046 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : buildah-1.19.9-6.module+el8.7.0+16533+44634e24.x86 30/31 2024-06-30T13:16:28.972 INFO:teuthology.orchestra.run.smithi159.stdout: Running scriptlet: container-selinux-2:2.189.0-1.module+el8.7.0+16533 31/31 2024-06-30T13:16:29.401 INFO:teuthology.orchestra.run.smithi159.stdout: Running scriptlet: containernetworking-plugins-1:1.3.0-4.module+el8.9 31/31 2024-06-30T13:16:29.401 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : conmon-2:2.0.26-3.module+el8.7.0+16533+44634e24.x8 1/31 2024-06-30T13:16:29.401 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : conmon-3:2.1.8-1.module+el8.9.0+20326+387084d0.x86 2/31 2024-06-30T13:16:29.401 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : containernetworking-plugins-0.9.1-1.module+el8.7.0 3/31 2024-06-30T13:16:29.401 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : containernetworking-plugins-1:1.3.0-4.module+el8.9 4/31 2024-06-30T13:16:29.401 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : criu-3.15-1.module+el8.7.0+16533+44634e24.x86_64 5/31 2024-06-30T13:16:29.402 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : criu-3.18-4.module+el8.9.0+20326+387084d0.x86_64 6/31 2024-06-30T13:16:29.402 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : fuse-overlayfs-1.4.0-2.module+el8.7.0+16533+44634e 7/31 2024-06-30T13:16:29.402 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : fuse-overlayfs-1.12-1.module+el8.9.0+20326+387084d 8/31 2024-06-30T13:16:29.402 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : libslirp-4.3.1-1.module+el8.7.0+16533+44634e24.x86 9/31 2024-06-30T13:16:29.402 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : libslirp-4.4.0-1.module+el8.9.0+20326+387084d0.x86 10/31 2024-06-30T13:16:29.402 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : podman-3.0.1-15.module+el8.7.0+18021+1e286cc8.x86_ 11/31 2024-06-30T13:16:29.402 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : podman-3:4.6.1-9.module+el8.9.0+21697+6a5e98e7.x86 12/31 2024-06-30T13:16:29.402 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : podman-docker-3.0.1-15.module+el8.7.0+18021+1e286c 13/31 2024-06-30T13:16:29.402 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : podman-docker-3:4.6.1-9.module+el8.9.0+21697+6a5e9 14/31 2024-06-30T13:16:29.402 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : runc-1.0.0-73.rc95.module+el8.7.0+16533+44634e24.x 15/31 2024-06-30T13:16:29.402 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : runc-1:1.1.9-1.module+el8.9.0+20326+387084d0.x86_6 16/31 2024-06-30T13:16:29.402 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : container-selinux-2:2.189.0-1.module+el8.7.0+16533 17/31 2024-06-30T13:16:29.403 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : container-selinux-2:2.221.0-1.module+el8.9.0+20326 18/31 2024-06-30T13:16:29.403 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : containers-common-1:1.2.4-2.module+el8.7.0+16533+4 19/31 2024-06-30T13:16:29.403 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : containers-common-2:1-70.module+el8.9.0+20326+3870 20/31 2024-06-30T13:16:29.403 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : podman-catatonit-3.0.1-15.module+el8.7.0+18021+1e2 21/31 2024-06-30T13:16:29.403 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : podman-catatonit-3:4.6.1-9.module+el8.9.0+21697+6a 22/31 2024-06-30T13:16:29.403 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : slirp4netns-1.1.8-1.module+el8.7.0+16533+44634e24. 23/31 2024-06-30T13:16:29.403 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : slirp4netns-1.2.1-1.module+el8.9.0+20326+387084d0. 24/31 2024-06-30T13:16:29.403 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : cockpit-podman-29-2.module+el8.7.0+16533+44634e24. 25/31 2024-06-30T13:16:29.403 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : crun-0.18-3.module+el8.7.0+16533+44634e24.x86_64 26/31 2024-06-30T13:16:29.403 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : skopeo-1:1.2.4-2.module+el8.7.0+16533+44634e24.x86 27/31 2024-06-30T13:16:29.403 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : toolbox-0.0.99.3-1.module+el8.7.0+16533+44634e24.x 28/31 2024-06-30T13:16:29.403 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : udica-0.2.4-1.module+el8.7.0+16533+44634e24.noarch 29/31 2024-06-30T13:16:29.403 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : buildah-1.19.9-6.module+el8.7.0+16533+44634e24.x86 30/31 2024-06-30T13:16:33.296 INFO:teuthology.orchestra.run.smithi003.stdout: Running scriptlet: container-selinux-2:2.189.0-1.module+el8.7.0+16533 31/31 2024-06-30T13:16:33.800 INFO:teuthology.orchestra.run.smithi003.stdout: Running scriptlet: containernetworking-plugins-1:1.3.0-4.module+el8.9 31/31 2024-06-30T13:16:33.801 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : conmon-2:2.0.26-3.module+el8.7.0+16533+44634e24.x8 1/31 2024-06-30T13:16:33.801 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : conmon-3:2.1.8-1.module+el8.9.0+20326+387084d0.x86 2/31 2024-06-30T13:16:33.801 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : containernetworking-plugins-0.9.1-1.module+el8.7.0 3/31 2024-06-30T13:16:33.801 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : containernetworking-plugins-1:1.3.0-4.module+el8.9 4/31 2024-06-30T13:16:33.801 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : criu-3.15-1.module+el8.7.0+16533+44634e24.x86_64 5/31 2024-06-30T13:16:33.801 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : criu-3.18-4.module+el8.9.0+20326+387084d0.x86_64 6/31 2024-06-30T13:16:33.801 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : fuse-overlayfs-1.4.0-2.module+el8.7.0+16533+44634e 7/31 2024-06-30T13:16:33.801 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : fuse-overlayfs-1.12-1.module+el8.9.0+20326+387084d 8/31 2024-06-30T13:16:33.801 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : libslirp-4.3.1-1.module+el8.7.0+16533+44634e24.x86 9/31 2024-06-30T13:16:33.801 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : libslirp-4.4.0-1.module+el8.9.0+20326+387084d0.x86 10/31 2024-06-30T13:16:33.802 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : podman-3.0.1-15.module+el8.7.0+18021+1e286cc8.x86_ 11/31 2024-06-30T13:16:33.802 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : podman-3:4.6.1-9.module+el8.9.0+21697+6a5e98e7.x86 12/31 2024-06-30T13:16:33.802 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : podman-docker-3.0.1-15.module+el8.7.0+18021+1e286c 13/31 2024-06-30T13:16:33.802 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : podman-docker-3:4.6.1-9.module+el8.9.0+21697+6a5e9 14/31 2024-06-30T13:16:33.802 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : runc-1.0.0-73.rc95.module+el8.7.0+16533+44634e24.x 15/31 2024-06-30T13:16:33.802 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : runc-1:1.1.9-1.module+el8.9.0+20326+387084d0.x86_6 16/31 2024-06-30T13:16:33.802 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : container-selinux-2:2.189.0-1.module+el8.7.0+16533 17/31 2024-06-30T13:16:33.802 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : container-selinux-2:2.221.0-1.module+el8.9.0+20326 18/31 2024-06-30T13:16:33.802 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : containers-common-1:1.2.4-2.module+el8.7.0+16533+4 19/31 2024-06-30T13:16:33.802 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : containers-common-2:1-70.module+el8.9.0+20326+3870 20/31 2024-06-30T13:16:33.802 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : podman-catatonit-3.0.1-15.module+el8.7.0+18021+1e2 21/31 2024-06-30T13:16:33.802 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : podman-catatonit-3:4.6.1-9.module+el8.9.0+21697+6a 22/31 2024-06-30T13:16:33.802 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : slirp4netns-1.1.8-1.module+el8.7.0+16533+44634e24. 23/31 2024-06-30T13:16:33.803 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : slirp4netns-1.2.1-1.module+el8.9.0+20326+387084d0. 24/31 2024-06-30T13:16:33.803 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : cockpit-podman-29-2.module+el8.7.0+16533+44634e24. 25/31 2024-06-30T13:16:33.803 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : crun-0.18-3.module+el8.7.0+16533+44634e24.x86_64 26/31 2024-06-30T13:16:33.803 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : skopeo-1:1.2.4-2.module+el8.7.0+16533+44634e24.x86 27/31 2024-06-30T13:16:33.803 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : toolbox-0.0.99.3-1.module+el8.7.0+16533+44634e24.x 28/31 2024-06-30T13:16:33.803 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : udica-0.2.4-1.module+el8.7.0+16533+44634e24.noarch 29/31 2024-06-30T13:16:33.803 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : buildah-1.19.9-6.module+el8.7.0+16533+44634e24.x86 30/31 2024-06-30T13:16:41.752 INFO:teuthology.orchestra.run.smithi189.stdout: Verifying : yajl-2.1.0-12.el8.x86_64 31/31 2024-06-30T13:16:41.752 INFO:teuthology.orchestra.run.smithi189.stdout:Installed products updated. 2024-06-30T13:16:42.345 INFO:teuthology.orchestra.run.smithi189.stdout: 2024-06-30T13:16:42.345 INFO:teuthology.orchestra.run.smithi189.stdout:Downgraded: 2024-06-30T13:16:42.345 INFO:teuthology.orchestra.run.smithi189.stdout: conmon-2:2.0.26-3.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:42.345 INFO:teuthology.orchestra.run.smithi189.stdout: container-selinux-2:2.189.0-1.module+el8.7.0+16533+44634e24.noarch 2024-06-30T13:16:42.345 INFO:teuthology.orchestra.run.smithi189.stdout: containernetworking-plugins-0.9.1-1.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:42.345 INFO:teuthology.orchestra.run.smithi189.stdout: containers-common-1:1.2.4-2.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:42.345 INFO:teuthology.orchestra.run.smithi189.stdout: criu-3.15-1.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:42.345 INFO:teuthology.orchestra.run.smithi189.stdout: fuse-overlayfs-1.4.0-2.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:42.345 INFO:teuthology.orchestra.run.smithi189.stdout: libslirp-4.3.1-1.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:42.345 INFO:teuthology.orchestra.run.smithi189.stdout: podman-3.0.1-15.module+el8.7.0+18021+1e286cc8.x86_64 2024-06-30T13:16:42.346 INFO:teuthology.orchestra.run.smithi189.stdout: podman-catatonit-3.0.1-15.module+el8.7.0+18021+1e286cc8.x86_64 2024-06-30T13:16:42.346 INFO:teuthology.orchestra.run.smithi189.stdout: podman-docker-3.0.1-15.module+el8.7.0+18021+1e286cc8.noarch 2024-06-30T13:16:42.346 INFO:teuthology.orchestra.run.smithi189.stdout: runc-1.0.0-73.rc95.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:42.346 INFO:teuthology.orchestra.run.smithi189.stdout: slirp4netns-1.1.8-1.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:42.346 INFO:teuthology.orchestra.run.smithi189.stdout:Installed: 2024-06-30T13:16:42.346 INFO:teuthology.orchestra.run.smithi189.stdout: buildah-1.19.9-6.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:42.346 INFO:teuthology.orchestra.run.smithi189.stdout: cockpit-podman-29-2.module+el8.7.0+16533+44634e24.noarch 2024-06-30T13:16:42.346 INFO:teuthology.orchestra.run.smithi189.stdout: crun-0.18-3.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:42.346 INFO:teuthology.orchestra.run.smithi189.stdout: skopeo-1:1.2.4-2.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:42.346 INFO:teuthology.orchestra.run.smithi189.stdout: toolbox-0.0.99.3-1.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:42.346 INFO:teuthology.orchestra.run.smithi189.stdout: udica-0.2.4-1.module+el8.7.0+16533+44634e24.noarch 2024-06-30T13:16:42.346 INFO:teuthology.orchestra.run.smithi189.stdout: yajl-2.1.0-12.el8.x86_64 2024-06-30T13:16:42.346 INFO:teuthology.orchestra.run.smithi189.stdout: 2024-06-30T13:16:42.347 INFO:teuthology.orchestra.run.smithi189.stdout:Complete! 2024-06-30T13:16:42.597 DEBUG:teuthology.parallel:result is None 2024-06-30T13:16:43.211 INFO:teuthology.orchestra.run.smithi159.stdout: Verifying : yajl-2.1.0-12.el8.x86_64 31/31 2024-06-30T13:16:43.212 INFO:teuthology.orchestra.run.smithi159.stdout:Installed products updated. 2024-06-30T13:16:43.804 INFO:teuthology.orchestra.run.smithi159.stdout: 2024-06-30T13:16:43.804 INFO:teuthology.orchestra.run.smithi159.stdout:Downgraded: 2024-06-30T13:16:43.804 INFO:teuthology.orchestra.run.smithi159.stdout: conmon-2:2.0.26-3.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:43.804 INFO:teuthology.orchestra.run.smithi159.stdout: container-selinux-2:2.189.0-1.module+el8.7.0+16533+44634e24.noarch 2024-06-30T13:16:43.804 INFO:teuthology.orchestra.run.smithi159.stdout: containernetworking-plugins-0.9.1-1.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:43.804 INFO:teuthology.orchestra.run.smithi159.stdout: containers-common-1:1.2.4-2.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:43.804 INFO:teuthology.orchestra.run.smithi159.stdout: criu-3.15-1.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:43.805 INFO:teuthology.orchestra.run.smithi159.stdout: fuse-overlayfs-1.4.0-2.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:43.805 INFO:teuthology.orchestra.run.smithi159.stdout: libslirp-4.3.1-1.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:43.805 INFO:teuthology.orchestra.run.smithi159.stdout: podman-3.0.1-15.module+el8.7.0+18021+1e286cc8.x86_64 2024-06-30T13:16:43.805 INFO:teuthology.orchestra.run.smithi159.stdout: podman-catatonit-3.0.1-15.module+el8.7.0+18021+1e286cc8.x86_64 2024-06-30T13:16:43.805 INFO:teuthology.orchestra.run.smithi159.stdout: podman-docker-3.0.1-15.module+el8.7.0+18021+1e286cc8.noarch 2024-06-30T13:16:43.805 INFO:teuthology.orchestra.run.smithi159.stdout: runc-1.0.0-73.rc95.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:43.805 INFO:teuthology.orchestra.run.smithi159.stdout: slirp4netns-1.1.8-1.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:43.805 INFO:teuthology.orchestra.run.smithi159.stdout:Installed: 2024-06-30T13:16:43.805 INFO:teuthology.orchestra.run.smithi159.stdout: buildah-1.19.9-6.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:43.805 INFO:teuthology.orchestra.run.smithi159.stdout: cockpit-podman-29-2.module+el8.7.0+16533+44634e24.noarch 2024-06-30T13:16:43.805 INFO:teuthology.orchestra.run.smithi159.stdout: crun-0.18-3.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:43.805 INFO:teuthology.orchestra.run.smithi159.stdout: skopeo-1:1.2.4-2.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:43.805 INFO:teuthology.orchestra.run.smithi159.stdout: toolbox-0.0.99.3-1.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:43.805 INFO:teuthology.orchestra.run.smithi159.stdout: udica-0.2.4-1.module+el8.7.0+16533+44634e24.noarch 2024-06-30T13:16:43.806 INFO:teuthology.orchestra.run.smithi159.stdout: yajl-2.1.0-12.el8.x86_64 2024-06-30T13:16:43.806 INFO:teuthology.orchestra.run.smithi159.stdout: 2024-06-30T13:16:43.806 INFO:teuthology.orchestra.run.smithi159.stdout:Complete! 2024-06-30T13:16:44.021 DEBUG:teuthology.parallel:result is None 2024-06-30T13:16:46.282 INFO:teuthology.orchestra.run.smithi003.stdout: Verifying : yajl-2.1.0-12.el8.x86_64 31/31 2024-06-30T13:16:46.282 INFO:teuthology.orchestra.run.smithi003.stdout:Installed products updated. 2024-06-30T13:16:46.908 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-06-30T13:16:46.908 INFO:teuthology.orchestra.run.smithi003.stdout:Downgraded: 2024-06-30T13:16:46.908 INFO:teuthology.orchestra.run.smithi003.stdout: conmon-2:2.0.26-3.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:46.908 INFO:teuthology.orchestra.run.smithi003.stdout: container-selinux-2:2.189.0-1.module+el8.7.0+16533+44634e24.noarch 2024-06-30T13:16:46.908 INFO:teuthology.orchestra.run.smithi003.stdout: containernetworking-plugins-0.9.1-1.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:46.908 INFO:teuthology.orchestra.run.smithi003.stdout: containers-common-1:1.2.4-2.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:46.908 INFO:teuthology.orchestra.run.smithi003.stdout: criu-3.15-1.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:46.908 INFO:teuthology.orchestra.run.smithi003.stdout: fuse-overlayfs-1.4.0-2.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:46.908 INFO:teuthology.orchestra.run.smithi003.stdout: libslirp-4.3.1-1.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:46.909 INFO:teuthology.orchestra.run.smithi003.stdout: podman-3.0.1-15.module+el8.7.0+18021+1e286cc8.x86_64 2024-06-30T13:16:46.909 INFO:teuthology.orchestra.run.smithi003.stdout: podman-catatonit-3.0.1-15.module+el8.7.0+18021+1e286cc8.x86_64 2024-06-30T13:16:46.909 INFO:teuthology.orchestra.run.smithi003.stdout: podman-docker-3.0.1-15.module+el8.7.0+18021+1e286cc8.noarch 2024-06-30T13:16:46.909 INFO:teuthology.orchestra.run.smithi003.stdout: runc-1.0.0-73.rc95.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:46.909 INFO:teuthology.orchestra.run.smithi003.stdout: slirp4netns-1.1.8-1.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:46.909 INFO:teuthology.orchestra.run.smithi003.stdout:Installed: 2024-06-30T13:16:46.909 INFO:teuthology.orchestra.run.smithi003.stdout: buildah-1.19.9-6.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:46.909 INFO:teuthology.orchestra.run.smithi003.stdout: cockpit-podman-29-2.module+el8.7.0+16533+44634e24.noarch 2024-06-30T13:16:46.909 INFO:teuthology.orchestra.run.smithi003.stdout: crun-0.18-3.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:46.909 INFO:teuthology.orchestra.run.smithi003.stdout: skopeo-1:1.2.4-2.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:46.909 INFO:teuthology.orchestra.run.smithi003.stdout: toolbox-0.0.99.3-1.module+el8.7.0+16533+44634e24.x86_64 2024-06-30T13:16:46.909 INFO:teuthology.orchestra.run.smithi003.stdout: udica-0.2.4-1.module+el8.7.0+16533+44634e24.noarch 2024-06-30T13:16:46.909 INFO:teuthology.orchestra.run.smithi003.stdout: yajl-2.1.0-12.el8.x86_64 2024-06-30T13:16:46.909 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-06-30T13:16:46.910 INFO:teuthology.orchestra.run.smithi003.stdout:Complete! 2024-06-30T13:16:47.154 DEBUG:teuthology.parallel:result is None 2024-06-30T13:16:47.154 INFO:teuthology.run_tasks:Running task install... 2024-06-30T13:16:47.163 DEBUG:teuthology.task.install:project ceph 2024-06-30T13:16:47.164 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'f1abf795f4fc15bf2f30ac90c811a53ab21d5d65'}} 2024-06-30T13:16:47.164 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'f1abf795f4fc15bf2f30ac90c811a53ab21d5d65'} 2024-06-30T13:16:47.164 INFO:teuthology.task.install:Using flavor: default 2024-06-30T13:16:47.170 DEBUG:teuthology.task.install:Package list is: {'deb': ['ceph', 'cephadm', 'ceph-mds', 'ceph-mgr', 'ceph-common', 'ceph-fuse', 'ceph-test', 'ceph-volume', 'radosgw', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'libcephfs2', 'libcephfs-dev', 'librados2', 'librbd1', 'rbd-fuse'], 'rpm': ['ceph-radosgw', 'ceph-test', 'ceph', 'ceph-base', 'cephadm', 'ceph-immutable-object-cache', 'ceph-mgr', 'ceph-mgr-dashboard', 'ceph-mgr-diskprediction-local', 'ceph-mgr-rook', 'ceph-mgr-cephadm', 'ceph-fuse', 'ceph-volume', 'librados-devel', 'libcephfs2', 'libcephfs-devel', 'librados2', 'librbd1', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'rbd-fuse', 'rbd-mirror', 'rbd-nbd']} 2024-06-30T13:16:47.170 INFO:teuthology.task.install:extra packages: [] 2024-06-30T13:16:47.170 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': 'f1abf795f4fc15bf2f30ac90c811a53ab21d5d65', 'tag': None, 'wait_for_package': False} 2024-06-30T13:16:47.171 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&sha1=f1abf795f4fc15bf2f30ac90c811a53ab21d5d65 2024-06-30T13:16:47.173 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': 'f1abf795f4fc15bf2f30ac90c811a53ab21d5d65', 'tag': None, 'wait_for_package': False} 2024-06-30T13:16:47.173 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&sha1=f1abf795f4fc15bf2f30ac90c811a53ab21d5d65 2024-06-30T13:16:47.174 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': 'f1abf795f4fc15bf2f30ac90c811a53ab21d5d65', 'tag': None, 'wait_for_package': False} 2024-06-30T13:16:47.175 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&sha1=f1abf795f4fc15bf2f30ac90c811a53ab21d5d65 2024-06-30T13:16:47.318 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/task/install/__init__.py", line 219, in install install_packages(ctx, package_list, config) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/task/install/__init__.py", line 79, in install_packages with parallel() as p: File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/parallel.py", line 84, in __exit__ for result in self: File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/parallel.py", line 98, in __next__ resurrect_traceback(result) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/parallel.py", line 30, in resurrect_traceback raise exc.exc_info[1] File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/parallel.py", line 23, in capture_traceback return func(*args, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/task/install/rpm.py", line 209, in _update_package_list_and_install log.info('Pulling from %s', builder.base_url) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/packaging.py", line 554, in base_url return self._get_base_url() File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/packaging.py", line 856, in _get_base_url self.assert_result() File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/packaging.py", line 937, in assert_result raise VersionNotFoundError(self._result.url) teuthology.exceptions.VersionNotFoundError: Failed to fetch package version from https://shaman.ceph.com/api/search/?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&sha1=f1abf795f4fc15bf2f30ac90c811a53ab21d5d65 2024-06-30T13:16:47.320 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/task/install/__init__.py", line 637, in task with contextutil.nested( File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/task/install/__init__.py", line 219, in install install_packages(ctx, package_list, config) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/task/install/__init__.py", line 79, in install_packages with parallel() as p: File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/parallel.py", line 84, in __exit__ for result in self: File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/parallel.py", line 98, in __next__ resurrect_traceback(result) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/parallel.py", line 30, in resurrect_traceback raise exc.exc_info[1] File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/parallel.py", line 23, in capture_traceback return func(*args, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/task/install/rpm.py", line 209, in _update_package_list_and_install log.info('Pulling from %s', builder.base_url) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/packaging.py", line 554, in base_url return self._get_base_url() File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/packaging.py", line 856, in _get_base_url self.assert_result() File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/packaging.py", line 937, in assert_result raise VersionNotFoundError(self._result.url) teuthology.exceptions.VersionNotFoundError: Failed to fetch package version from https://shaman.ceph.com/api/search/?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&sha1=f1abf795f4fc15bf2f30ac90c811a53ab21d5d65 2024-06-30T13:16:47.497 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=817e1171070140c2bba8b8236531d68f Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/task/install/__init__.py", line 637, in task with contextutil.nested( File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/task/install/__init__.py", line 219, in install install_packages(ctx, package_list, config) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/task/install/__init__.py", line 79, in install_packages with parallel() as p: File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/parallel.py", line 84, in __exit__ for result in self: File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/parallel.py", line 98, in __next__ resurrect_traceback(result) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/parallel.py", line 30, in resurrect_traceback raise exc.exc_info[1] File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/parallel.py", line 23, in capture_traceback return func(*args, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/task/install/rpm.py", line 209, in _update_package_list_and_install log.info('Pulling from %s', builder.base_url) File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/packaging.py", line 554, in base_url return self._get_base_url() File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/packaging.py", line 856, in _get_base_url self.assert_result() File "/home/teuthworker/src/git.ceph.com_teuthology_861a8dcf7aa816a26e13f039336f7ed0a9aec0fa/teuthology/packaging.py", line 937, in assert_result raise VersionNotFoundError(self._result.url) teuthology.exceptions.VersionNotFoundError: Failed to fetch package version from https://shaman.ceph.com/api/search/?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&sha1=f1abf795f4fc15bf2f30ac90c811a53ab21d5d65 2024-06-30T13:16:47.501 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-06-30T13:16:47.509 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-06-30T13:16:47.517 INFO:teuthology.task.clock:Checking final clock skew... 2024-06-30T13:16:47.517 DEBUG:teuthology.orchestra.run.smithi003:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-06-30T13:16:47.534 DEBUG:teuthology.orchestra.run.smithi159:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-06-30T13:16:47.538 DEBUG:teuthology.orchestra.run.smithi189:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-06-30T13:16:47.544 INFO:teuthology.orchestra.run.smithi003.stderr:bash: ntpq: command not found 2024-06-30T13:16:47.549 INFO:teuthology.orchestra.run.smithi003.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-06-30T13:16:47.549 INFO:teuthology.orchestra.run.smithi003.stdout:=============================================================================== 2024-06-30T13:16:47.549 INFO:teuthology.orchestra.run.smithi003.stdout:^* hv01.front.sepia.ceph.com 3 6 37 22 +1427us[+1448us] +/- 50ms 2024-06-30T13:16:47.549 INFO:teuthology.orchestra.run.smithi003.stdout:^+ hv02.front.sepia.ceph.com 3 6 37 23 -1179us[-1159us] +/- 68ms 2024-06-30T13:16:47.549 INFO:teuthology.orchestra.run.smithi003.stdout:^+ hv03.front.sepia.ceph.com 3 6 37 24 -786us[ -765us] +/- 70ms 2024-06-30T13:16:47.549 INFO:teuthology.orchestra.run.smithi003.stdout:^? hv04.front.sepia.ceph.com 0 7 0 - +0ns[ +0ns] +/- 0ns 2024-06-30T13:16:47.556 INFO:teuthology.orchestra.run.smithi159.stderr:bash: ntpq: command not found 2024-06-30T13:16:47.558 INFO:teuthology.orchestra.run.smithi189.stderr:bash: ntpq: command not found 2024-06-30T13:16:47.561 INFO:teuthology.orchestra.run.smithi159.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-06-30T13:16:47.561 INFO:teuthology.orchestra.run.smithi159.stdout:=============================================================================== 2024-06-30T13:16:47.561 INFO:teuthology.orchestra.run.smithi159.stdout:^* hv01.front.sepia.ceph.com 3 6 37 23 +1456us[+1468us] +/- 50ms 2024-06-30T13:16:47.562 INFO:teuthology.orchestra.run.smithi159.stdout:^+ hv02.front.sepia.ceph.com 3 6 37 23 -1213us[-1201us] +/- 68ms 2024-06-30T13:16:47.562 INFO:teuthology.orchestra.run.smithi159.stdout:^+ hv03.front.sepia.ceph.com 3 6 37 23 -789us[ -776us] +/- 70ms 2024-06-30T13:16:47.562 INFO:teuthology.orchestra.run.smithi159.stdout:^? hv04.front.sepia.ceph.com 0 7 0 - +0ns[ +0ns] +/- 0ns 2024-06-30T13:16:47.563 INFO:teuthology.orchestra.run.smithi189.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-06-30T13:16:47.563 INFO:teuthology.orchestra.run.smithi189.stdout:=============================================================================== 2024-06-30T13:16:47.563 INFO:teuthology.orchestra.run.smithi189.stdout:^* hv01.front.sepia.ceph.com 3 6 37 23 +1398us[+1447us] +/- 50ms 2024-06-30T13:16:47.563 INFO:teuthology.orchestra.run.smithi189.stdout:^+ hv02.front.sepia.ceph.com 3 6 37 23 -1233us[-1233us] +/- 68ms 2024-06-30T13:16:47.564 INFO:teuthology.orchestra.run.smithi189.stdout:^+ hv03.front.sepia.ceph.com 3 6 37 23 -833us[ -783us] +/- 70ms 2024-06-30T13:16:47.564 INFO:teuthology.orchestra.run.smithi189.stdout:^? hv04.front.sepia.ceph.com 0 7 0 - +0ns[ +0ns] +/- 0ns 2024-06-30T13:16:47.565 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-06-30T13:16:47.573 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-06-30T13:16:47.574 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-06-30T13:16:47.582 DEBUG:teuthology.orchestra.run.smithi003:> 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-06-30T13:16:47.664 DEBUG:teuthology.orchestra.run.smithi159:> 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-06-30T13:16:47.733 DEBUG:teuthology.orchestra.run.smithi189:> 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-06-30T13:16:47.800 DEBUG:teuthology.orchestra.run.smithi003:> 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 2024-06-30T13:16:47.837 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-06-30T13:16:47.838 DEBUG:teuthology.orchestra.run.smithi159:> 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 2024-06-30T13:16:47.870 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-06-30T13:16:47.871 DEBUG:teuthology.orchestra.run.smithi189:> 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 2024-06-30T13:16:47.902 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-06-30T13:16:47.903 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-06-30T13:16:47.911 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-06-30T13:16:47.919 INFO:teuthology.task.internal:Duration was 754.768161 seconds 2024-06-30T13:16:47.920 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-06-30T13:16:47.928 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-06-30T13:16:47.928 DEBUG:teuthology.orchestra.run.smithi003:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-06-30T13:16:47.931 DEBUG:teuthology.orchestra.run.smithi159:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-06-30T13:16:47.933 DEBUG:teuthology.orchestra.run.smithi189:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-06-30T13:16:47.982 INFO:teuthology.orchestra.run.smithi159.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-06-30T13:16:47.987 INFO:teuthology.orchestra.run.smithi003.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-06-30T13:16:47.992 INFO:teuthology.orchestra.run.smithi189.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-06-30T13:16:48.416 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-06-30T13:16:48.416 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi003.front.sepia.ceph.com 2024-06-30T13:16:48.416 DEBUG:teuthology.orchestra.run.smithi003:> 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-06-30T13:16:48.445 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi159.front.sepia.ceph.com 2024-06-30T13:16:48.445 DEBUG:teuthology.orchestra.run.smithi159:> 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-06-30T13:16:48.471 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi189.front.sepia.ceph.com 2024-06-30T13:16:48.471 DEBUG:teuthology.orchestra.run.smithi189:> 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-06-30T13:16:48.493 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-06-30T13:16:48.494 DEBUG:teuthology.orchestra.run.smithi003:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-06-30T13:16:48.496 DEBUG:teuthology.orchestra.run.smithi159:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-06-30T13:16:48.514 DEBUG:teuthology.orchestra.run.smithi189:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-06-30T13:16:48.576 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-06-30T13:16:48.576 DEBUG:teuthology.orchestra.run.smithi003:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-06-30T13:16:48.579 DEBUG:teuthology.orchestra.run.smithi159:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-06-30T13:16:48.581 DEBUG:teuthology.orchestra.run.smithi189:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-06-30T13:16:48.687 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-06-30T13:16:48.697 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-06-30T13:16:48.697 DEBUG:teuthology.orchestra.run.smithi003:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-06-30T13:16:48.730 DEBUG:teuthology.orchestra.run.smithi159:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-06-30T13:16:48.759 DEBUG:teuthology.orchestra.run.smithi189:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-06-30T13:16:48.787 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-06-30T13:16:48.797 DEBUG:teuthology.orchestra.run.smithi003:> 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-06-30T13:16:48.800 DEBUG:teuthology.orchestra.run.smithi159:> 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-06-30T13:16:48.802 DEBUG:teuthology.orchestra.run.smithi189:> 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-06-30T13:16:48.826 INFO:teuthology.orchestra.run.smithi159.stdout:kernel.core_pattern = core 2024-06-30T13:16:48.832 INFO:teuthology.orchestra.run.smithi003.stdout:kernel.core_pattern = core 2024-06-30T13:16:48.853 INFO:teuthology.orchestra.run.smithi189.stdout:kernel.core_pattern = core 2024-06-30T13:16:48.879 DEBUG:teuthology.orchestra.run.smithi003:> test -e /home/ubuntu/cephtest/archive/coredump 2024-06-30T13:16:48.926 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-06-30T13:16:48.927 DEBUG:teuthology.orchestra.run.smithi159:> test -e /home/ubuntu/cephtest/archive/coredump 2024-06-30T13:16:48.943 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-06-30T13:16:48.944 DEBUG:teuthology.orchestra.run.smithi189:> test -e /home/ubuntu/cephtest/archive/coredump 2024-06-30T13:16:48.960 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-06-30T13:16:48.961 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-06-30T13:16:48.973 INFO:teuthology.task.internal:Transferring archived files... 2024-06-30T13:16:48.975 DEBUG:teuthology.misc:Transferring archived files from smithi003:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-06-10_22:08:02-orch-reef-distro-default-smithi/7749624/remote/smithi003 2024-06-30T13:16:48.976 DEBUG:teuthology.orchestra.run.smithi003:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-06-30T13:16:49.035 DEBUG:teuthology.misc:Transferring archived files from smithi159:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-06-10_22:08:02-orch-reef-distro-default-smithi/7749624/remote/smithi159 2024-06-30T13:16:49.036 DEBUG:teuthology.orchestra.run.smithi159:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-06-30T13:16:49.090 DEBUG:teuthology.misc:Transferring archived files from smithi189:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-06-10_22:08:02-orch-reef-distro-default-smithi/7749624/remote/smithi189 2024-06-30T13:16:49.091 DEBUG:teuthology.orchestra.run.smithi189:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-06-30T13:16:49.134 INFO:teuthology.task.internal:Removing archive directory... 2024-06-30T13:16:49.135 DEBUG:teuthology.orchestra.run.smithi003:> rm -rf -- /home/ubuntu/cephtest/archive 2024-06-30T13:16:49.137 DEBUG:teuthology.orchestra.run.smithi159:> rm -rf -- /home/ubuntu/cephtest/archive 2024-06-30T13:16:49.139 DEBUG:teuthology.orchestra.run.smithi189:> rm -rf -- /home/ubuntu/cephtest/archive 2024-06-30T13:16:49.185 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-06-30T13:16:49.197 INFO:teuthology.task.internal:Not uploading archives. 2024-06-30T13:16:49.197 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-06-30T13:16:49.206 INFO:teuthology.task.internal:Tidying up after the test... 2024-06-30T13:16:49.206 DEBUG:teuthology.orchestra.run.smithi003:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-06-30T13:16:49.209 DEBUG:teuthology.orchestra.run.smithi159:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-06-30T13:16:49.211 DEBUG:teuthology.orchestra.run.smithi189:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-06-30T13:16:49.225 INFO:teuthology.orchestra.run.smithi159.stdout: 262179 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Jun 30 13:16 /home/ubuntu/cephtest 2024-06-30T13:16:49.227 INFO:teuthology.orchestra.run.smithi003.stdout: 262175 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Jun 30 13:16 /home/ubuntu/cephtest 2024-06-30T13:16:49.242 INFO:teuthology.orchestra.run.smithi189.stdout: 262179 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Jun 30 13:16 /home/ubuntu/cephtest 2024-06-30T13:16:49.243 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-06-30T13:16:49.255 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-06-30T13:16:49.284 INFO:teuthology.run:Summary data: description: orch/cephadm/workunits/{0-distro/rhel_8.6_container_tools_3.0 agent/on mon_election/connectivity task/test_host_drain} duration: 754.7681608200073 failure_reason: Failed to fetch package version from https://shaman.ceph.com/api/search/?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&sha1=f1abf795f4fc15bf2f30ac90c811a53ab21d5d65 flavor: default owner: scheduled_teuthology@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=817e1171070140c2bba8b8236531d68f status: fail success: false 2024-06-30T13:16:49.284 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-06-30T13:16:49.361 INFO:teuthology.run:FAIL