Description: orch:cephadm/smoke-roleless/{0-distro/ubuntu_20.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final}

Log: http://qa-proxy.ceph.com/teuthology/gabrioux-2023-07-21_06:58:37-orch:cephadm-wip-guits-testing-2-2023-07-21-0244-distro-default-smithi/7346545/teuthology.log

Failure Reason:

Error reimaging machines: Failed to power on smithi140

  • log_href: http://qa-proxy.ceph.com/teuthology/gabrioux-2023-07-21_06:58:37-orch:cephadm-wip-guits-testing-2-2023-07-21-0244-distro-default-smithi/7346545/teuthology.log
  • archive_path: /home/teuthworker/archive/gabrioux-2023-07-21_06:58:37-orch:cephadm-wip-guits-testing-2-2023-07-21-0244-distro-default-smithi/7346545
  • description: orch:cephadm/smoke-roleless/{0-distro/ubuntu_20.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final}
  • duration:
  • email: gabrioux@redhat.com
  • failure_reason: Error reimaging machines: Failed to power on smithi140
  • flavor:
  • job_id: 7346545
  • kernel:
    • kdb: True
    • sha1: distro
  • last_in_suite: False
  • machine_type: smithi
  • name: gabrioux-2023-07-21_06:58:37-orch:cephadm-wip-guits-testing-2-2023-07-21-0244-distro-default-smithi
  • nuke_on_error: True
  • os_type: ubuntu
  • os_version: 20.04
  • overrides:
    • admin_socket:
      • branch: wip-guits-testing-2-2023-07-21-0244
    • 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\)
      • sha1: aa8b79aa4c5c06ff2d14bd8eb62067d83997f6c9
    • ceph-deploy:
      • conf:
        • client:
          • log file: /var/log/ceph/ceph-$name.$pid.log
        • mon:
          • osd default pool size: 2
    • install:
      • ceph:
        • flavor: default
        • sha1: aa8b79aa4c5c06ff2d14bd8eb62067d83997f6c9
    • kernel:
      • hwe: True
    • workunit:
      • branch: wip-guits-testing-2-2023-07-21-0244
      • sha1: aa8b79aa4c5c06ff2d14bd8eb62067d83997f6c9
  • owner: scheduled_gabrioux@teuthology
  • pid:
  • roles:
    • ['host.a', 'client.0']
    • ['host.b', 'client.1']
  • sentry_event:
  • status: dead
  • success:
  • branch: wip-guits-testing-2-2023-07-21-0244
  • seed:
  • sha1: aa8b79aa4c5c06ff2d14bd8eb62067d83997f6c9
  • subset:
  • suite:
  • suite_branch: wip-guits-testing-2-2023-07-21-0244
  • suite_path:
  • suite_relpath:
  • suite_repo:
  • suite_sha1: aa8b79aa4c5c06ff2d14bd8eb62067d83997f6c9
  • targets:
    • smithi090.front.sepia.ceph.com: ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGETOy3xONfbx7kUFCNiUtRLNfkcrcEsWzPdq6Np/6Bw
    • smithi140.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBIgZ8Bd53fuCgCKJVFKEoISHXv8e16rj+5mHUw0oxKD/1FLTZxAy2jXni6HW8XTWz09dkyioP79i8vigElT1owY=
  • tasks:
    • 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: main
  • verbose: True
  • pcp_grafana_url:
  • priority:
  • user:
  • queue:
  • posted: 2023-07-21 07:13:36
  • started: 2023-07-21 08:51:47
  • updated: 2023-07-21 08:53:43
  • status_class: danger
  • runtime: 0:01:56