Description: rados/cephadm/smoke-roleless/{0-distro/rhel_8.4_container_tools_rhel8 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final}

Log: http://qa-proxy.ceph.com/teuthology/yuriw-2022-01-14_22:45:11-rados-wip-yuri8-testing-2022-01-14-0917-distro-default-smithi/6617447/teuthology.log

Sentry event: https://sentry.ceph.com/organizations/ceph/?query=c164f804d9024d5dba838ad70dc14623

Failure Reason:

Stale jobs detected, aborting.

  • log_href: http://qa-proxy.ceph.com/teuthology/yuriw-2022-01-14_22:45:11-rados-wip-yuri8-testing-2022-01-14-0917-distro-default-smithi/6617447/teuthology.log
  • archive_path: /home/teuthworker/archive/yuriw-2022-01-14_22:45:11-rados-wip-yuri8-testing-2022-01-14-0917-distro-default-smithi/6617447
  • description: rados/cephadm/smoke-roleless/{0-distro/rhel_8.4_container_tools_rhel8 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final}
  • duration:
  • email: ceph-qa@ceph.io
  • failure_reason: Stale jobs detected, aborting.
  • flavor:
  • job_id: 6617447
  • kernel:
    • kdb: True
    • sha1: distro
  • last_in_suite: False
  • machine_type: smithi
  • name: yuriw-2022-01-14_22:45:11-rados-wip-yuri8-testing-2022-01-14-0917-distro-default-smithi
  • nuke_on_error: True
  • os_type: rhel
  • os_version: 8.4
  • overrides:
    • admin_socket:
      • branch: wip-yuri8-testing-2022-01-14-0917
    • 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-whitelist:
        • \(MDS_ALL_DOWN\)
        • \(MDS_UP_LESS_THAN_MAX\)
      • sha1: 116d16621ea0d23f8fc8b9af5ee8153eb1dea453
    • ceph-deploy:
      • conf:
        • client:
          • log file: /var/log/ceph/ceph-$name.$pid.log
        • mon:
          • osd default pool size: 2
    • install:
      • ceph:
        • flavor: default
        • sha1: 116d16621ea0d23f8fc8b9af5ee8153eb1dea453
    • kernel:
      • hwe: True
    • selinux:
      • whitelist:
        • scontext=system_u:system_r:logrotate_t:s0
    • workunit:
      • branch: wip-yuri8-testing-2022-01-14-0917
      • sha1: 116d16621ea0d23f8fc8b9af5ee8153eb1dea453
  • owner: scheduled_yuriw@teuthology
  • pid:
  • roles:
    • ['host.a', 'client.0']
    • ['host.b', 'client.1']
  • sentry_event: https://sentry.ceph.com/organizations/ceph/?query=c164f804d9024d5dba838ad70dc14623
  • status: fail
  • success: False
  • branch: wip-yuri8-testing-2022-01-14-0917
  • seed:
  • sha1: 116d16621ea0d23f8fc8b9af5ee8153eb1dea453
  • subset:
  • suite:
  • suite_branch: wip-yuri8-testing-2022-01-14-0917
  • suite_path:
  • suite_relpath:
  • suite_repo:
  • suite_sha1: 116d16621ea0d23f8fc8b9af5ee8153eb1dea453
  • targets:
    • tasks:
      • internal.check_packages:
      • internal.buildpackages_prep:
      • internal.save_config:
      • internal.check_lock:
      • internal.add_remotes:
      • console_log:
      • internal.connect:
      • internal.push_inventory:
      • internal.serialize_remote_roles:
      • internal.check_conflict:
      • internal.check_ceph_data:
      • internal.vm_setup:
      • kernel:
        • kdb: True
        • sha1: distro
      • internal.base:
      • internal.archive_upload:
      • internal.archive:
      • internal.coredump:
      • internal.sudo:
      • internal.syslog:
      • internal.timer:
      • pcp:
      • selinux:
      • ansible.cephlab:
      • clock:
      • pexec:
        • all:
          • sudo cp /etc/containers/registries.conf /etc/containers/registries.conf.backup
          • sudo dnf -y module reset container-tools
          • sudo dnf -y module install container-tools:rhel8
          • sudo cp /etc/containers/registries.conf.backup /etc/containers/registries.conf
      • nvme_loop:
      • 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:
      • 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 import json with open('/tmp/user.json', 'rt') as f: info = json.loads(f.read()) s3 = boto3.resource( 's3', aws_access_key_id=info['keys'][0]['access_key'], aws_secret_access_key=info['keys'][0]['secret_key'], endpoint_url='http://localhost:8800', ) bucket = s3.Bucket('foobucket') bucket.create() bucket.put_object(Key='myobject', Body='thebody')
      • cephadm.shell:
        • host.a:
          • ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser
      • 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}}:/foouser /mnt/foo
          • test -d /mnt/foo/foobucket
          • find /mnt/foo -ls
          • grep thebody /mnt/foo/foobucket/myobject
          • echo test > /mnt/foo/foobucket/newobject
          • sync
      • python:
        • host.a: import boto3 import json from io import BytesIO with open('/tmp/user.json', 'rt') as f: info = json.loads(f.read()) s3 = boto3.resource( 's3', aws_access_key_id=info['keys'][0]['access_key'], aws_secret_access_key=info['keys'][0]['secret_key'], endpoint_url='http://localhost:8800', ) bucket = s3.Bucket('foobucket') data = BytesIO() bucket.download_fileobj(Fileobj=data, Key='newobject') print(data.getvalue()) assert data.getvalue().decode() == 'test\n'
      • vip.exec:
        • host.a:
          • umount /mnt/foo
      • cephadm.shell:
        • host.a:
          • ceph nfs export rm foo /foouser
          • 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_branch: master
    • verbose: True
    • pcp_grafana_url:
    • priority:
    • user:
    • queue:
    • posted: 2022-01-14 22:49:12
    • started: 2022-01-14 23:32:05
    • updated: 2022-01-14 23:46:56
    • status_class: danger
    • runtime: 0:14:51