2024-04-19T21:23:03.805 INFO:root:teuthology version: 0.0.1.dev269+g9481b1d 2024-04-19T21:23:03.805 DEBUG:teuthology.run:Teuthology command: teuthology --verbose --archive /home/teuthworker/archive/teuthology-2024-04-19_21:08:02-orch-squid-distro-default-smithi/7663768 --owner scheduled_teuthology@teuthology --description orch/cephadm/smoke-roleless/{0-distro/centos_9.stream 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} --name teuthology-2024-04-19_21:08:02-orch-squid-distro-default-smithi -- /home/teuthworker/archive/teuthology-2024-04-19_21:08:02-orch-squid-distro-default-smithi/7663768/orig.config.yaml 2024-04-19T21:23:03.841 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-19T21:23:03.916 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-04-19_21:08:02-orch-squid-distro-default-smithi/7663768 branch: squid description: orch/cephadm/smoke-roleless/{0-distro/centos_9.stream 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} email: ceph-qa@ceph.com first_in_suite: false job_id: '7663768' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-04-19_21:08:02-orch-squid-distro-default-smithi no_nested_subset: false nuke-on-error: true openstack: - volumes: count: 4 size: 10 os_type: centos os_version: 9.stream overrides: admin_socket: branch: squid ceph: conf: mgr: debug mgr: 20 debug ms: 1 mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 osd shutdown pgref assert: true flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) log-only-match: - CEPHADM_ sha1: d0bf63dd179c05751e4be49477389aa290c73089 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: d0bf63dd179c05751e4be49477389aa290c73089 selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: squid sha1: e02d68a84525e0fa855f080a47dd96b350c21c42 owner: scheduled_teuthology@teuthology priority: 100 repo: https://git.ceph.com/ceph.git roles: - - host.a - client.0 - - host.b - client.1 seed: 5868 sha1: d0bf63dd179c05751e4be49477389aa290c73089 sleep_before_teardown: 0 subset: 38/64 suite: orch suite_branch: squid suite_path: /home/teuthworker/src/git.ceph.com_ceph_e02d68a84525e0fa855f080a47dd96b350c21c42/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: e02d68a84525e0fa855f080a47dd96b350c21c42 targets: smithi089.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCQdUaEYaXImg+wEmJlV97rxEUDQBRoQ3/4SC1xbbJmBzSJ+xK17/w0GdB8eir3B1ruN42lwyV7T4Rp+rPr7qeQ= smithi123.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBL2Had0ebn5JsbbEOFZZVSfQ6Qe586Q/UtXKhyip/m4/n+fwqVoxuUOzW8LbXjPkRoon3UmuA9YJiS1vC/dFXaM= tasks: - nvme_loop: null - cephadm: roleless: true - cephadm.shell: host.a: - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - vip: null - cephadm.shell: host.a: - ceph orch device ls --refresh - vip.exec: all-hosts: - systemctl stop nfs-server - cephadm.shell: host.a: - ceph orch apply rgw foorgw --port 8800 - ceph nfs cluster create foo --ingress --virtual-ip {{VIP0}}/{{VIPPREFIXLEN}} - vip.exec: host.a: - dnf install -y python3-boto3 || apt install -y python3-boto3 - /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json - python: host.a: "import boto3\nimport json\n\nwith open('/tmp/user.json', 'rt') as f:\n\ \ info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n aws_access_key_id=info['keys'][0]['access_key'],\n\ \ aws_secret_access_key=info['keys'][0]['secret_key'],\n endpoint_url='http://localhost:8800',\n\ )\nbucket = s3.Bucket('foobucket')\nbucket.create()\nbucket.put_object(Key='myobject',\ \ Body='thebody')\n" - cephadm.shell: host.a: - ceph nfs export create rgw --bucket foobucket --cluster-id foo --pseudo-path /foobucket - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foobucket /mnt/foo - find /mnt/foo -ls - grep thebody /mnt/foo/myobject - echo test > /mnt/foo/newobject - sync - python: host.a: "import boto3\nimport json\nfrom io import BytesIO\n\nwith open('/tmp/user.json',\ \ 'rt') as f:\n info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n\ \ aws_access_key_id=info['keys'][0]['access_key'],\n aws_secret_access_key=info['keys'][0]['secret_key'],\n\ \ endpoint_url='http://localhost:8800',\n)\nbucket = s3.Bucket('foobucket')\n\ data = BytesIO()\nbucket.download_fileobj(Fileobj=data, Key='newobject')\nprint(data.getvalue())\n\ assert data.getvalue().decode() == 'test\\n'\n" - vip.exec: host.a: - umount /mnt/foo - cephadm.shell: host.a: - ceph nfs export rm foo /foobucket - ceph nfs cluster rm foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17 timestamp: 2024-04-19_21:08:02 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-04-19T21:23:03.917 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_e02d68a84525e0fa855f080a47dd96b350c21c42/qa; will attempt to use it 2024-04-19T21:23:03.917 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_e02d68a84525e0fa855f080a47dd96b350c21c42/qa/tasks 2024-04-19T21:23:03.917 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-04-19T21:23:03.919 INFO:teuthology.task.internal:Checking packages... 2024-04-19T21:23:03.953 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'd0bf63dd179c05751e4be49477389aa290c73089' 2024-04-19T21:23:03.954 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-04-19T21:23:03.954 INFO:teuthology.packaging:ref: None 2024-04-19T21:23:03.954 INFO:teuthology.packaging:tag: None 2024-04-19T21:23:03.954 INFO:teuthology.packaging:branch: squid 2024-04-19T21:23:03.955 INFO:teuthology.packaging:sha1: d0bf63dd179c05751e4be49477389aa290c73089 2024-04-19T21:23:03.955 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=squid 2024-04-19T21:23:04.260 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-2401.gd0bf63dd 2024-04-19T21:23:04.262 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-04-19T21:23:04.268 INFO:teuthology.task.internal:no buildpackages task found 2024-04-19T21:23:04.268 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-04-19T21:23:04.274 INFO:teuthology.task.internal:Saving configuration 2024-04-19T21:23:04.293 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-04-19T21:23:04.297 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-19T21:23:04.321 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi089.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-19_21:08:02-orch-squid-distro-default-smithi/7663768', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-19 21:17:54.867532', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCQdUaEYaXImg+wEmJlV97rxEUDQBRoQ3/4SC1xbbJmBzSJ+xK17/w0GdB8eir3B1ruN42lwyV7T4Rp+rPr7qeQ='} 2024-04-19T21:23:04.342 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi123.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-19_21:08:02-orch-squid-distro-default-smithi/7663768', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-19 21:17:54.868911', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBL2Had0ebn5JsbbEOFZZVSfQ6Qe586Q/UtXKhyip/m4/n+fwqVoxuUOzW8LbXjPkRoon3UmuA9YJiS1vC/dFXaM='} 2024-04-19T21:23:04.342 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-04-19T21:23:04.348 INFO:teuthology.task.internal:roles: ubuntu@smithi089.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-04-19T21:23:04.348 INFO:teuthology.task.internal:roles: ubuntu@smithi123.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-04-19T21:23:04.348 INFO:teuthology.run_tasks:Running task console_log... 2024-04-19T21:23:04.413 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f5ad92a0ee0>, signals=[15]) 2024-04-19T21:23:04.414 INFO:teuthology.run_tasks:Running task internal.connect... 2024-04-19T21:23:04.420 INFO:teuthology.task.internal:Opening connections... 2024-04-19T21:23:04.420 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi089.front.sepia.ceph.com 2024-04-19T21:23:04.422 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi089.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T21:23:04.546 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi123.front.sepia.ceph.com 2024-04-19T21:23:04.547 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi123.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T21:23:04.641 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-04-19T21:23:04.649 DEBUG:teuthology.orchestra.run.smithi089:> uname -m 2024-04-19T21:23:04.667 INFO:teuthology.orchestra.run.smithi089.stdout:x86_64 2024-04-19T21:23:04.667 DEBUG:teuthology.orchestra.run.smithi089:> cat /etc/os-release 2024-04-19T21:23:04.728 INFO:teuthology.orchestra.run.smithi089.stdout:NAME="CentOS Stream" 2024-04-19T21:23:04.728 INFO:teuthology.orchestra.run.smithi089.stdout:VERSION="9" 2024-04-19T21:23:04.728 INFO:teuthology.orchestra.run.smithi089.stdout:ID="centos" 2024-04-19T21:23:04.728 INFO:teuthology.orchestra.run.smithi089.stdout:ID_LIKE="rhel fedora" 2024-04-19T21:23:04.728 INFO:teuthology.orchestra.run.smithi089.stdout:VERSION_ID="9" 2024-04-19T21:23:04.728 INFO:teuthology.orchestra.run.smithi089.stdout:PLATFORM_ID="platform:el9" 2024-04-19T21:23:04.728 INFO:teuthology.orchestra.run.smithi089.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-19T21:23:04.728 INFO:teuthology.orchestra.run.smithi089.stdout:ANSI_COLOR="0;31" 2024-04-19T21:23:04.728 INFO:teuthology.orchestra.run.smithi089.stdout:LOGO="fedora-logo-icon" 2024-04-19T21:23:04.728 INFO:teuthology.orchestra.run.smithi089.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-19T21:23:04.728 INFO:teuthology.orchestra.run.smithi089.stdout:HOME_URL="https://centos.org/" 2024-04-19T21:23:04.728 INFO:teuthology.orchestra.run.smithi089.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-19T21:23:04.729 INFO:teuthology.orchestra.run.smithi089.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-19T21:23:04.729 INFO:teuthology.orchestra.run.smithi089.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-19T21:23:04.729 INFO:teuthology.lock.ops:Updating smithi089.front.sepia.ceph.com on lock server 2024-04-19T21:23:04.747 DEBUG:teuthology.orchestra.run.smithi123:> uname -m 2024-04-19T21:23:04.763 INFO:teuthology.orchestra.run.smithi123.stdout:x86_64 2024-04-19T21:23:04.764 DEBUG:teuthology.orchestra.run.smithi123:> cat /etc/os-release 2024-04-19T21:23:04.820 INFO:teuthology.orchestra.run.smithi123.stdout:NAME="CentOS Stream" 2024-04-19T21:23:04.821 INFO:teuthology.orchestra.run.smithi123.stdout:VERSION="9" 2024-04-19T21:23:04.821 INFO:teuthology.orchestra.run.smithi123.stdout:ID="centos" 2024-04-19T21:23:04.821 INFO:teuthology.orchestra.run.smithi123.stdout:ID_LIKE="rhel fedora" 2024-04-19T21:23:04.821 INFO:teuthology.orchestra.run.smithi123.stdout:VERSION_ID="9" 2024-04-19T21:23:04.821 INFO:teuthology.orchestra.run.smithi123.stdout:PLATFORM_ID="platform:el9" 2024-04-19T21:23:04.821 INFO:teuthology.orchestra.run.smithi123.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-19T21:23:04.821 INFO:teuthology.orchestra.run.smithi123.stdout:ANSI_COLOR="0;31" 2024-04-19T21:23:04.821 INFO:teuthology.orchestra.run.smithi123.stdout:LOGO="fedora-logo-icon" 2024-04-19T21:23:04.822 INFO:teuthology.orchestra.run.smithi123.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-19T21:23:04.822 INFO:teuthology.orchestra.run.smithi123.stdout:HOME_URL="https://centos.org/" 2024-04-19T21:23:04.822 INFO:teuthology.orchestra.run.smithi123.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-19T21:23:04.822 INFO:teuthology.orchestra.run.smithi123.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-19T21:23:04.822 INFO:teuthology.orchestra.run.smithi123.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-19T21:23:04.823 INFO:teuthology.lock.ops:Updating smithi123.front.sepia.ceph.com on lock server 2024-04-19T21:23:04.847 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-04-19T21:23:04.855 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-04-19T21:23:04.860 INFO:teuthology.task.internal:Checking for old test directory... 2024-04-19T21:23:04.861 DEBUG:teuthology.orchestra.run.smithi089:> test '!' -e /home/ubuntu/cephtest 2024-04-19T21:23:04.863 DEBUG:teuthology.orchestra.run.smithi123:> test '!' -e /home/ubuntu/cephtest 2024-04-19T21:23:04.879 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-04-19T21:23:04.886 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-04-19T21:23:04.886 DEBUG:teuthology.orchestra.run.smithi089:> test -z $(ls -A /var/lib/ceph) 2024-04-19T21:23:04.924 DEBUG:teuthology.orchestra.run.smithi123:> test -z $(ls -A /var/lib/ceph) 2024-04-19T21:23:05.027 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-04-19T21:23:05.080 INFO:teuthology.run_tasks:Running task kernel... 2024-04-19T21:23:05.095 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-04-19T21:23:05.095 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-04-19T21:23:05.095 DEBUG:teuthology.orchestra.run.smithi089:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-19T21:23:05.096 DEBUG:teuthology.orchestra.run.smithi123:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-19T21:23:05.112 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T21:23:05.113 DEBUG:teuthology.orchestra.run.smithi089:> uname -r 2024-04-19T21:23:05.113 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T21:23:05.114 DEBUG:teuthology.orchestra.run.smithi123:> uname -r 2024-04-19T21:23:05.171 INFO:teuthology.orchestra.run.smithi123.stdout:5.14.0-361.el9.x86_64 2024-04-19T21:23:05.171 INFO:teuthology.task.kernel:Running kernel on smithi123: 5.14.0-361.el9.x86_64 2024-04-19T21:23:05.172 DEBUG:teuthology.orchestra.run.smithi123:> sudo yum install -y kernel 2024-04-19T21:23:05.173 INFO:teuthology.orchestra.run.smithi089.stdout:5.14.0-361.el9.x86_64 2024-04-19T21:23:05.173 INFO:teuthology.task.kernel:Running kernel on smithi089: 5.14.0-361.el9.x86_64 2024-04-19T21:23:05.173 DEBUG:teuthology.orchestra.run.smithi089:> sudo yum install -y kernel 2024-04-19T21:23:07.417 INFO:teuthology.orchestra.run.smithi123.stdout:CentOS-9 - AppStream 9.9 MB/s | 6.4 MB 00:00 2024-04-19T21:23:07.427 INFO:teuthology.orchestra.run.smithi089.stdout:CentOS-9 - AppStream 12 MB/s | 6.4 MB 00:00 2024-04-19T21:23:08.886 INFO:teuthology.orchestra.run.smithi089.stdout:CentOS-9 - BaseOS 5.7 MB/s | 2.0 MB 00:00 2024-04-19T21:23:09.101 INFO:teuthology.orchestra.run.smithi123.stdout:CentOS-9 - BaseOS 3.3 MB/s | 2.0 MB 00:00 2024-04-19T21:23:10.125 INFO:teuthology.orchestra.run.smithi123.stdout:CentOS Stream 9 - BaseOS 12 MB/s | 8.0 MB 00:00 2024-04-19T21:23:10.376 INFO:teuthology.orchestra.run.smithi089.stdout:CentOS Stream 9 - BaseOS 7.2 MB/s | 8.0 MB 00:01 2024-04-19T21:23:13.086 INFO:teuthology.orchestra.run.smithi089.stdout:CentOS Stream 9 - AppStream 12 MB/s | 19 MB 00:01 2024-04-19T21:23:19.428 INFO:teuthology.orchestra.run.smithi089.stdout:CentOS Stream 9 - CRB 2.2 MB/s | 6.2 MB 00:02 2024-04-19T21:23:21.095 INFO:teuthology.orchestra.run.smithi089.stdout:CentOS Stream 9 - Extras packages 34 kB/s | 16 kB 00:00 2024-04-19T21:23:22.371 INFO:teuthology.orchestra.run.smithi089.stdout:Extra Packages for Enterprise Linux 19 MB/s | 21 MB 00:01 2024-04-19T21:23:27.480 INFO:teuthology.orchestra.run.smithi089.stdout:lab-extras 14 kB/s | 1.7 kB 00:00 2024-04-19T21:23:29.920 INFO:teuthology.orchestra.run.smithi089.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-19T21:23:29.921 INFO:teuthology.orchestra.run.smithi089.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-19T21:23:30.019 INFO:teuthology.orchestra.run.smithi089.stdout:Dependencies resolved. 2024-04-19T21:23:30.025 INFO:teuthology.orchestra.run.smithi089.stdout:================================================================================ 2024-04-19T21:23:30.025 INFO:teuthology.orchestra.run.smithi089.stdout: Package Arch Version Repository Size 2024-04-19T21:23:30.025 INFO:teuthology.orchestra.run.smithi089.stdout:================================================================================ 2024-04-19T21:23:30.025 INFO:teuthology.orchestra.run.smithi089.stdout:Installing: 2024-04-19T21:23:30.025 INFO:teuthology.orchestra.run.smithi089.stdout: kernel x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 29 k 2024-04-19T21:23:30.025 INFO:teuthology.orchestra.run.smithi089.stdout:Installing dependencies: 2024-04-19T21:23:30.025 INFO:teuthology.orchestra.run.smithi089.stdout: kernel-core x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 16 M 2024-04-19T21:23:30.025 INFO:teuthology.orchestra.run.smithi089.stdout: kernel-modules x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 34 M 2024-04-19T21:23:30.025 INFO:teuthology.orchestra.run.smithi089.stdout: kernel-modules-core x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 27 M 2024-04-19T21:23:30.025 INFO:teuthology.orchestra.run.smithi089.stdout: 2024-04-19T21:23:30.026 INFO:teuthology.orchestra.run.smithi089.stdout:Transaction Summary 2024-04-19T21:23:30.026 INFO:teuthology.orchestra.run.smithi089.stdout:================================================================================ 2024-04-19T21:23:30.026 INFO:teuthology.orchestra.run.smithi089.stdout:Install 4 Packages 2024-04-19T21:23:30.026 INFO:teuthology.orchestra.run.smithi089.stdout: 2024-04-19T21:23:30.027 INFO:teuthology.orchestra.run.smithi089.stdout:Total download size: 78 M 2024-04-19T21:23:30.027 INFO:teuthology.orchestra.run.smithi089.stdout:Installed size: 125 M 2024-04-19T21:23:30.027 INFO:teuthology.orchestra.run.smithi089.stdout:Downloading Packages: 2024-04-19T21:23:30.164 INFO:teuthology.orchestra.run.smithi089.stdout:(1/4): kernel-6.9.0-0.rc2.1.el10.x86_64.rpm 207 kB/s | 29 kB 00:00 2024-04-19T21:23:30.673 INFO:teuthology.orchestra.run.smithi089.stdout:(2/4): kernel-core-6.9.0-0.rc2.1.el10.x86_64.rp 25 MB/s | 16 MB 00:00 2024-04-19T21:23:31.265 INFO:teuthology.orchestra.run.smithi089.stdout:(3/4): kernel-modules-6.9.0-0.rc2.1.el10.x86_64 28 MB/s | 34 MB 00:01 2024-04-19T21:23:31.573 INFO:teuthology.orchestra.run.smithi089.stdout:(4/4): kernel-modules-core-6.9.0-0.rc2.1.el10.x 19 MB/s | 27 MB 00:01 2024-04-19T21:23:31.577 INFO:teuthology.orchestra.run.smithi089.stdout:-------------------------------------------------------------------------------- 2024-04-19T21:23:31.577 INFO:teuthology.orchestra.run.smithi089.stdout:Total 50 MB/s | 78 MB 00:01 2024-04-19T21:23:31.577 INFO:teuthology.orchestra.run.smithi089.stdout:Running transaction check 2024-04-19T21:23:31.968 INFO:teuthology.orchestra.run.smithi089.stdout:Transaction check succeeded. 2024-04-19T21:23:31.968 INFO:teuthology.orchestra.run.smithi089.stdout:Running transaction test 2024-04-19T21:23:32.748 INFO:teuthology.orchestra.run.smithi123.stdout:CentOS Stream 9 - AppStream 905 kB/s | 19 MB 00:21 2024-04-19T21:23:32.794 INFO:teuthology.orchestra.run.smithi089.stdout:Transaction test succeeded. 2024-04-19T21:23:32.795 INFO:teuthology.orchestra.run.smithi089.stdout:Running transaction 2024-04-19T21:23:34.991 INFO:teuthology.orchestra.run.smithi089.stdout: Preparing : 1/1 2024-04-19T21:23:35.640 INFO:teuthology.orchestra.run.smithi089.stdout: Installing : kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 1/4 2024-04-19T21:23:35.732 INFO:teuthology.orchestra.run.smithi089.stdout: Installing : kernel-core-6.9.0-0.rc2.1.el10.x86_64 2/4 2024-04-19T21:23:36.707 INFO:teuthology.orchestra.run.smithi123.stdout:CentOS Stream 9 - CRB 17 MB/s | 6.2 MB 00:00 2024-04-19T21:23:38.012 INFO:teuthology.orchestra.run.smithi089.stdout: Running scriptlet: kernel-core-6.9.0-0.rc2.1.el10.x86_64 2/4 2024-04-19T21:23:38.149 INFO:teuthology.orchestra.run.smithi089.stdout: Installing : kernel-modules-6.9.0-0.rc2.1.el10.x86_64 3/4 2024-04-19T21:23:38.274 INFO:teuthology.orchestra.run.smithi123.stdout:CentOS Stream 9 - Extras packages 51 kB/s | 16 kB 00:00 2024-04-19T21:23:42.934 INFO:teuthology.orchestra.run.smithi089.stdout: Running scriptlet: kernel-modules-6.9.0-0.rc2.1.el10.x86_64 3/4 2024-04-19T21:23:43.052 INFO:teuthology.orchestra.run.smithi089.stdout: Installing : kernel-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:23:44.967 INFO:teuthology.orchestra.run.smithi123.stdout:Extra Packages for Enterprise Linux 3.2 MB/s | 21 MB 00:06 2024-04-19T21:23:47.870 INFO:teuthology.orchestra.run.smithi089.stdout: Running scriptlet: kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:23:50.016 INFO:teuthology.orchestra.run.smithi123.stdout:lab-extras 27 kB/s | 1.7 kB 00:00 2024-04-19T21:23:52.482 INFO:teuthology.orchestra.run.smithi123.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-19T21:23:52.482 INFO:teuthology.orchestra.run.smithi123.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-19T21:23:52.575 INFO:teuthology.orchestra.run.smithi123.stdout:Dependencies resolved. 2024-04-19T21:23:52.584 INFO:teuthology.orchestra.run.smithi123.stdout:================================================================================ 2024-04-19T21:23:52.584 INFO:teuthology.orchestra.run.smithi123.stdout: Package Arch Version Repository Size 2024-04-19T21:23:52.584 INFO:teuthology.orchestra.run.smithi123.stdout:================================================================================ 2024-04-19T21:23:52.585 INFO:teuthology.orchestra.run.smithi123.stdout:Installing: 2024-04-19T21:23:52.585 INFO:teuthology.orchestra.run.smithi123.stdout: kernel x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 29 k 2024-04-19T21:23:52.585 INFO:teuthology.orchestra.run.smithi123.stdout:Installing dependencies: 2024-04-19T21:23:52.585 INFO:teuthology.orchestra.run.smithi123.stdout: kernel-core x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 16 M 2024-04-19T21:23:52.585 INFO:teuthology.orchestra.run.smithi123.stdout: kernel-modules x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 34 M 2024-04-19T21:23:52.585 INFO:teuthology.orchestra.run.smithi123.stdout: kernel-modules-core x86_64 6.9.0-0.rc2.1.el10 CentOS-BaseOS 27 M 2024-04-19T21:23:52.586 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-19T21:23:52.586 INFO:teuthology.orchestra.run.smithi123.stdout:Transaction Summary 2024-04-19T21:23:52.586 INFO:teuthology.orchestra.run.smithi123.stdout:================================================================================ 2024-04-19T21:23:52.586 INFO:teuthology.orchestra.run.smithi123.stdout:Install 4 Packages 2024-04-19T21:23:52.586 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-19T21:23:52.586 INFO:teuthology.orchestra.run.smithi123.stdout:Total download size: 78 M 2024-04-19T21:23:52.587 INFO:teuthology.orchestra.run.smithi123.stdout:Installed size: 125 M 2024-04-19T21:23:52.587 INFO:teuthology.orchestra.run.smithi123.stdout:Downloading Packages: 2024-04-19T21:23:52.710 INFO:teuthology.orchestra.run.smithi123.stdout:(1/4): kernel-6.9.0-0.rc2.1.el10.x86_64.rpm 230 kB/s | 29 kB 00:00 2024-04-19T21:23:53.326 INFO:teuthology.orchestra.run.smithi123.stdout:(2/4): kernel-core-6.9.0-0.rc2.1.el10.x86_64.rp 22 MB/s | 16 MB 00:00 2024-04-19T21:23:53.777 INFO:teuthology.orchestra.run.smithi123.stdout:(3/4): kernel-modules-core-6.9.0-0.rc2.1.el10.x 26 MB/s | 27 MB 00:01 2024-04-19T21:23:54.077 INFO:teuthology.orchestra.run.smithi123.stdout:(4/4): kernel-modules-6.9.0-0.rc2.1.el10.x86_64 23 MB/s | 34 MB 00:01 2024-04-19T21:23:54.080 INFO:teuthology.orchestra.run.smithi123.stdout:-------------------------------------------------------------------------------- 2024-04-19T21:23:54.080 INFO:teuthology.orchestra.run.smithi123.stdout:Total 52 MB/s | 78 MB 00:01 2024-04-19T21:23:54.080 INFO:teuthology.orchestra.run.smithi123.stdout:Running transaction check 2024-04-19T21:23:54.444 INFO:teuthology.orchestra.run.smithi123.stdout:Transaction check succeeded. 2024-04-19T21:23:54.444 INFO:teuthology.orchestra.run.smithi123.stdout:Running transaction test 2024-04-19T21:23:55.300 INFO:teuthology.orchestra.run.smithi123.stdout:Transaction test succeeded. 2024-04-19T21:23:55.300 INFO:teuthology.orchestra.run.smithi123.stdout:Running transaction 2024-04-19T21:23:57.514 INFO:teuthology.orchestra.run.smithi123.stdout: Preparing : 1/1 2024-04-19T21:23:58.248 INFO:teuthology.orchestra.run.smithi123.stdout: Installing : kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 1/4 2024-04-19T21:23:58.335 INFO:teuthology.orchestra.run.smithi123.stdout: Installing : kernel-core-6.9.0-0.rc2.1.el10.x86_64 2/4 2024-04-19T21:24:00.684 INFO:teuthology.orchestra.run.smithi123.stdout: Running scriptlet: kernel-core-6.9.0-0.rc2.1.el10.x86_64 2/4 2024-04-19T21:24:00.826 INFO:teuthology.orchestra.run.smithi123.stdout: Installing : kernel-modules-6.9.0-0.rc2.1.el10.x86_64 3/4 2024-04-19T21:24:05.614 INFO:teuthology.orchestra.run.smithi123.stdout: Running scriptlet: kernel-modules-6.9.0-0.rc2.1.el10.x86_64 3/4 2024-04-19T21:24:05.690 INFO:teuthology.orchestra.run.smithi123.stdout: Installing : kernel-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:24:10.464 INFO:teuthology.orchestra.run.smithi123.stdout: Running scriptlet: kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:24:17.647 INFO:teuthology.orchestra.run.smithi089.stdout: Running scriptlet: kernel-core-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:24:17.648 INFO:teuthology.orchestra.run.smithi089.stdout: 2024-04-19T21:24:17.648 INFO:teuthology.orchestra.run.smithi089.stdout:gzip: /lib/modules/6.9.0-0.rc2.1.el10.x86_64/symvers.xz: not in gzip format 2024-04-19T21:24:17.648 INFO:teuthology.orchestra.run.smithi089.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-19T21:24:17.648 INFO:teuthology.orchestra.run.smithi089.stdout: 2024-04-19T21:24:17.689 INFO:teuthology.orchestra.run.smithi089.stdout: Running scriptlet: kernel-modules-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:24:18.047 INFO:teuthology.orchestra.run.smithi089.stdout: Running scriptlet: kernel-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:24:18.048 INFO:teuthology.orchestra.run.smithi089.stdout: Verifying : kernel-6.9.0-0.rc2.1.el10.x86_64 1/4 2024-04-19T21:24:18.048 INFO:teuthology.orchestra.run.smithi089.stdout: Verifying : kernel-core-6.9.0-0.rc2.1.el10.x86_64 2/4 2024-04-19T21:24:18.048 INFO:teuthology.orchestra.run.smithi089.stdout: Verifying : kernel-modules-6.9.0-0.rc2.1.el10.x86_64 3/4 2024-04-19T21:24:18.479 INFO:teuthology.orchestra.run.smithi089.stdout: Verifying : kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:24:18.479 INFO:teuthology.orchestra.run.smithi089.stdout: 2024-04-19T21:24:18.479 INFO:teuthology.orchestra.run.smithi089.stdout:Installed: 2024-04-19T21:24:18.479 INFO:teuthology.orchestra.run.smithi089.stdout: kernel-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:24:18.479 INFO:teuthology.orchestra.run.smithi089.stdout: kernel-core-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:24:18.479 INFO:teuthology.orchestra.run.smithi089.stdout: kernel-modules-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:24:18.479 INFO:teuthology.orchestra.run.smithi089.stdout: kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:24:18.479 INFO:teuthology.orchestra.run.smithi089.stdout: 2024-04-19T21:24:18.479 INFO:teuthology.orchestra.run.smithi089.stdout:Complete! 2024-04-19T21:24:18.813 DEBUG:teuthology.orchestra.run.smithi089:> rpm -q kernel | sort -rV | head -n 1 2024-04-19T21:24:18.924 INFO:teuthology.orchestra.run.smithi089.stdout:kernel-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:24:18.924 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:24:18.924 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:24:18.924 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-19T21:24:18.924 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-19T21:24:18.924 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-04-19T21:24:18.925 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi089.front.sepia.ceph.com, path=None, version=distro) 2024-04-19T21:24:18.925 DEBUG:teuthology.orchestra.run.smithi089:> rpm -q kernel | sort -rV | head -n 1 2024-04-19T21:24:19.004 INFO:teuthology.orchestra.run.smithi089.stdout:kernel-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:24:19.004 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:24:19.005 DEBUG:teuthology.orchestra.run.smithi089:> sudo rpm -qi grub2-tools 2024-04-19T21:24:19.038 INFO:teuthology.orchestra.run.smithi089.stdout:Name : grub2-tools 2024-04-19T21:24:19.039 INFO:teuthology.orchestra.run.smithi089.stdout:Epoch : 1 2024-04-19T21:24:19.039 INFO:teuthology.orchestra.run.smithi089.stdout:Version : 2.06 2024-04-19T21:24:19.039 INFO:teuthology.orchestra.run.smithi089.stdout:Release : 68.el9 2024-04-19T21:24:19.039 INFO:teuthology.orchestra.run.smithi089.stdout:Architecture: x86_64 2024-04-19T21:24:19.039 INFO:teuthology.orchestra.run.smithi089.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-19T21:24:19.039 INFO:teuthology.orchestra.run.smithi089.stdout:Group : Unspecified 2024-04-19T21:24:19.039 INFO:teuthology.orchestra.run.smithi089.stdout:Size : 8264254 2024-04-19T21:24:19.039 INFO:teuthology.orchestra.run.smithi089.stdout:License : GPLv3+ 2024-04-19T21:24:19.039 INFO:teuthology.orchestra.run.smithi089.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-19T21:24:19.040 INFO:teuthology.orchestra.run.smithi089.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-19T21:24:19.040 INFO:teuthology.orchestra.run.smithi089.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-19T21:24:19.040 INFO:teuthology.orchestra.run.smithi089.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-19T21:24:19.040 INFO:teuthology.orchestra.run.smithi089.stdout:Packager : builder@centos.org 2024-04-19T21:24:19.040 INFO:teuthology.orchestra.run.smithi089.stdout:Vendor : CentOS 2024-04-19T21:24:19.040 INFO:teuthology.orchestra.run.smithi089.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-19T21:24:19.040 INFO:teuthology.orchestra.run.smithi089.stdout:Summary : Support tools for GRUB. 2024-04-19T21:24:19.040 INFO:teuthology.orchestra.run.smithi089.stdout:Description : 2024-04-19T21:24:19.040 INFO:teuthology.orchestra.run.smithi089.stdout: 2024-04-19T21:24:19.040 INFO:teuthology.orchestra.run.smithi089.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-19T21:24:19.040 INFO:teuthology.orchestra.run.smithi089.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-19T21:24:19.040 INFO:teuthology.orchestra.run.smithi089.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-19T21:24:19.040 INFO:teuthology.orchestra.run.smithi089.stdout:hardware devices. 2024-04-19T21:24:19.040 INFO:teuthology.orchestra.run.smithi089.stdout: 2024-04-19T21:24:19.041 INFO:teuthology.orchestra.run.smithi089.stdout:This subpackage provides tools for support of all platforms. 2024-04-19T21:24:19.041 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-19T21:24:19.042 INFO:teuthology.task.kernel:Updating grub on smithi089 to boot 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:24:19.042 DEBUG:teuthology.orchestra.run.smithi089:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-19T21:24:19.680 INFO:teuthology.orchestra.run.smithi089.stderr:Generating grub configuration file ... 2024-04-19T21:24:21.064 INFO:teuthology.orchestra.run.smithi089.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-19T21:24:21.092 INFO:teuthology.orchestra.run.smithi089.stderr:done 2024-04-19T21:24:21.095 DEBUG:teuthology.orchestra.run.smithi089:> mktemp 2024-04-19T21:24:21.110 INFO:teuthology.orchestra.run.smithi089.stdout:/tmp/tmp.NQQ2jkZGxL 2024-04-19T21:24:21.111 DEBUG:teuthology.orchestra.run.smithi089:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.NQQ2jkZGxL 2024-04-19T21:24:21.179 DEBUG:teuthology.orchestra.run.smithi089:> sudo chmod 0666 /tmp/tmp.NQQ2jkZGxL 2024-04-19T21:24:21.319 DEBUG:teuthology.orchestra.remote:smithi089:/tmp/tmp.NQQ2jkZGxL is 6KB 2024-04-19T21:24:21.368 DEBUG:teuthology.orchestra.run.smithi089:> rm -fr /tmp/tmp.NQQ2jkZGxL 2024-04-19T21:24:21.382 DEBUG:teuthology.orchestra.run.smithi089:> sudo /bin/ls /boot/loader/entries || true 2024-04-19T21:24:21.447 INFO:teuthology.orchestra.run.smithi089.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-19T21:24:21.447 INFO:teuthology.orchestra.run.smithi089.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-19T21:24:21.447 INFO:teuthology.orchestra.run.smithi089.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-19T21:24:21.447 INFO:teuthology.orchestra.run.smithi089.stdout:15949e3c88704300882482eddfd7baae-6.9.0-0.rc2.1.el10.x86_64.conf 2024-04-19T21:24:21.449 DEBUG:teuthology.orchestra.run.smithi089:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:24:21.596 DEBUG:teuthology.orchestra.run.smithi089:> sudo shutdown -r now 2024-04-19T21:24:40.071 INFO:teuthology.orchestra.run.smithi123.stdout: Running scriptlet: kernel-core-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:24:40.072 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-19T21:24:40.072 INFO:teuthology.orchestra.run.smithi123.stdout:gzip: /lib/modules/6.9.0-0.rc2.1.el10.x86_64/symvers.xz: not in gzip format 2024-04-19T21:24:40.072 INFO:teuthology.orchestra.run.smithi123.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-19T21:24:40.072 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-19T21:24:40.113 INFO:teuthology.orchestra.run.smithi123.stdout: Running scriptlet: kernel-modules-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:24:40.490 INFO:teuthology.orchestra.run.smithi123.stdout: Running scriptlet: kernel-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:24:40.490 INFO:teuthology.orchestra.run.smithi123.stdout: Verifying : kernel-6.9.0-0.rc2.1.el10.x86_64 1/4 2024-04-19T21:24:40.490 INFO:teuthology.orchestra.run.smithi123.stdout: Verifying : kernel-core-6.9.0-0.rc2.1.el10.x86_64 2/4 2024-04-19T21:24:40.490 INFO:teuthology.orchestra.run.smithi123.stdout: Verifying : kernel-modules-6.9.0-0.rc2.1.el10.x86_64 3/4 2024-04-19T21:24:40.904 INFO:teuthology.orchestra.run.smithi123.stdout: Verifying : kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 4/4 2024-04-19T21:24:40.904 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-19T21:24:40.904 INFO:teuthology.orchestra.run.smithi123.stdout:Installed: 2024-04-19T21:24:40.904 INFO:teuthology.orchestra.run.smithi123.stdout: kernel-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:24:40.905 INFO:teuthology.orchestra.run.smithi123.stdout: kernel-core-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:24:40.905 INFO:teuthology.orchestra.run.smithi123.stdout: kernel-modules-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:24:40.905 INFO:teuthology.orchestra.run.smithi123.stdout: kernel-modules-core-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:24:40.905 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-19T21:24:40.905 INFO:teuthology.orchestra.run.smithi123.stdout:Complete! 2024-04-19T21:24:41.247 DEBUG:teuthology.orchestra.run.smithi123:> rpm -q kernel | sort -rV | head -n 1 2024-04-19T21:24:41.389 INFO:teuthology.orchestra.run.smithi123.stdout:kernel-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:24:41.389 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:24:41.390 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:24:41.390 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-19T21:24:41.390 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-19T21:24:41.390 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-04-19T21:24:41.390 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi123.front.sepia.ceph.com, path=None, version=distro) 2024-04-19T21:24:41.390 DEBUG:teuthology.orchestra.run.smithi123:> rpm -q kernel | sort -rV | head -n 1 2024-04-19T21:24:41.469 INFO:teuthology.orchestra.run.smithi123.stdout:kernel-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:24:41.470 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:24:41.470 DEBUG:teuthology.orchestra.run.smithi123:> sudo rpm -qi grub2-tools 2024-04-19T21:24:41.509 INFO:teuthology.orchestra.run.smithi123.stdout:Name : grub2-tools 2024-04-19T21:24:41.509 INFO:teuthology.orchestra.run.smithi123.stdout:Epoch : 1 2024-04-19T21:24:41.509 INFO:teuthology.orchestra.run.smithi123.stdout:Version : 2.06 2024-04-19T21:24:41.509 INFO:teuthology.orchestra.run.smithi123.stdout:Release : 68.el9 2024-04-19T21:24:41.509 INFO:teuthology.orchestra.run.smithi123.stdout:Architecture: x86_64 2024-04-19T21:24:41.509 INFO:teuthology.orchestra.run.smithi123.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-19T21:24:41.509 INFO:teuthology.orchestra.run.smithi123.stdout:Group : Unspecified 2024-04-19T21:24:41.509 INFO:teuthology.orchestra.run.smithi123.stdout:Size : 8264254 2024-04-19T21:24:41.509 INFO:teuthology.orchestra.run.smithi123.stdout:License : GPLv3+ 2024-04-19T21:24:41.509 INFO:teuthology.orchestra.run.smithi123.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-19T21:24:41.510 INFO:teuthology.orchestra.run.smithi123.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-19T21:24:41.510 INFO:teuthology.orchestra.run.smithi123.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-19T21:24:41.510 INFO:teuthology.orchestra.run.smithi123.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-19T21:24:41.510 INFO:teuthology.orchestra.run.smithi123.stdout:Packager : builder@centos.org 2024-04-19T21:24:41.510 INFO:teuthology.orchestra.run.smithi123.stdout:Vendor : CentOS 2024-04-19T21:24:41.510 INFO:teuthology.orchestra.run.smithi123.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-19T21:24:41.510 INFO:teuthology.orchestra.run.smithi123.stdout:Summary : Support tools for GRUB. 2024-04-19T21:24:41.510 INFO:teuthology.orchestra.run.smithi123.stdout:Description : 2024-04-19T21:24:41.510 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-19T21:24:41.510 INFO:teuthology.orchestra.run.smithi123.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-19T21:24:41.510 INFO:teuthology.orchestra.run.smithi123.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-19T21:24:41.510 INFO:teuthology.orchestra.run.smithi123.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-19T21:24:41.511 INFO:teuthology.orchestra.run.smithi123.stdout:hardware devices. 2024-04-19T21:24:41.511 INFO:teuthology.orchestra.run.smithi123.stdout: 2024-04-19T21:24:41.511 INFO:teuthology.orchestra.run.smithi123.stdout:This subpackage provides tools for support of all platforms. 2024-04-19T21:24:41.511 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-19T21:24:41.512 INFO:teuthology.task.kernel:Updating grub on smithi123 to boot 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:24:41.512 DEBUG:teuthology.orchestra.run.smithi123:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-19T21:24:42.136 INFO:teuthology.orchestra.run.smithi123.stderr:Generating grub configuration file ... 2024-04-19T21:24:43.504 INFO:teuthology.orchestra.run.smithi123.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-19T21:24:43.533 INFO:teuthology.orchestra.run.smithi123.stderr:done 2024-04-19T21:24:43.542 DEBUG:teuthology.orchestra.run.smithi123:> mktemp 2024-04-19T21:24:43.560 INFO:teuthology.orchestra.run.smithi123.stdout:/tmp/tmp.JF1dGir7WP 2024-04-19T21:24:43.560 DEBUG:teuthology.orchestra.run.smithi123:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.JF1dGir7WP 2024-04-19T21:24:43.628 DEBUG:teuthology.orchestra.run.smithi123:> sudo chmod 0666 /tmp/tmp.JF1dGir7WP 2024-04-19T21:24:43.765 DEBUG:teuthology.orchestra.remote:smithi123:/tmp/tmp.JF1dGir7WP is 6KB 2024-04-19T21:24:43.813 DEBUG:teuthology.orchestra.run.smithi123:> rm -fr /tmp/tmp.JF1dGir7WP 2024-04-19T21:24:43.827 DEBUG:teuthology.orchestra.run.smithi123:> sudo /bin/ls /boot/loader/entries || true 2024-04-19T21:24:43.900 INFO:teuthology.orchestra.run.smithi123.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-19T21:24:43.900 INFO:teuthology.orchestra.run.smithi123.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-19T21:24:43.900 INFO:teuthology.orchestra.run.smithi123.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-19T21:24:43.900 INFO:teuthology.orchestra.run.smithi123.stdout:15949e3c88704300882482eddfd7baae-6.9.0-0.rc2.1.el10.x86_64.conf 2024-04-19T21:24:43.902 DEBUG:teuthology.orchestra.run.smithi123:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:24:44.055 DEBUG:teuthology.orchestra.run.smithi123:> sudo shutdown -r now 2024-04-19T21:24:51.606 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-04-19T21:24:51.606 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi089.front.sepia.ceph.com' 2024-04-19T21:24:51.607 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi089.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T21:25:10.051 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.89 2024-04-19T21:25:14.062 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-04-19T21:25:14.063 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi123.front.sepia.ceph.com' 2024-04-19T21:25:14.063 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi123.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T21:25:19.054 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi089.front.sepia.ceph.com' 2024-04-19T21:25:19.055 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi089.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T21:25:22.110 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.89 2024-04-19T21:25:32.578 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.123 2024-04-19T21:25:34.113 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi089.front.sepia.ceph.com' 2024-04-19T21:25:34.114 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi089.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T21:25:41.586 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi123.front.sepia.ceph.com' 2024-04-19T21:25:41.587 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi123.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T21:25:44.638 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.123 2024-04-19T21:25:52.546 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.89 2024-04-19T21:25:56.642 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi123.front.sepia.ceph.com' 2024-04-19T21:25:56.643 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi123.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T21:26:07.555 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi089.front.sepia.ceph.com' 2024-04-19T21:26:07.556 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi089.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T21:26:08.160 DEBUG:teuthology.orchestra.run.smithi089:> true 2024-04-19T21:26:08.602 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi089.front.sepia.ceph.com' 2024-04-19T21:26:08.602 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "6.9.0-0.rc2.1.el10.x86_64"... 2024-04-19T21:26:08.602 DEBUG:teuthology.orchestra.run.smithi089:> uname -r 2024-04-19T21:26:08.618 INFO:teuthology.orchestra.run.smithi089.stdout:6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:26:08.618 DEBUG:teuthology.task.kernel:current kernel version is 6.9.0-0.rc2.1.el10.x86_64 vs 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:26:08.618 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-19T21:26:08.618 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-19T21:26:09.620 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-04-19T21:26:09.620 DEBUG:teuthology.orchestra.run.smithi089:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-19T21:26:09.709 INFO:teuthology.orchestra.run.smithi089.stdout:ttyS1 2024-04-19T21:26:09.750 DEBUG:teuthology.parallel:result is None 2024-04-19T21:26:15.071 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.123 2024-04-19T21:26:30.071 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi123.front.sepia.ceph.com' 2024-04-19T21:26:30.072 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi123.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-19T21:26:30.453 DEBUG:teuthology.orchestra.run.smithi123:> true 2024-04-19T21:26:30.852 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi123.front.sepia.ceph.com' 2024-04-19T21:26:30.852 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "6.9.0-0.rc2.1.el10.x86_64"... 2024-04-19T21:26:30.852 DEBUG:teuthology.orchestra.run.smithi123:> uname -r 2024-04-19T21:26:30.867 INFO:teuthology.orchestra.run.smithi123.stdout:6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:26:30.867 DEBUG:teuthology.task.kernel:current kernel version is 6.9.0-0.rc2.1.el10.x86_64 vs 6.9.0-0.rc2.1.el10.x86_64 2024-04-19T21:26:30.867 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-19T21:26:30.867 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-19T21:26:31.869 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-04-19T21:26:31.869 DEBUG:teuthology.orchestra.run.smithi123:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-19T21:26:31.984 INFO:teuthology.orchestra.run.smithi123.stdout:ttyS1 2024-04-19T21:26:32.023 DEBUG:teuthology.parallel:result is None 2024-04-19T21:26:32.024 INFO:teuthology.run_tasks:Running task internal.base... 2024-04-19T21:26:32.031 INFO:teuthology.task.internal:Creating test directory... 2024-04-19T21:26:32.031 DEBUG:teuthology.orchestra.run.smithi089:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-19T21:26:32.035 DEBUG:teuthology.orchestra.run.smithi123:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-19T21:26:32.053 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-04-19T21:26:32.060 INFO:teuthology.run_tasks:Running task internal.archive... 2024-04-19T21:26:32.068 INFO:teuthology.task.internal:Creating archive directory... 2024-04-19T21:26:32.068 DEBUG:teuthology.orchestra.run.smithi089:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-19T21:26:32.096 DEBUG:teuthology.orchestra.run.smithi123:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-19T21:26:32.132 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-04-19T21:26:32.141 INFO:teuthology.task.internal:Enabling coredump saving... 2024-04-19T21:26:32.141 DEBUG:teuthology.orchestra.run.smithi089:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-04-19T21:26:32.164 DEBUG:teuthology.orchestra.run.smithi123:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-04-19T21:26:32.202 INFO:teuthology.orchestra.run.smithi089.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-19T21:26:32.218 INFO:teuthology.orchestra.run.smithi089.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-19T21:26:32.225 INFO:teuthology.orchestra.run.smithi123.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-19T21:26:32.239 INFO:teuthology.orchestra.run.smithi123.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-19T21:26:32.241 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-04-19T21:26:32.248 INFO:teuthology.task.internal:Configuring sudo... 2024-04-19T21:26:32.248 DEBUG:teuthology.orchestra.run.smithi089:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-19T21:26:32.263 DEBUG:teuthology.orchestra.run.smithi123:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-19T21:26:32.292 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-04-19T21:26:32.303 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-04-19T21:26:32.303 DEBUG:teuthology.orchestra.run.smithi089:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-19T21:26:32.334 DEBUG:teuthology.orchestra.run.smithi123:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-19T21:26:32.352 DEBUG:teuthology.orchestra.run.smithi089:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-19T21:26:32.434 DEBUG:teuthology.orchestra.run.smithi089:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-19T21:26:32.511 DEBUG:teuthology.orchestra.run.smithi089:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-19T21:26:32.555 DEBUG:teuthology.orchestra.run.smithi089:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-19T21:26:32.599 DEBUG:teuthology.orchestra.run.smithi089:> set -ex 2024-04-19T21:26:32.599 DEBUG:teuthology.orchestra.run.smithi089:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-19T21:26:32.669 DEBUG:teuthology.orchestra.run.smithi123:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-19T21:26:32.712 DEBUG:teuthology.orchestra.run.smithi123:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-19T21:26:32.769 DEBUG:teuthology.orchestra.run.smithi123:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-19T21:26:32.857 DEBUG:teuthology.orchestra.run.smithi123:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-19T21:26:32.902 DEBUG:teuthology.orchestra.run.smithi123:> set -ex 2024-04-19T21:26:32.903 DEBUG:teuthology.orchestra.run.smithi123:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-19T21:26:32.974 DEBUG:teuthology.orchestra.run.smithi089:> sudo service rsyslog restart 2024-04-19T21:26:32.976 DEBUG:teuthology.orchestra.run.smithi123:> sudo service rsyslog restart 2024-04-19T21:26:33.026 INFO:teuthology.orchestra.run.smithi089.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-19T21:26:33.089 INFO:teuthology.orchestra.run.smithi123.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-19T21:26:33.497 INFO:teuthology.run_tasks:Running task internal.timer... 2024-04-19T21:26:33.505 INFO:teuthology.task.internal:Starting timer... 2024-04-19T21:26:33.505 INFO:teuthology.run_tasks:Running task pcp... 2024-04-19T21:26:33.516 INFO:teuthology.run_tasks:Running task selinux... 2024-04-19T21:26:33.526 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-04-19T21:26:33.526 DEBUG:teuthology.orchestra.run.smithi089:> sudo service auditd rotate 2024-04-19T21:26:33.633 INFO:teuthology.orchestra.run.smithi089.stdout:Rotating logs: 2024-04-19T21:26:33.635 DEBUG:teuthology.orchestra.run.smithi123:> sudo service auditd rotate 2024-04-19T21:26:33.714 INFO:teuthology.orchestra.run.smithi123.stdout:Rotating logs: 2024-04-19T21:26:33.716 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-04-19T21:26:33.716 DEBUG:teuthology.orchestra.run.smithi089:> /usr/sbin/getenforce 2024-04-19T21:26:33.739 INFO:teuthology.orchestra.run.smithi089.stdout:Permissive 2024-04-19T21:26:33.739 DEBUG:teuthology.orchestra.run.smithi123:> /usr/sbin/getenforce 2024-04-19T21:26:33.763 INFO:teuthology.orchestra.run.smithi123.stdout:Permissive 2024-04-19T21:26:33.763 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi089.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi123.front.sepia.ceph.com': 'permissive'} 2024-04-19T21:26:33.763 DEBUG:teuthology.orchestra.run.smithi089:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-19T21:26:33.808 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T21:26:33.809 DEBUG:teuthology.orchestra.run.smithi123:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-19T21:26:33.839 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T21:26:33.840 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-04-19T21:26:33.840 DEBUG:teuthology.orchestra.run.smithi089:> sudo /usr/sbin/setenforce permissive 2024-04-19T21:26:33.882 DEBUG:teuthology.orchestra.run.smithi123:> sudo /usr/sbin/setenforce permissive 2024-04-19T21:26:33.916 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-04-19T21:26:33.926 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-04-19T21:26:33.943 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2024-04-19T21:26:33.944 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi089.front.sepia.ceph.com,smithi123.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-04-19T21:30:15.609 INFO:teuthology.task.ansible:Archiving ansible failure log at: /home/teuthworker/archive/teuthology-2024-04-19_21:08:02-orch-squid-distro-default-smithi/7663768/ansible_failures.yaml 2024-04-19T21:30:15.611 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/task/__init__.py", line 123, in __enter__ self.begin() File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/task/ansible.py", line 508, in begin super(CephLab, self).begin() File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/task/ansible.py", line 342, in begin self.execute_playbook() File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/task/ansible.py", line 374, in execute_playbook self._handle_failure(command, status) File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/task/ansible.py", line 402, in _handle_failure raise AnsibleFailedError(failures) teuthology.exceptions.AnsibleFailedError: smithi089.front.sepia.ceph.com: _ansible_no_log: null changed: false failures: [] invocation: module_args: allow_downgrade: false allowerasing: false autoremove: false bugfix: false cacheonly: false conf_file: null disable_excludes: null disable_gpg_check: false disable_plugin: [] disablerepo: [] download_dir: null download_only: false enable_plugin: [] enablerepo: [] exclude: [] install_repoquery: true install_weak_deps: true installroot: / list: null lock_timeout: 30 name: - dnf-utils - sysstat - libedit - boost-thread - xfsprogs - gdisk - parted - libgcrypt - fuse-libs - openssl - libuuid - podman - attr - lsof - gettext - bc - xfsdump - blktrace - usbredir - valgrind - nfs-utils - ncurses-devel - gcc - git - genisoimage - qemu-img - qemu-kvm-core - qemu-kvm-block-rbd - libacl-devel - autoconf - gdb - iozone nobest: false releasever: null security: false skip_broken: false sslverify: true state: present update_cache: false update_only: false validate_certs: true msg: "Depsolve Error occurred: \n Problem: problem with installed package annobin-12.12-1.el9.x86_64\n\ \ - package annobin-12.12-1.el9.x86_64 from @System requires (gcc >= 11 with\ \ gcc < 12), but none of the providers can be installed\n - package annobin-12.09-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.12-1.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - package\ \ annobin-12.28-1.el9.x86_64 from appstream requires (gcc >= 11 with gcc < 12),\ \ but none of the providers can be installed\n - package annobin-12.31-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.31-2.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - cannot\ \ install both gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream and gcc-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both gcc-11.3.1-4.4.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.1.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-2.3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - package gcc-c++-14.0.1-0.15.el10.x86_64\ \ from CentOS-AppStream requires gcc = 14.0.1-0.15.el10, but none of the providers\ \ can be installed\n - problem with installed package gcc-c++-11.4.1-2.1.el9.x86_64\n\ \ - package gcc-c++-11.4.1-2.1.el9.x86_64 from appstream requires libstdc++ =\ \ 11.4.1-2.1.el9, but none of the providers can be installed\n - package gcc-c++-11.4.1-2.1.el9.x86_64\ \ from @System requires libstdc++ = 11.4.1-2.1.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.3.1-4.4.el9.x86_64 from appstream requires\ \ libstdc++ = 11.3.1-4.4.el9, but none of the providers can be installed\n -\ \ package gcc-c++-11.4.1-2.3.el9.x86_64 from appstream requires libstdc++ = 11.4.1-2.3.el9,\ \ but none of the providers can be installed\n - package gcc-c++-11.4.1-2.el9.x86_64\ \ from appstream requires libstdc++ = 11.4.1-2.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.4.1-3.el9.x86_64 from appstream requires\ \ libstdc++ = 11.4.1-3.el9, but none of the providers can be installed\n - libstdc++-11.4.1-2.1.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.3.1-4.4.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - cannot install\ \ both libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS and libstdc++-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both libstdc++-11.3.1-4.4.el9.x86_64 from baseos\ \ and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot install\ \ both libstdc++-11.4.1-2.1.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-2.3.el9.x86_64\ \ from baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot\ \ install both libstdc++-11.4.1-2.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-3.el9.x86_64 from\ \ baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - package\ \ python3-hawkey-0.73.0-1.el10.x86_64 from CentOS-BaseOS requires libstdc++.so.6(GLIBCXX_3.4.30)(64bit),\ \ but none of the providers can be installed\n - package python3-dnf-4.19.0-2.el10.noarch\ \ from CentOS-BaseOS requires python3-hawkey >= 0.73.0, but none of the providers\ \ can be installed\n - package yum-utils-4.5.0-1.el10.noarch from CentOS-BaseOS\ \ requires python3-dnf >= 4.19.0, but none of the providers can be installed\n\ \ - cannot install the best candidate for the job" rc: 1 results: []smithi123.front.sepia.ceph.com: _ansible_no_log: null changed: false failures: [] invocation: module_args: allow_downgrade: false allowerasing: false autoremove: false bugfix: false cacheonly: false conf_file: null disable_excludes: null disable_gpg_check: false disable_plugin: [] disablerepo: [] download_dir: null download_only: false enable_plugin: [] enablerepo: [] exclude: [] install_repoquery: true install_weak_deps: true installroot: / list: null lock_timeout: 30 name: - dnf-utils - sysstat - libedit - boost-thread - xfsprogs - gdisk - parted - libgcrypt - fuse-libs - openssl - libuuid - podman - attr - lsof - gettext - bc - xfsdump - blktrace - usbredir - valgrind - nfs-utils - ncurses-devel - gcc - git - genisoimage - qemu-img - qemu-kvm-core - qemu-kvm-block-rbd - libacl-devel - autoconf - gdb - iozone nobest: false releasever: null security: false skip_broken: false sslverify: true state: present update_cache: false update_only: false validate_certs: true msg: "Depsolve Error occurred: \n Problem: problem with installed package annobin-12.12-1.el9.x86_64\n\ \ - package annobin-12.12-1.el9.x86_64 from @System requires (gcc >= 11 with\ \ gcc < 12), but none of the providers can be installed\n - package annobin-12.09-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.12-1.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - package\ \ annobin-12.28-1.el9.x86_64 from appstream requires (gcc >= 11 with gcc < 12),\ \ but none of the providers can be installed\n - package annobin-12.31-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.31-2.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - cannot\ \ install both gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream and gcc-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both gcc-11.3.1-4.4.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.1.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-2.3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - package gcc-c++-14.0.1-0.15.el10.x86_64\ \ from CentOS-AppStream requires gcc = 14.0.1-0.15.el10, but none of the providers\ \ can be installed\n - problem with installed package gcc-c++-11.4.1-2.1.el9.x86_64\n\ \ - package gcc-c++-11.4.1-2.1.el9.x86_64 from appstream requires libstdc++ =\ \ 11.4.1-2.1.el9, but none of the providers can be installed\n - package gcc-c++-11.4.1-2.1.el9.x86_64\ \ from @System requires libstdc++ = 11.4.1-2.1.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.3.1-4.4.el9.x86_64 from appstream requires\ \ libstdc++ = 11.3.1-4.4.el9, but none of the providers can be installed\n -\ \ package gcc-c++-11.4.1-2.3.el9.x86_64 from appstream requires libstdc++ = 11.4.1-2.3.el9,\ \ but none of the providers can be installed\n - package gcc-c++-11.4.1-2.el9.x86_64\ \ from appstream requires libstdc++ = 11.4.1-2.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.4.1-3.el9.x86_64 from appstream requires\ \ libstdc++ = 11.4.1-3.el9, but none of the providers can be installed\n - libstdc++-11.4.1-2.1.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.3.1-4.4.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - cannot install\ \ both libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS and libstdc++-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both libstdc++-11.3.1-4.4.el9.x86_64 from baseos\ \ and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot install\ \ both libstdc++-11.4.1-2.1.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-2.3.el9.x86_64\ \ from baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot\ \ install both libstdc++-11.4.1-2.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-3.el9.x86_64 from\ \ baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - package\ \ python3-hawkey-0.73.0-1.el10.x86_64 from CentOS-BaseOS requires libstdc++.so.6(GLIBCXX_3.4.30)(64bit),\ \ but none of the providers can be installed\n - package python3-dnf-4.19.0-2.el10.noarch\ \ from CentOS-BaseOS requires python3-hawkey >= 0.73.0, but none of the providers\ \ can be installed\n - package yum-utils-4.5.0-1.el10.noarch from CentOS-BaseOS\ \ requires python3-dnf >= 4.19.0, but none of the providers can be installed\n\ \ - cannot install the best candidate for the job" rc: 1 results: [] 2024-04-19T21:30:15.841 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=49ba0f86712e441ab6cd5fcaf2ce5270 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/task/__init__.py", line 123, in __enter__ self.begin() File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/task/ansible.py", line 508, in begin super(CephLab, self).begin() File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/task/ansible.py", line 342, in begin self.execute_playbook() File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/task/ansible.py", line 374, in execute_playbook self._handle_failure(command, status) File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/task/ansible.py", line 402, in _handle_failure raise AnsibleFailedError(failures) teuthology.exceptions.AnsibleFailedError: smithi089.front.sepia.ceph.com: _ansible_no_log: null changed: false failures: [] invocation: module_args: allow_downgrade: false allowerasing: false autoremove: false bugfix: false cacheonly: false conf_file: null disable_excludes: null disable_gpg_check: false disable_plugin: [] disablerepo: [] download_dir: null download_only: false enable_plugin: [] enablerepo: [] exclude: [] install_repoquery: true install_weak_deps: true installroot: / list: null lock_timeout: 30 name: - dnf-utils - sysstat - libedit - boost-thread - xfsprogs - gdisk - parted - libgcrypt - fuse-libs - openssl - libuuid - podman - attr - lsof - gettext - bc - xfsdump - blktrace - usbredir - valgrind - nfs-utils - ncurses-devel - gcc - git - genisoimage - qemu-img - qemu-kvm-core - qemu-kvm-block-rbd - libacl-devel - autoconf - gdb - iozone nobest: false releasever: null security: false skip_broken: false sslverify: true state: present update_cache: false update_only: false validate_certs: true msg: "Depsolve Error occurred: \n Problem: problem with installed package annobin-12.12-1.el9.x86_64\n\ \ - package annobin-12.12-1.el9.x86_64 from @System requires (gcc >= 11 with\ \ gcc < 12), but none of the providers can be installed\n - package annobin-12.09-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.12-1.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - package\ \ annobin-12.28-1.el9.x86_64 from appstream requires (gcc >= 11 with gcc < 12),\ \ but none of the providers can be installed\n - package annobin-12.31-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.31-2.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - cannot\ \ install both gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream and gcc-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both gcc-11.3.1-4.4.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.1.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-2.3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - package gcc-c++-14.0.1-0.15.el10.x86_64\ \ from CentOS-AppStream requires gcc = 14.0.1-0.15.el10, but none of the providers\ \ can be installed\n - problem with installed package gcc-c++-11.4.1-2.1.el9.x86_64\n\ \ - package gcc-c++-11.4.1-2.1.el9.x86_64 from appstream requires libstdc++ =\ \ 11.4.1-2.1.el9, but none of the providers can be installed\n - package gcc-c++-11.4.1-2.1.el9.x86_64\ \ from @System requires libstdc++ = 11.4.1-2.1.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.3.1-4.4.el9.x86_64 from appstream requires\ \ libstdc++ = 11.3.1-4.4.el9, but none of the providers can be installed\n -\ \ package gcc-c++-11.4.1-2.3.el9.x86_64 from appstream requires libstdc++ = 11.4.1-2.3.el9,\ \ but none of the providers can be installed\n - package gcc-c++-11.4.1-2.el9.x86_64\ \ from appstream requires libstdc++ = 11.4.1-2.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.4.1-3.el9.x86_64 from appstream requires\ \ libstdc++ = 11.4.1-3.el9, but none of the providers can be installed\n - libstdc++-11.4.1-2.1.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.3.1-4.4.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - cannot install\ \ both libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS and libstdc++-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both libstdc++-11.3.1-4.4.el9.x86_64 from baseos\ \ and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot install\ \ both libstdc++-11.4.1-2.1.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-2.3.el9.x86_64\ \ from baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot\ \ install both libstdc++-11.4.1-2.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-3.el9.x86_64 from\ \ baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - package\ \ python3-hawkey-0.73.0-1.el10.x86_64 from CentOS-BaseOS requires libstdc++.so.6(GLIBCXX_3.4.30)(64bit),\ \ but none of the providers can be installed\n - package python3-dnf-4.19.0-2.el10.noarch\ \ from CentOS-BaseOS requires python3-hawkey >= 0.73.0, but none of the providers\ \ can be installed\n - package yum-utils-4.5.0-1.el10.noarch from CentOS-BaseOS\ \ requires python3-dnf >= 4.19.0, but none of the providers can be installed\n\ \ - cannot install the best candidate for the job" rc: 1 results: []smithi123.front.sepia.ceph.com: _ansible_no_log: null changed: false failures: [] invocation: module_args: allow_downgrade: false allowerasing: false autoremove: false bugfix: false cacheonly: false conf_file: null disable_excludes: null disable_gpg_check: false disable_plugin: [] disablerepo: [] download_dir: null download_only: false enable_plugin: [] enablerepo: [] exclude: [] install_repoquery: true install_weak_deps: true installroot: / list: null lock_timeout: 30 name: - dnf-utils - sysstat - libedit - boost-thread - xfsprogs - gdisk - parted - libgcrypt - fuse-libs - openssl - libuuid - podman - attr - lsof - gettext - bc - xfsdump - blktrace - usbredir - valgrind - nfs-utils - ncurses-devel - gcc - git - genisoimage - qemu-img - qemu-kvm-core - qemu-kvm-block-rbd - libacl-devel - autoconf - gdb - iozone nobest: false releasever: null security: false skip_broken: false sslverify: true state: present update_cache: false update_only: false validate_certs: true msg: "Depsolve Error occurred: \n Problem: problem with installed package annobin-12.12-1.el9.x86_64\n\ \ - package annobin-12.12-1.el9.x86_64 from @System requires (gcc >= 11 with\ \ gcc < 12), but none of the providers can be installed\n - package annobin-12.09-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.12-1.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - package\ \ annobin-12.28-1.el9.x86_64 from appstream requires (gcc >= 11 with gcc < 12),\ \ but none of the providers can be installed\n - package annobin-12.31-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.31-2.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - cannot\ \ install both gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream and gcc-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both gcc-11.3.1-4.4.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.1.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-2.3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - package gcc-c++-14.0.1-0.15.el10.x86_64\ \ from CentOS-AppStream requires gcc = 14.0.1-0.15.el10, but none of the providers\ \ can be installed\n - problem with installed package gcc-c++-11.4.1-2.1.el9.x86_64\n\ \ - package gcc-c++-11.4.1-2.1.el9.x86_64 from appstream requires libstdc++ =\ \ 11.4.1-2.1.el9, but none of the providers can be installed\n - package gcc-c++-11.4.1-2.1.el9.x86_64\ \ from @System requires libstdc++ = 11.4.1-2.1.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.3.1-4.4.el9.x86_64 from appstream requires\ \ libstdc++ = 11.3.1-4.4.el9, but none of the providers can be installed\n -\ \ package gcc-c++-11.4.1-2.3.el9.x86_64 from appstream requires libstdc++ = 11.4.1-2.3.el9,\ \ but none of the providers can be installed\n - package gcc-c++-11.4.1-2.el9.x86_64\ \ from appstream requires libstdc++ = 11.4.1-2.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.4.1-3.el9.x86_64 from appstream requires\ \ libstdc++ = 11.4.1-3.el9, but none of the providers can be installed\n - libstdc++-11.4.1-2.1.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.3.1-4.4.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - cannot install\ \ both libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS and libstdc++-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both libstdc++-11.3.1-4.4.el9.x86_64 from baseos\ \ and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot install\ \ both libstdc++-11.4.1-2.1.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-2.3.el9.x86_64\ \ from baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot\ \ install both libstdc++-11.4.1-2.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-3.el9.x86_64 from\ \ baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - package\ \ python3-hawkey-0.73.0-1.el10.x86_64 from CentOS-BaseOS requires libstdc++.so.6(GLIBCXX_3.4.30)(64bit),\ \ but none of the providers can be installed\n - package python3-dnf-4.19.0-2.el10.noarch\ \ from CentOS-BaseOS requires python3-hawkey >= 0.73.0, but none of the providers\ \ can be installed\n - package yum-utils-4.5.0-1.el10.noarch from CentOS-BaseOS\ \ requires python3-dnf >= 4.19.0, but none of the providers can be installed\n\ \ - cannot install the best candidate for the job" rc: 1 results: [] 2024-04-19T21:30:15.844 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-04-19T21:30:15.853 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-04-19T21:30:15.854 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-04-19T21:30:15.862 DEBUG:teuthology.orchestra.run.smithi089:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-04-19T21:30:15.931 DEBUG:teuthology.orchestra.run.smithi123:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-04-19T21:30:15.995 DEBUG:teuthology.orchestra.run.smithi089:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-19T21:30:16.027 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T21:30:16.028 DEBUG:teuthology.orchestra.run.smithi123:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-19T21:30:16.059 INFO:teuthology.orchestra.run.smithi123.stdout:type=AVC msg=audit(1713561994.048:208): avc: denied { checkpoint_restore } for pid=1331 comm="agetty" capability=40 scontext=system_u:system_r:getty_t:s0-s0:c0.c1023 tcontext=system_u:system_r:getty_t:s0-s0:c0.c1023 tclass=capability2 permissive=1 2024-04-19T21:30:16.059 DEBUG:teuthology.task.selinux:ubuntu@smithi123.front.sepia.ceph.com has 1 denials 2024-04-19T21:30:16.060 ERROR:teuthology.run_tasks:Manager failed: selinux Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/run_tasks.py", line 154, in run_tasks suppress = manager.__exit__(*exc_info) File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/task/__init__.py", line 136, in __exit__ self.teardown() File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/task/selinux.py", line 166, in teardown self.get_new_denials() File "/home/teuthworker/src/git.ceph.com_teuthology_9481b1d62f50e7d0a4f3dd83adf6945b08d5ff17/teuthology/task/selinux.py", line 215, in get_new_denials raise SELinuxError(node=remote, teuthology.exceptions.SELinuxError: SELinux denials found on ubuntu@smithi123.front.sepia.ceph.com: ['type=AVC msg=audit(1713561994.048:208): avc: denied { checkpoint_restore } for pid=1331 comm="agetty" capability=40 scontext=system_u:system_r:getty_t:s0-s0:c0.c1023 tcontext=system_u:system_r:getty_t:s0-s0:c0.c1023 tclass=capability2 permissive=1'] 2024-04-19T21:30:16.065 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-04-19T21:30:16.074 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-04-19T21:30:16.084 INFO:teuthology.task.internal:Duration was 222.578588 seconds 2024-04-19T21:30:16.084 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-04-19T21:30:16.092 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-04-19T21:30:16.093 DEBUG:teuthology.orchestra.run.smithi089:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-19T21:30:16.096 DEBUG:teuthology.orchestra.run.smithi123:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-19T21:30:16.141 INFO:teuthology.orchestra.run.smithi089.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-19T21:30:16.146 INFO:teuthology.orchestra.run.smithi123.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-19T21:30:16.453 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-04-19T21:30:16.454 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi089.front.sepia.ceph.com 2024-04-19T21:30:16.454 DEBUG:teuthology.orchestra.run.smithi089:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-04-19T21:30:16.483 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi123.front.sepia.ceph.com 2024-04-19T21:30:16.483 DEBUG:teuthology.orchestra.run.smithi123:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-04-19T21:30:16.511 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-04-19T21:30:16.512 DEBUG:teuthology.orchestra.run.smithi089:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-19T21:30:16.526 DEBUG:teuthology.orchestra.run.smithi123:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-19T21:30:16.582 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-04-19T21:30:16.582 DEBUG:teuthology.orchestra.run.smithi089:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-19T21:30:16.600 DEBUG:teuthology.orchestra.run.smithi123:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-19T21:30:16.707 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-04-19T21:30:16.717 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-04-19T21:30:16.717 DEBUG:teuthology.orchestra.run.smithi089:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-19T21:30:16.747 DEBUG:teuthology.orchestra.run.smithi123:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-19T21:30:16.777 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-04-19T21:30:16.786 DEBUG:teuthology.orchestra.run.smithi089:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-04-19T21:30:16.789 DEBUG:teuthology.orchestra.run.smithi123:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-04-19T21:30:16.814 INFO:teuthology.orchestra.run.smithi089.stdout:kernel.core_pattern = core 2024-04-19T21:30:16.844 INFO:teuthology.orchestra.run.smithi123.stdout:kernel.core_pattern = core 2024-04-19T21:30:16.871 DEBUG:teuthology.orchestra.run.smithi089:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-19T21:30:16.905 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T21:30:16.906 DEBUG:teuthology.orchestra.run.smithi123:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-19T21:30:16.926 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-19T21:30:16.927 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-04-19T21:30:16.937 INFO:teuthology.task.internal:Transferring archived files... 2024-04-19T21:30:16.938 DEBUG:teuthology.misc:Transferring archived files from smithi089:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-19_21:08:02-orch-squid-distro-default-smithi/7663768/remote/smithi089 2024-04-19T21:30:16.939 DEBUG:teuthology.orchestra.run.smithi089:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-19T21:30:16.997 DEBUG:teuthology.misc:Transferring archived files from smithi123:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-19_21:08:02-orch-squid-distro-default-smithi/7663768/remote/smithi123 2024-04-19T21:30:16.998 DEBUG:teuthology.orchestra.run.smithi123:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-19T21:30:17.047 INFO:teuthology.task.internal:Removing archive directory... 2024-04-19T21:30:17.047 DEBUG:teuthology.orchestra.run.smithi089:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-19T21:30:17.050 DEBUG:teuthology.orchestra.run.smithi123:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-19T21:30:17.097 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-04-19T21:30:17.108 INFO:teuthology.task.internal:Not uploading archives. 2024-04-19T21:30:17.108 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-04-19T21:30:17.120 INFO:teuthology.task.internal:Tidying up after the test... 2024-04-19T21:30:17.121 DEBUG:teuthology.orchestra.run.smithi089:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-19T21:30:17.124 DEBUG:teuthology.orchestra.run.smithi123:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-19T21:30:17.137 INFO:teuthology.orchestra.run.smithi089.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 19 21:30 /home/ubuntu/cephtest 2024-04-19T21:30:17.153 INFO:teuthology.orchestra.run.smithi123.stdout: 265452 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 19 21:30 /home/ubuntu/cephtest 2024-04-19T21:30:17.156 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-04-19T21:30:17.167 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-04-19T21:30:17.180 DEBUG:teuthology.run_tasks:Exception was not quenched, exiting: SELinuxError: SELinux denials found on ubuntu@smithi123.front.sepia.ceph.com: ['type=AVC msg=audit(1713561994.048:208): avc: denied { checkpoint_restore } for pid=1331 comm="agetty" capability=40 scontext=system_u:system_r:getty_t:s0-s0:c0.c1023 tcontext=system_u:system_r:getty_t:s0-s0:c0.c1023 tclass=capability2 permissive=1'] 2024-04-19T21:30:17.180 INFO:teuthology.nuke:Checking targets against current locks 2024-04-19T21:30:17.208 DEBUG:teuthology.nuke:shortname: smithi089 2024-04-19T21:30:17.209 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-19T21:30:17.232 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi089.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-19_21:08:02-orch-squid-distro-default-smithi/7663768', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-19 21:17:54.867532', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCQdUaEYaXImg+wEmJlV97rxEUDQBRoQ3/4SC1xbbJmBzSJ+xK17/w0GdB8eir3B1ruN42lwyV7T4Rp+rPr7qeQ='} 2024-04-19T21:30:17.238 DEBUG:teuthology.nuke:shortname: smithi123 2024-04-19T21:30:17.238 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-19T21:30:17.262 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi123.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-19_21:08:02-orch-squid-distro-default-smithi/7663768', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-19 21:17:54.868911', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBL2Had0ebn5JsbbEOFZZVSfQ6Qe586Q/UtXKhyip/m4/n+fwqVoxuUOzW8LbXjPkRoon3UmuA9YJiS1vC/dFXaM='} 2024-04-19T21:30:17.282 INFO:teuthology.orchestra.console.smithi089:Power off 2024-04-19T21:30:17.282 DEBUG:teuthology.orchestra.console.smithi089:pexpect command: ipmitool -H smithi089.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-19T21:30:17.305 DEBUG:teuthology.orchestra.console.smithi089:power off output: Chassis Power Control: Down/Off 2024-04-19T21:30:17.306 DEBUG:teuthology.orchestra.console.smithi089:pexpect command: ipmitool -H smithi089.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T21:30:17.322 INFO:teuthology.orchestra.console.smithi123:Power off 2024-04-19T21:30:17.323 DEBUG:teuthology.orchestra.console.smithi123:pexpect command: ipmitool -H smithi123.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-19T21:30:17.332 DEBUG:teuthology.orchestra.console.smithi089:check power output: Chassis Power is on 2024-04-19T21:30:17.345 DEBUG:teuthology.orchestra.console.smithi123:power off output: Chassis Power Control: Down/Off 2024-04-19T21:30:17.345 DEBUG:teuthology.orchestra.console.smithi123:pexpect command: ipmitool -H smithi123.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T21:30:17.371 DEBUG:teuthology.orchestra.console.smithi123:check power output: Chassis Power is on 2024-04-19T21:30:21.334 DEBUG:teuthology.orchestra.console.smithi089:pexpect command: ipmitool -H smithi089.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T21:30:21.372 DEBUG:teuthology.orchestra.console.smithi123:pexpect command: ipmitool -H smithi123.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T21:30:21.445 DEBUG:teuthology.orchestra.console.smithi089:check power output: Chassis Power is on 2024-04-19T21:30:21.483 DEBUG:teuthology.orchestra.console.smithi123:check power output: Chassis Power is on 2024-04-19T21:30:25.450 DEBUG:teuthology.orchestra.console.smithi089:pexpect command: ipmitool -H smithi089.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T21:30:25.484 DEBUG:teuthology.orchestra.console.smithi123:pexpect command: ipmitool -H smithi123.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T21:30:25.560 DEBUG:teuthology.orchestra.console.smithi089:check power output: Chassis Power is on 2024-04-19T21:30:25.594 DEBUG:teuthology.orchestra.console.smithi123:check power output: Chassis Power is on 2024-04-19T21:30:29.565 DEBUG:teuthology.orchestra.console.smithi089:pexpect command: ipmitool -H smithi089.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T21:30:29.595 DEBUG:teuthology.orchestra.console.smithi123:pexpect command: ipmitool -H smithi123.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-19T21:30:29.675 DEBUG:teuthology.orchestra.console.smithi089:check power output: Chassis Power is off 2024-04-19T21:30:29.705 DEBUG:teuthology.orchestra.console.smithi123:check power output: Chassis Power is off 2024-04-19T21:30:29.776 INFO:teuthology.orchestra.console.smithi089:Power off completed 2024-04-19T21:30:29.806 INFO:teuthology.orchestra.console.smithi123:Power off completed 2024-04-19T21:30:29.945 INFO:teuthology.run:Summary data: description: orch/cephadm/smoke-roleless/{0-distro/centos_9.stream 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} duration: 222.57858800888062 failure_reason: 'smithi089.front.sepia.ceph.com: _ansible_no_log: null changed: false failures: [] invocation: module_args: allow_downgrade: false allowerasing: false autoremove: false bugfix: false cacheonly: false conf_file: null disable_excludes: null disable_gpg_check: false disable_plugin: [] disablerepo: [] download_dir: null download_only: false enable_plugin: [] enablerepo: [] exclude: [] install_repoquery: true install_weak_deps: true installroot: / list: null lock_timeout: 30 name: - dnf-utils - sysstat - libedit - boost-thread - xfsprogs - gdisk - parted - libgcrypt - fuse-libs - openssl - libuuid - podman - attr - lsof - gettext - bc - xfsdump - blktrace - usbredir - valgrind - nfs-utils - ncurses-devel - gcc - git - genisoimage - qemu-img - qemu-kvm-core - qemu-kvm-block-rbd - libacl-devel - autoconf - gdb - iozone nobest: false releasever: null security: false skip_broken: false sslverify: true state: present update_cache: false update_only: false validate_certs: true msg: "Depsolve Error occurred: \n Problem: problem with installed package annobin-12.12-1.el9.x86_64\n\ \ - package annobin-12.12-1.el9.x86_64 from @System requires (gcc >= 11 with\ \ gcc < 12), but none of the providers can be installed\n - package annobin-12.09-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.12-1.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - package\ \ annobin-12.28-1.el9.x86_64 from appstream requires (gcc >= 11 with gcc < 12),\ \ but none of the providers can be installed\n - package annobin-12.31-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.31-2.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - cannot\ \ install both gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream and gcc-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both gcc-11.3.1-4.4.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.1.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-2.3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - package gcc-c++-14.0.1-0.15.el10.x86_64\ \ from CentOS-AppStream requires gcc = 14.0.1-0.15.el10, but none of the providers\ \ can be installed\n - problem with installed package gcc-c++-11.4.1-2.1.el9.x86_64\n\ \ - package gcc-c++-11.4.1-2.1.el9.x86_64 from appstream requires libstdc++ =\ \ 11.4.1-2.1.el9, but none of the providers can be installed\n - package gcc-c++-11.4.1-2.1.el9.x86_64\ \ from @System requires libstdc++ = 11.4.1-2.1.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.3.1-4.4.el9.x86_64 from appstream requires\ \ libstdc++ = 11.3.1-4.4.el9, but none of the providers can be installed\n -\ \ package gcc-c++-11.4.1-2.3.el9.x86_64 from appstream requires libstdc++ = 11.4.1-2.3.el9,\ \ but none of the providers can be installed\n - package gcc-c++-11.4.1-2.el9.x86_64\ \ from appstream requires libstdc++ = 11.4.1-2.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.4.1-3.el9.x86_64 from appstream requires\ \ libstdc++ = 11.4.1-3.el9, but none of the providers can be installed\n - libstdc++-11.4.1-2.1.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.3.1-4.4.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - cannot install\ \ both libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS and libstdc++-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both libstdc++-11.3.1-4.4.el9.x86_64 from baseos\ \ and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot install\ \ both libstdc++-11.4.1-2.1.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-2.3.el9.x86_64\ \ from baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot\ \ install both libstdc++-11.4.1-2.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-3.el9.x86_64 from\ \ baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - package\ \ python3-hawkey-0.73.0-1.el10.x86_64 from CentOS-BaseOS requires libstdc++.so.6(GLIBCXX_3.4.30)(64bit),\ \ but none of the providers can be installed\n - package python3-dnf-4.19.0-2.el10.noarch\ \ from CentOS-BaseOS requires python3-hawkey >= 0.73.0, but none of the providers\ \ can be installed\n - package yum-utils-4.5.0-1.el10.noarch from CentOS-BaseOS\ \ requires python3-dnf >= 4.19.0, but none of the providers can be installed\n\ \ - cannot install the best candidate for the job" rc: 1 results: []smithi123.front.sepia.ceph.com: _ansible_no_log: null changed: false failures: [] invocation: module_args: allow_downgrade: false allowerasing: false autoremove: false bugfix: false cacheonly: false conf_file: null disable_excludes: null disable_gpg_check: false disable_plugin: [] disablerepo: [] download_dir: null download_only: false enable_plugin: [] enablerepo: [] exclude: [] install_repoquery: true install_weak_deps: true installroot: / list: null lock_timeout: 30 name: - dnf-utils - sysstat - libedit - boost-thread - xfsprogs - gdisk - parted - libgcrypt - fuse-libs - openssl - libuuid - podman - attr - lsof - gettext - bc - xfsdump - blktrace - usbredir - valgrind - nfs-utils - ncurses-devel - gcc - git - genisoimage - qemu-img - qemu-kvm-core - qemu-kvm-block-rbd - libacl-devel - autoconf - gdb - iozone nobest: false releasever: null security: false skip_broken: false sslverify: true state: present update_cache: false update_only: false validate_certs: true msg: "Depsolve Error occurred: \n Problem: problem with installed package annobin-12.12-1.el9.x86_64\n\ \ - package annobin-12.12-1.el9.x86_64 from @System requires (gcc >= 11 with\ \ gcc < 12), but none of the providers can be installed\n - package annobin-12.09-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.12-1.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - package\ \ annobin-12.28-1.el9.x86_64 from appstream requires (gcc >= 11 with gcc < 12),\ \ but none of the providers can be installed\n - package annobin-12.31-1.el9.x86_64\ \ from appstream requires (gcc >= 11 with gcc < 12), but none of the providers\ \ can be installed\n - package annobin-12.31-2.el9.x86_64 from appstream requires\ \ (gcc >= 11 with gcc < 12), but none of the providers can be installed\n - cannot\ \ install both gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream and gcc-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both gcc-11.3.1-4.4.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.1.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-2.3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - cannot install both\ \ gcc-11.4.1-2.el9.x86_64 from appstream and gcc-14.0.1-0.15.el10.x86_64 from\ \ CentOS-AppStream\n - cannot install both gcc-11.4.1-3.el9.x86_64 from appstream\ \ and gcc-14.0.1-0.15.el10.x86_64 from CentOS-AppStream\n - package gcc-c++-14.0.1-0.15.el10.x86_64\ \ from CentOS-AppStream requires gcc = 14.0.1-0.15.el10, but none of the providers\ \ can be installed\n - problem with installed package gcc-c++-11.4.1-2.1.el9.x86_64\n\ \ - package gcc-c++-11.4.1-2.1.el9.x86_64 from appstream requires libstdc++ =\ \ 11.4.1-2.1.el9, but none of the providers can be installed\n - package gcc-c++-11.4.1-2.1.el9.x86_64\ \ from @System requires libstdc++ = 11.4.1-2.1.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.3.1-4.4.el9.x86_64 from appstream requires\ \ libstdc++ = 11.3.1-4.4.el9, but none of the providers can be installed\n -\ \ package gcc-c++-11.4.1-2.3.el9.x86_64 from appstream requires libstdc++ = 11.4.1-2.3.el9,\ \ but none of the providers can be installed\n - package gcc-c++-11.4.1-2.el9.x86_64\ \ from appstream requires libstdc++ = 11.4.1-2.el9, but none of the providers\ \ can be installed\n - package gcc-c++-11.4.1-3.el9.x86_64 from appstream requires\ \ libstdc++ = 11.4.1-3.el9, but none of the providers can be installed\n - libstdc++-11.4.1-2.1.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.3.1-4.4.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-2.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - libstdc++-11.4.1-3.el9.i686\ \ from baseos does not belong to a distupgrade repository\n - cannot install\ \ both libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS and libstdc++-11.4.1-2.1.el9.x86_64\ \ from @System\n - cannot install both libstdc++-11.3.1-4.4.el9.x86_64 from baseos\ \ and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot install\ \ both libstdc++-11.4.1-2.1.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-2.3.el9.x86_64\ \ from baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - cannot\ \ install both libstdc++-11.4.1-2.el9.x86_64 from baseos and libstdc++-14.0.1-0.15.el10.x86_64\ \ from CentOS-BaseOS\n - cannot install both libstdc++-11.4.1-3.el9.x86_64 from\ \ baseos and libstdc++-14.0.1-0.15.el10.x86_64 from CentOS-BaseOS\n - package\ \ python3-hawkey-0.73.0-1.el10.x86_64 from CentOS-BaseOS requires libstdc++.so.6(GLIBCXX_3.4.30)(64bit),\ \ but none of the providers can be installed\n - package python3-dnf-4.19.0-2.el10.noarch\ \ from CentOS-BaseOS requires python3-hawkey >= 0.73.0, but none of the providers\ \ can be installed\n - package yum-utils-4.5.0-1.el10.noarch from CentOS-BaseOS\ \ requires python3-dnf >= 4.19.0, but none of the providers can be installed\n\ \ - cannot install the best candidate for the job" rc: 1 results: []' owner: scheduled_teuthology@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=49ba0f86712e441ab6cd5fcaf2ce5270 status: fail success: false 2024-04-19T21:30:29.946 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-19T21:30:30.037 INFO:teuthology.run:FAIL