2024-01-13T07:26:35.721 INFO:root:teuthology version: 0.0.1.dev249+gcd45576 2024-01-13T07:26:35.721 DEBUG:teuthology.run:Teuthology command: teuthology --archive /home/teuthworker/archive/yuriw-2024-01-12_21:52:25-rados-wip-yuri2-testing-2024-01-12-1128-pacific-distro-default-smithi/7515671 --owner scheduled_yuriw@teuthology --description rados/cephadm/smoke-roleless/{0-distro/ubuntu_18.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} --verbose --name yuriw-2024-01-12_21:52:25-rados-wip-yuri2-testing-2024-01-12-1128-pacific-distro-default-smithi -- /home/teuthworker/archive/yuriw-2024-01-12_21:52:25-rados-wip-yuri2-testing-2024-01-12-1128-pacific-distro-default-smithi/7515671/orig.config.yaml 2024-01-13T07:26:35.755 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-01-13T07:26:35.852 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/yuriw-2024-01-12_21:52:25-rados-wip-yuri2-testing-2024-01-12-1128-pacific-distro-default-smithi/7515671 branch: wip-yuri2-testing-2024-01-12-1128-pacific description: rados/cephadm/smoke-roleless/{0-distro/ubuntu_18.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} email: yweinste@redhat.com first_in_suite: false job_id: '7515671' kernel: kdb: true sha1: distro last_in_suite: false machine_type: smithi name: yuriw-2024-01-12_21:52:25-rados-wip-yuri2-testing-2024-01-12-1128-pacific-distro-default-smithi no_nested_subset: false nuke-on-error: true openstack: - volumes: count: 4 size: 10 os_type: ubuntu os_version: '18.04' overrides: admin_socket: branch: wip-yuri2-testing-2024-01-12-1128-pacific 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: 445562ab4bc3ddfb386936119050695810860bcb ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 445562ab4bc3ddfb386936119050695810860bcb workunit: branch: wip-yuri2-testing-2024-01-12-1128-pacific sha1: 445562ab4bc3ddfb386936119050695810860bcb owner: scheduled_yuriw@teuthology priority: 75 repo: https://github.com/ceph/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 5246 sha1: 445562ab4bc3ddfb386936119050695810860bcb sleep_before_teardown: 0 subset: 111/120000 suite: rados suite_branch: wip-yuri2-testing-2024-01-12-1128-pacific suite_path: /home/teuthworker/src/github.com_ceph_ceph-c_445562ab4bc3ddfb386936119050695810860bcb/qa suite_relpath: qa suite_repo: https://github.com/ceph/ceph-ci.git suite_sha1: 445562ab4bc3ddfb386936119050695810860bcb targets: smithi039.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHSAlWjESMc0Gra5f/6dvvbjuYJc2qVK13Ztw1gt4S0hdg9pLl/eAcLsaHQz3OAGEzcbKS0DF4bknjuwe5HHhPE= smithi100.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHSAlWjESMc0Gra5f/6dvvbjuYJc2qVK13Ztw1gt4S0hdg9pLl/eAcLsaHQz3OAGEzcbKS0DF4bknjuwe5HHhPE= 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: cd45576300487d997e5a85abed65500b9f5d143b timestamp: 2024-01-12_21:52:25 tube: smithi user: yuriw verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-01-13T07:26:35.852 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_ceph_ceph-c_445562ab4bc3ddfb386936119050695810860bcb/qa; will attempt to use it 2024-01-13T07:26:35.853 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ceph_ceph-c_445562ab4bc3ddfb386936119050695810860bcb/qa/tasks 2024-01-13T07:26:35.853 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-01-13T07:26:35.855 INFO:teuthology.task.internal:Checking packages... 2024-01-13T07:26:35.879 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash '445562ab4bc3ddfb386936119050695810860bcb' 2024-01-13T07:26:35.879 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-01-13T07:26:35.879 INFO:teuthology.packaging:ref: None 2024-01-13T07:26:35.879 INFO:teuthology.packaging:tag: None 2024-01-13T07:26:35.880 INFO:teuthology.packaging:branch: wip-yuri2-testing-2024-01-12-1128-pacific 2024-01-13T07:26:35.880 INFO:teuthology.packaging:sha1: 445562ab4bc3ddfb386936119050695810860bcb 2024-01-13T07:26:35.880 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F18.04%2Fx86_64&ref=wip-yuri2-testing-2024-01-12-1128-pacific 2024-01-13T07:26:36.017 INFO:teuthology.task.internal:Found packages for ceph version 16.2.14-456-g445562ab-1bionic 2024-01-13T07:26:36.019 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-01-13T07:26:36.025 INFO:teuthology.task.internal:no buildpackages task found 2024-01-13T07:26:36.025 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-01-13T07:26:36.090 INFO:teuthology.task.internal:Saving configuration 2024-01-13T07:26:36.104 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-01-13T07:26:36.110 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-01-13T07:26:36.136 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi039.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-01-12_21:52:25-rados-wip-yuri2-testing-2024-01-12-1128-pacific-distro-default-smithi/7515671', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '18.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-01-13 07:20:26.344704', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII4U6ItCfOdoN1WdROC3KO40lcw/kzXeIM8M8q950kfL'} 2024-01-13T07:26:36.163 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi100.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-01-12_21:52:25-rados-wip-yuri2-testing-2024-01-12-1128-pacific-distro-default-smithi/7515671', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '18.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-01-13 07:20:26.345978', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII4U6ItCfOdoN1WdROC3KO40lcw/kzXeIM8M8q950kfL'} 2024-01-13T07:26:36.163 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-01-13T07:26:36.169 INFO:teuthology.task.internal:roles: ubuntu@smithi039.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-01-13T07:26:36.169 INFO:teuthology.task.internal:roles: ubuntu@smithi100.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-01-13T07:26:36.169 INFO:teuthology.run_tasks:Running task console_log... 2024-01-13T07:26:36.245 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7ff08c99c3a0>, signals=[15]) 2024-01-13T07:26:36.246 INFO:teuthology.run_tasks:Running task internal.connect... 2024-01-13T07:26:36.252 INFO:teuthology.task.internal:Opening connections... 2024-01-13T07:26:36.252 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi039.front.sepia.ceph.com 2024-01-13T07:26:36.254 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi039.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-13T07:26:36.337 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi100.front.sepia.ceph.com 2024-01-13T07:26:36.338 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi100.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-13T07:26:36.416 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-01-13T07:26:36.422 DEBUG:teuthology.orchestra.run.smithi039:> uname -m 2024-01-13T07:26:36.465 INFO:teuthology.orchestra.run.smithi039.stdout:x86_64 2024-01-13T07:26:36.466 DEBUG:teuthology.orchestra.run.smithi039:> cat /etc/os-release 2024-01-13T07:26:36.520 INFO:teuthology.orchestra.run.smithi039.stdout:NAME="Ubuntu" 2024-01-13T07:26:36.520 INFO:teuthology.orchestra.run.smithi039.stdout:VERSION="18.04.6 LTS (Bionic Beaver)" 2024-01-13T07:26:36.520 INFO:teuthology.orchestra.run.smithi039.stdout:ID=ubuntu 2024-01-13T07:26:36.520 INFO:teuthology.orchestra.run.smithi039.stdout:ID_LIKE=debian 2024-01-13T07:26:36.521 INFO:teuthology.orchestra.run.smithi039.stdout:PRETTY_NAME="Ubuntu 18.04.6 LTS" 2024-01-13T07:26:36.521 INFO:teuthology.orchestra.run.smithi039.stdout:VERSION_ID="18.04" 2024-01-13T07:26:36.521 INFO:teuthology.orchestra.run.smithi039.stdout:HOME_URL="https://www.ubuntu.com/" 2024-01-13T07:26:36.521 INFO:teuthology.orchestra.run.smithi039.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-01-13T07:26:36.521 INFO:teuthology.orchestra.run.smithi039.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-01-13T07:26:36.521 INFO:teuthology.orchestra.run.smithi039.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-01-13T07:26:36.521 INFO:teuthology.orchestra.run.smithi039.stdout:VERSION_CODENAME=bionic 2024-01-13T07:26:36.521 INFO:teuthology.orchestra.run.smithi039.stdout:UBUNTU_CODENAME=bionic 2024-01-13T07:26:36.522 INFO:teuthology.lock.ops:Updating smithi039.front.sepia.ceph.com on lock server 2024-01-13T07:26:36.544 DEBUG:teuthology.orchestra.run.smithi100:> uname -m 2024-01-13T07:26:36.551 INFO:teuthology.orchestra.run.smithi100.stdout:x86_64 2024-01-13T07:26:36.551 DEBUG:teuthology.orchestra.run.smithi100:> cat /etc/os-release 2024-01-13T07:26:36.599 INFO:teuthology.orchestra.run.smithi100.stdout:NAME="Ubuntu" 2024-01-13T07:26:36.599 INFO:teuthology.orchestra.run.smithi100.stdout:VERSION="18.04.6 LTS (Bionic Beaver)" 2024-01-13T07:26:36.599 INFO:teuthology.orchestra.run.smithi100.stdout:ID=ubuntu 2024-01-13T07:26:36.600 INFO:teuthology.orchestra.run.smithi100.stdout:ID_LIKE=debian 2024-01-13T07:26:36.600 INFO:teuthology.orchestra.run.smithi100.stdout:PRETTY_NAME="Ubuntu 18.04.6 LTS" 2024-01-13T07:26:36.600 INFO:teuthology.orchestra.run.smithi100.stdout:VERSION_ID="18.04" 2024-01-13T07:26:36.600 INFO:teuthology.orchestra.run.smithi100.stdout:HOME_URL="https://www.ubuntu.com/" 2024-01-13T07:26:36.600 INFO:teuthology.orchestra.run.smithi100.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-01-13T07:26:36.600 INFO:teuthology.orchestra.run.smithi100.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-01-13T07:26:36.600 INFO:teuthology.orchestra.run.smithi100.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-01-13T07:26:36.600 INFO:teuthology.orchestra.run.smithi100.stdout:VERSION_CODENAME=bionic 2024-01-13T07:26:36.600 INFO:teuthology.orchestra.run.smithi100.stdout:UBUNTU_CODENAME=bionic 2024-01-13T07:26:36.600 INFO:teuthology.lock.ops:Updating smithi100.front.sepia.ceph.com on lock server 2024-01-13T07:26:36.619 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-01-13T07:26:36.627 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-01-13T07:26:36.634 INFO:teuthology.task.internal:Checking for old test directory... 2024-01-13T07:26:36.634 DEBUG:teuthology.orchestra.run.smithi039:> test '!' -e /home/ubuntu/cephtest 2024-01-13T07:26:36.636 DEBUG:teuthology.orchestra.run.smithi100:> test '!' -e /home/ubuntu/cephtest 2024-01-13T07:26:36.646 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-01-13T07:26:36.652 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-01-13T07:26:36.653 DEBUG:teuthology.orchestra.run.smithi039:> test -z $(ls -A /var/lib/ceph) 2024-01-13T07:26:36.683 DEBUG:teuthology.orchestra.run.smithi100:> test -z $(ls -A /var/lib/ceph) 2024-01-13T07:26:36.711 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-01-13T07:26:36.765 INFO:teuthology.run_tasks:Running task kernel... 2024-01-13T07:26:36.779 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2024-01-13T07:26:36.779 INFO:teuthology.task.kernel:config {'host.a': {'kdb': True, 'sha1': 'distro'}, 'host.b': {'kdb': True, 'sha1': 'distro'}}, timeout 300 2024-01-13T07:26:36.779 DEBUG:teuthology.orchestra.run.smithi039:> test -f /run/.containerenv -o -f /.dockerenv 2024-01-13T07:26:36.780 DEBUG:teuthology.orchestra.run.smithi100:> test -f /run/.containerenv -o -f /.dockerenv 2024-01-13T07:26:36.784 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-13T07:26:36.785 DEBUG:teuthology.orchestra.run.smithi039:> uname -r 2024-01-13T07:26:36.786 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-13T07:26:36.786 DEBUG:teuthology.orchestra.run.smithi100:> uname -r 2024-01-13T07:26:36.835 INFO:teuthology.orchestra.run.smithi039.stdout:4.15.0-200-generic 2024-01-13T07:26:36.835 INFO:teuthology.task.kernel:Running kernel on smithi039: 4.15.0-200-generic 2024-01-13T07:26:36.835 DEBUG:teuthology.orchestra.run.smithi039:> sudo apt-get clean 2024-01-13T07:26:36.836 INFO:teuthology.orchestra.run.smithi100.stdout:4.15.0-200-generic 2024-01-13T07:26:36.836 INFO:teuthology.task.kernel:Running kernel on smithi100: 4.15.0-200-generic 2024-01-13T07:26:36.837 DEBUG:teuthology.orchestra.run.smithi100:> sudo apt-get clean 2024-01-13T07:26:36.936 DEBUG:teuthology.orchestra.run.smithi039:> sudo apt-get update 2024-01-13T07:26:36.942 DEBUG:teuthology.orchestra.run.smithi100:> sudo apt-get update 2024-01-13T07:26:37.078 INFO:teuthology.orchestra.run.smithi039.stdout:Get:1 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] 2024-01-13T07:26:37.105 INFO:teuthology.orchestra.run.smithi039.stdout:Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease 2024-01-13T07:26:37.105 INFO:teuthology.orchestra.run.smithi039.stdout:Get:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB] 2024-01-13T07:26:37.121 INFO:teuthology.orchestra.run.smithi100.stdout:Hit:1 http://archive.ubuntu.com/ubuntu bionic InRelease 2024-01-13T07:26:37.123 INFO:teuthology.orchestra.run.smithi100.stdout:Get:2 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB] 2024-01-13T07:26:37.181 INFO:teuthology.orchestra.run.smithi039.stdout:Get:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [83.3 kB] 2024-01-13T07:26:37.205 INFO:teuthology.orchestra.run.smithi100.stdout:Get:3 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [83.3 kB] 2024-01-13T07:26:37.224 INFO:teuthology.orchestra.run.smithi100.stdout:Get:4 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] 2024-01-13T07:26:37.475 INFO:teuthology.orchestra.run.smithi100.stdout:Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [3,045 kB] 2024-01-13T07:26:37.482 INFO:teuthology.orchestra.run.smithi039.stdout:Get:5 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages [2,717 kB] 2024-01-13T07:26:37.619 INFO:teuthology.orchestra.run.smithi039.stdout:Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main i386 Packages [1,666 kB] 2024-01-13T07:26:37.633 INFO:teuthology.orchestra.run.smithi039.stdout:Get:7 http://security.ubuntu.com/ubuntu bionic-security/main i386 Packages [1,379 kB] 2024-01-13T07:26:37.635 INFO:teuthology.orchestra.run.smithi100.stdout:Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main i386 Packages [1,666 kB] 2024-01-13T07:26:37.657 INFO:teuthology.orchestra.run.smithi039.stdout:Get:8 http://security.ubuntu.com/ubuntu bionic-security/main Translation-en [467 kB] 2024-01-13T07:26:37.665 INFO:teuthology.orchestra.run.smithi039.stdout:Get:9 http://security.ubuntu.com/ubuntu bionic-security/restricted i386 Packages [33.0 kB] 2024-01-13T07:26:37.666 INFO:teuthology.orchestra.run.smithi100.stdout:Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main Translation-en [554 kB] 2024-01-13T07:26:37.666 INFO:teuthology.orchestra.run.smithi039.stdout:Get:10 http://security.ubuntu.com/ubuntu bionic-security/restricted amd64 Packages [1,317 kB] 2024-01-13T07:26:37.676 INFO:teuthology.orchestra.run.smithi100.stdout:Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/restricted i386 Packages [39.7 kB] 2024-01-13T07:26:37.677 INFO:teuthology.orchestra.run.smithi100.stdout:Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/restricted amd64 Packages [1,347 kB] 2024-01-13T07:26:37.692 INFO:teuthology.orchestra.run.smithi039.stdout:Get:11 http://security.ubuntu.com/ubuntu bionic-security/restricted Translation-en [182 kB] 2024-01-13T07:26:37.695 INFO:teuthology.orchestra.run.smithi039.stdout:Get:12 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [1,303 kB] 2024-01-13T07:26:37.703 INFO:teuthology.orchestra.run.smithi100.stdout:Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/restricted Translation-en [187 kB] 2024-01-13T07:26:37.710 INFO:teuthology.orchestra.run.smithi100.stdout:Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [1,915 kB] 2024-01-13T07:26:37.724 INFO:teuthology.orchestra.run.smithi039.stdout:Get:13 http://security.ubuntu.com/ubuntu bionic-security/universe i386 Packages [1,078 kB] 2024-01-13T07:26:37.744 INFO:teuthology.orchestra.run.smithi039.stdout:Get:14 http://security.ubuntu.com/ubuntu bionic-security/universe Translation-en [308 kB] 2024-01-13T07:26:37.749 INFO:teuthology.orchestra.run.smithi039.stdout:Get:15 http://security.ubuntu.com/ubuntu bionic-security/multiverse i386 Packages [6,008 B] 2024-01-13T07:26:37.750 INFO:teuthology.orchestra.run.smithi039.stdout:Get:16 http://security.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [19.8 kB] 2024-01-13T07:26:37.750 INFO:teuthology.orchestra.run.smithi039.stdout:Get:17 http://security.ubuntu.com/ubuntu bionic-security/multiverse Translation-en [3,928 B] 2024-01-13T07:26:37.751 INFO:teuthology.orchestra.run.smithi100.stdout:Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/universe i386 Packages [1,663 kB] 2024-01-13T07:26:37.766 INFO:teuthology.orchestra.run.smithi100.stdout:Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/universe Translation-en [421 kB] 2024-01-13T07:26:37.770 INFO:teuthology.orchestra.run.smithi100.stdout:Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse i386 Packages [11.2 kB] 2024-01-13T07:26:37.770 INFO:teuthology.orchestra.run.smithi100.stdout:Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse amd64 Packages [25.6 kB] 2024-01-13T07:26:37.770 INFO:teuthology.orchestra.run.smithi100.stdout:Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse Translation-en [6,088 B] 2024-01-13T07:26:37.771 INFO:teuthology.orchestra.run.smithi100.stdout:Get:17 http://archive.ubuntu.com/ubuntu bionic-backports/main amd64 Packages [53.3 kB] 2024-01-13T07:26:37.771 INFO:teuthology.orchestra.run.smithi100.stdout:Get:18 http://archive.ubuntu.com/ubuntu bionic-backports/main i386 Packages [53.2 kB] 2024-01-13T07:26:37.772 INFO:teuthology.orchestra.run.smithi100.stdout:Get:19 http://archive.ubuntu.com/ubuntu bionic-backports/universe amd64 Packages [18.2 kB] 2024-01-13T07:26:37.772 INFO:teuthology.orchestra.run.smithi100.stdout:Get:20 http://archive.ubuntu.com/ubuntu bionic-backports/universe i386 Packages [18.1 kB] 2024-01-13T07:26:37.779 INFO:teuthology.orchestra.run.smithi100.stdout:Get:21 http://security.ubuntu.com/ubuntu bionic-security/main i386 Packages [1,379 kB] 2024-01-13T07:26:37.844 INFO:teuthology.orchestra.run.smithi039.stdout:Get:18 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [3,045 kB] 2024-01-13T07:26:37.909 INFO:teuthology.orchestra.run.smithi039.stdout:Get:19 http://archive.ubuntu.com/ubuntu bionic-updates/main Translation-en [554 kB] 2024-01-13T07:26:37.914 INFO:teuthology.orchestra.run.smithi039.stdout:Get:20 http://archive.ubuntu.com/ubuntu bionic-updates/restricted i386 Packages [39.7 kB] 2024-01-13T07:26:37.914 INFO:teuthology.orchestra.run.smithi039.stdout:Get:21 http://archive.ubuntu.com/ubuntu bionic-updates/restricted amd64 Packages [1,347 kB] 2024-01-13T07:26:37.928 INFO:teuthology.orchestra.run.smithi039.stdout:Get:22 http://archive.ubuntu.com/ubuntu bionic-updates/restricted Translation-en [187 kB] 2024-01-13T07:26:37.930 INFO:teuthology.orchestra.run.smithi039.stdout:Get:23 http://archive.ubuntu.com/ubuntu bionic-updates/universe i386 Packages [1,663 kB] 2024-01-13T07:26:37.947 INFO:teuthology.orchestra.run.smithi039.stdout:Get:24 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [1,915 kB] 2024-01-13T07:26:37.972 INFO:teuthology.orchestra.run.smithi039.stdout:Get:25 http://archive.ubuntu.com/ubuntu bionic-updates/universe Translation-en [421 kB] 2024-01-13T07:26:37.978 INFO:teuthology.orchestra.run.smithi039.stdout:Get:26 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse i386 Packages [11.2 kB] 2024-01-13T07:26:37.978 INFO:teuthology.orchestra.run.smithi039.stdout:Get:27 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse amd64 Packages [25.6 kB] 2024-01-13T07:26:37.978 INFO:teuthology.orchestra.run.smithi039.stdout:Get:28 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse Translation-en [6,088 B] 2024-01-13T07:26:37.978 INFO:teuthology.orchestra.run.smithi039.stdout:Get:29 http://archive.ubuntu.com/ubuntu bionic-backports/main amd64 Packages [53.3 kB] 2024-01-13T07:26:37.978 INFO:teuthology.orchestra.run.smithi039.stdout:Get:30 http://archive.ubuntu.com/ubuntu bionic-backports/main i386 Packages [53.2 kB] 2024-01-13T07:26:37.979 INFO:teuthology.orchestra.run.smithi039.stdout:Get:31 http://archive.ubuntu.com/ubuntu bionic-backports/universe amd64 Packages [18.2 kB] 2024-01-13T07:26:37.979 INFO:teuthology.orchestra.run.smithi039.stdout:Get:32 http://archive.ubuntu.com/ubuntu bionic-backports/universe i386 Packages [18.1 kB] 2024-01-13T07:26:38.231 INFO:teuthology.orchestra.run.smithi100.stdout:Get:22 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages [2,717 kB] 2024-01-13T07:26:38.367 INFO:teuthology.orchestra.run.smithi100.stdout:Get:23 http://security.ubuntu.com/ubuntu bionic-security/main Translation-en [467 kB] 2024-01-13T07:26:38.383 INFO:teuthology.orchestra.run.smithi100.stdout:Get:24 http://security.ubuntu.com/ubuntu bionic-security/restricted amd64 Packages [1,317 kB] 2024-01-13T07:26:38.415 INFO:teuthology.orchestra.run.smithi100.stdout:Get:25 http://security.ubuntu.com/ubuntu bionic-security/restricted i386 Packages [33.0 kB] 2024-01-13T07:26:38.415 INFO:teuthology.orchestra.run.smithi100.stdout:Get:26 http://security.ubuntu.com/ubuntu bionic-security/restricted Translation-en [182 kB] 2024-01-13T07:26:38.419 INFO:teuthology.orchestra.run.smithi100.stdout:Get:27 http://security.ubuntu.com/ubuntu bionic-security/universe i386 Packages [1,078 kB] 2024-01-13T07:26:38.458 INFO:teuthology.orchestra.run.smithi100.stdout:Get:28 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [1,303 kB] 2024-01-13T07:26:38.494 INFO:teuthology.orchestra.run.smithi100.stdout:Get:29 http://security.ubuntu.com/ubuntu bionic-security/universe Translation-en [308 kB] 2024-01-13T07:26:38.499 INFO:teuthology.orchestra.run.smithi100.stdout:Get:30 http://security.ubuntu.com/ubuntu bionic-security/multiverse i386 Packages [6,008 B] 2024-01-13T07:26:38.663 INFO:teuthology.orchestra.run.smithi100.stdout:Get:31 http://security.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [19.8 kB] 2024-01-13T07:26:38.835 INFO:teuthology.orchestra.run.smithi100.stdout:Get:32 http://security.ubuntu.com/ubuntu bionic-security/multiverse Translation-en [3,928 B] 2024-01-13T07:26:40.474 INFO:teuthology.orchestra.run.smithi100.stdout:Fetched 20.1 MB in 3s (6,117 kB/s) 2024-01-13T07:26:40.547 INFO:teuthology.orchestra.run.smithi039.stdout:Fetched 20.1 MB in 3s (5,967 kB/s) 2024-01-13T07:26:42.202 INFO:teuthology.orchestra.run.smithi100.stdout:Reading package lists... 2024-01-13T07:26:42.257 DEBUG:teuthology.orchestra.run.smithi100:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-01-13T07:26:42.341 INFO:teuthology.orchestra.run.smithi039.stdout:Reading package lists... 2024-01-13T07:26:42.342 INFO:teuthology.orchestra.run.smithi100.stdout:Reading package lists... 2024-01-13T07:26:42.395 DEBUG:teuthology.orchestra.run.smithi039:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-01-13T07:26:42.478 INFO:teuthology.orchestra.run.smithi039.stdout:Reading package lists... 2024-01-13T07:26:42.629 INFO:teuthology.orchestra.run.smithi100.stdout:Building dependency tree... 2024-01-13T07:26:42.629 INFO:teuthology.orchestra.run.smithi100.stdout:Reading state information... 2024-01-13T07:26:42.786 INFO:teuthology.orchestra.run.smithi039.stdout:Building dependency tree... 2024-01-13T07:26:42.787 INFO:teuthology.orchestra.run.smithi039.stdout:Reading state information... 2024-01-13T07:26:42.856 INFO:teuthology.orchestra.run.smithi100.stdout:The following additional packages will be installed: 2024-01-13T07:26:42.856 INFO:teuthology.orchestra.run.smithi100.stdout: linux-generic linux-headers-4.15.0-213 linux-headers-4.15.0-213-generic 2024-01-13T07:26:42.856 INFO:teuthology.orchestra.run.smithi100.stdout: linux-headers-generic linux-image-4.15.0-213-generic 2024-01-13T07:26:42.856 INFO:teuthology.orchestra.run.smithi100.stdout: linux-modules-4.15.0-213-generic linux-modules-extra-4.15.0-213-generic 2024-01-13T07:26:42.858 INFO:teuthology.orchestra.run.smithi100.stdout:Suggested packages: 2024-01-13T07:26:42.859 INFO:teuthology.orchestra.run.smithi100.stdout: fdutils linux-doc-4.15.0 | linux-source-4.15.0 linux-tools 2024-01-13T07:26:42.859 INFO:teuthology.orchestra.run.smithi100.stdout:Recommended packages: 2024-01-13T07:26:42.859 INFO:teuthology.orchestra.run.smithi100.stdout: thermald 2024-01-13T07:26:42.919 INFO:teuthology.orchestra.run.smithi100.stdout:The following NEW packages will be installed: 2024-01-13T07:26:42.920 INFO:teuthology.orchestra.run.smithi100.stdout: linux-headers-4.15.0-213 linux-headers-4.15.0-213-generic 2024-01-13T07:26:42.920 INFO:teuthology.orchestra.run.smithi100.stdout: linux-image-4.15.0-213-generic linux-modules-4.15.0-213-generic 2024-01-13T07:26:42.920 INFO:teuthology.orchestra.run.smithi100.stdout: linux-modules-extra-4.15.0-213-generic 2024-01-13T07:26:42.922 INFO:teuthology.orchestra.run.smithi100.stdout:The following packages will be upgraded: 2024-01-13T07:26:42.922 INFO:teuthology.orchestra.run.smithi100.stdout: linux-generic linux-headers-generic linux-image-generic 2024-01-13T07:26:43.024 INFO:teuthology.orchestra.run.smithi039.stdout:The following additional packages will be installed: 2024-01-13T07:26:43.024 INFO:teuthology.orchestra.run.smithi039.stdout: linux-generic linux-headers-4.15.0-213 linux-headers-4.15.0-213-generic 2024-01-13T07:26:43.025 INFO:teuthology.orchestra.run.smithi039.stdout: linux-headers-generic linux-image-4.15.0-213-generic 2024-01-13T07:26:43.025 INFO:teuthology.orchestra.run.smithi039.stdout: linux-modules-4.15.0-213-generic linux-modules-extra-4.15.0-213-generic 2024-01-13T07:26:43.027 INFO:teuthology.orchestra.run.smithi039.stdout:Suggested packages: 2024-01-13T07:26:43.027 INFO:teuthology.orchestra.run.smithi039.stdout: fdutils linux-doc-4.15.0 | linux-source-4.15.0 linux-tools 2024-01-13T07:26:43.027 INFO:teuthology.orchestra.run.smithi039.stdout:Recommended packages: 2024-01-13T07:26:43.027 INFO:teuthology.orchestra.run.smithi039.stdout: thermald 2024-01-13T07:26:43.097 INFO:teuthology.orchestra.run.smithi039.stdout:The following NEW packages will be installed: 2024-01-13T07:26:43.097 INFO:teuthology.orchestra.run.smithi039.stdout: linux-headers-4.15.0-213 linux-headers-4.15.0-213-generic 2024-01-13T07:26:43.097 INFO:teuthology.orchestra.run.smithi039.stdout: linux-image-4.15.0-213-generic linux-modules-4.15.0-213-generic 2024-01-13T07:26:43.097 INFO:teuthology.orchestra.run.smithi039.stdout: linux-modules-extra-4.15.0-213-generic 2024-01-13T07:26:43.099 INFO:teuthology.orchestra.run.smithi039.stdout:The following packages will be upgraded: 2024-01-13T07:26:43.100 INFO:teuthology.orchestra.run.smithi039.stdout: linux-generic linux-headers-generic linux-image-generic 2024-01-13T07:26:43.107 INFO:teuthology.orchestra.run.smithi100.stdout:3 upgraded, 5 newly installed, 0 to remove and 164 not upgraded. 2024-01-13T07:26:43.107 INFO:teuthology.orchestra.run.smithi100.stdout:Need to get 67.4 MB of archives. 2024-01-13T07:26:43.107 INFO:teuthology.orchestra.run.smithi100.stdout:After this operation, 351 MB of additional disk space will be used. 2024-01-13T07:26:43.107 INFO:teuthology.orchestra.run.smithi100.stdout:Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-modules-4.15.0-213-generic amd64 4.15.0-213.224 [13.4 MB] 2024-01-13T07:26:43.286 INFO:teuthology.orchestra.run.smithi039.stdout:3 upgraded, 5 newly installed, 0 to remove and 164 not upgraded. 2024-01-13T07:26:43.286 INFO:teuthology.orchestra.run.smithi039.stdout:Need to get 67.4 MB of archives. 2024-01-13T07:26:43.286 INFO:teuthology.orchestra.run.smithi039.stdout:After this operation, 351 MB of additional disk space will be used. 2024-01-13T07:26:43.286 INFO:teuthology.orchestra.run.smithi039.stdout:Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-modules-4.15.0-213-generic amd64 4.15.0-213.224 [13.4 MB] 2024-01-13T07:26:44.153 INFO:teuthology.orchestra.run.smithi100.stdout:Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-image-4.15.0-213-generic amd64 4.15.0-213.224 [8,111 kB] 2024-01-13T07:26:44.337 INFO:teuthology.orchestra.run.smithi039.stdout:Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-image-4.15.0-213-generic amd64 4.15.0-213.224 [8,111 kB] 2024-01-13T07:26:44.351 INFO:teuthology.orchestra.run.smithi100.stdout:Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-modules-extra-4.15.0-213-generic amd64 4.15.0-213.224 [33.7 MB] 2024-01-13T07:26:44.587 INFO:teuthology.orchestra.run.smithi039.stdout:Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-modules-extra-4.15.0-213-generic amd64 4.15.0-213.224 [33.7 MB] 2024-01-13T07:26:45.401 INFO:teuthology.orchestra.run.smithi100.stdout:Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-generic amd64 4.15.0.213.196 [1,864 B] 2024-01-13T07:26:45.401 INFO:teuthology.orchestra.run.smithi100.stdout:Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-image-generic amd64 4.15.0.213.196 [2,460 B] 2024-01-13T07:26:45.401 INFO:teuthology.orchestra.run.smithi100.stdout:Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-headers-4.15.0-213 all 4.15.0-213.224 [11.0 MB] 2024-01-13T07:26:45.678 INFO:teuthology.orchestra.run.smithi039.stdout:Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-generic amd64 4.15.0.213.196 [1,864 B] 2024-01-13T07:26:45.678 INFO:teuthology.orchestra.run.smithi039.stdout:Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-image-generic amd64 4.15.0.213.196 [2,460 B] 2024-01-13T07:26:45.678 INFO:teuthology.orchestra.run.smithi039.stdout:Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-headers-4.15.0-213 all 4.15.0-213.224 [11.0 MB] 2024-01-13T07:26:45.724 INFO:teuthology.orchestra.run.smithi100.stdout:Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-headers-4.15.0-213-generic amd64 4.15.0-213.224 [1,250 kB] 2024-01-13T07:26:45.740 INFO:teuthology.orchestra.run.smithi100.stdout:Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-headers-generic amd64 4.15.0.213.196 [2,360 B] 2024-01-13T07:26:45.976 INFO:teuthology.orchestra.run.smithi039.stdout:Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-headers-4.15.0-213-generic amd64 4.15.0-213.224 [1,250 kB] 2024-01-13T07:26:46.011 INFO:teuthology.orchestra.run.smithi039.stdout:Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-headers-generic amd64 4.15.0.213.196 [2,360 B] 2024-01-13T07:26:46.427 INFO:teuthology.orchestra.run.smithi100.stdout:Fetched 67.4 MB in 3s (24.1 MB/s) 2024-01-13T07:26:46.652 INFO:teuthology.orchestra.run.smithi100.stdout:Selecting previously unselected package linux-modules-4.15.0-213-generic. 2024-01-13T07:26:46.714 INFO:teuthology.orchestra.run.smithi039.stdout:Fetched 67.4 MB in 3s (23.3 MB/s) 2024-01-13T07:26:46.948 INFO:teuthology.orchestra.run.smithi039.stdout:Selecting previously unselected package linux-modules-4.15.0-213-generic. 2024-01-13T07:26:47.543 INFO:teuthology.orchestra.run.smithi100.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 135963 files and directories currently installed.) 2024-01-13T07:26:47.547 INFO:teuthology.orchestra.run.smithi100.stdout:Preparing to unpack .../0-linux-modules-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-01-13T07:26:47.625 INFO:teuthology.orchestra.run.smithi100.stdout:Unpacking linux-modules-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-13T07:26:47.902 INFO:teuthology.orchestra.run.smithi039.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 135963 files and directories currently installed.) 2024-01-13T07:26:47.907 INFO:teuthology.orchestra.run.smithi039.stdout:Preparing to unpack .../0-linux-modules-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-01-13T07:26:47.994 INFO:teuthology.orchestra.run.smithi039.stdout:Unpacking linux-modules-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-13T07:26:49.494 INFO:teuthology.orchestra.run.smithi100.stdout:Selecting previously unselected package linux-image-4.15.0-213-generic. 2024-01-13T07:26:49.511 INFO:teuthology.orchestra.run.smithi100.stdout:Preparing to unpack .../1-linux-image-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-01-13T07:26:49.608 INFO:teuthology.orchestra.run.smithi100.stdout:Unpacking linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-13T07:26:49.678 INFO:teuthology.orchestra.run.smithi039.stdout:Selecting previously unselected package linux-image-4.15.0-213-generic. 2024-01-13T07:26:49.694 INFO:teuthology.orchestra.run.smithi039.stdout:Preparing to unpack .../1-linux-image-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-01-13T07:26:49.795 INFO:teuthology.orchestra.run.smithi039.stdout:Unpacking linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-13T07:26:50.137 INFO:teuthology.orchestra.run.smithi100.stdout:Selecting previously unselected package linux-modules-extra-4.15.0-213-generic. 2024-01-13T07:26:50.153 INFO:teuthology.orchestra.run.smithi100.stdout:Preparing to unpack .../2-linux-modules-extra-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-01-13T07:26:50.195 INFO:teuthology.orchestra.run.smithi100.stdout:Unpacking linux-modules-extra-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-13T07:26:50.356 INFO:teuthology.orchestra.run.smithi039.stdout:Selecting previously unselected package linux-modules-extra-4.15.0-213-generic. 2024-01-13T07:26:50.369 INFO:teuthology.orchestra.run.smithi039.stdout:Preparing to unpack .../2-linux-modules-extra-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-01-13T07:26:50.406 INFO:teuthology.orchestra.run.smithi039.stdout:Unpacking linux-modules-extra-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-13T07:26:54.072 INFO:teuthology.orchestra.run.smithi100.stdout:Preparing to unpack .../3-linux-generic_4.15.0.213.196_amd64.deb ... 2024-01-13T07:26:54.222 INFO:teuthology.orchestra.run.smithi100.stdout:Unpacking linux-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-01-13T07:26:54.319 INFO:teuthology.orchestra.run.smithi039.stdout:Preparing to unpack .../3-linux-generic_4.15.0.213.196_amd64.deb ... 2024-01-13T07:26:54.467 INFO:teuthology.orchestra.run.smithi039.stdout:Unpacking linux-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-01-13T07:26:54.548 INFO:teuthology.orchestra.run.smithi100.stdout:Preparing to unpack .../4-linux-image-generic_4.15.0.213.196_amd64.deb ... 2024-01-13T07:26:54.692 INFO:teuthology.orchestra.run.smithi100.stdout:Unpacking linux-image-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-01-13T07:26:54.800 INFO:teuthology.orchestra.run.smithi039.stdout:Preparing to unpack .../4-linux-image-generic_4.15.0.213.196_amd64.deb ... 2024-01-13T07:26:54.937 INFO:teuthology.orchestra.run.smithi039.stdout:Unpacking linux-image-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-01-13T07:26:55.021 INFO:teuthology.orchestra.run.smithi100.stdout:Selecting previously unselected package linux-headers-4.15.0-213. 2024-01-13T07:26:55.035 INFO:teuthology.orchestra.run.smithi100.stdout:Preparing to unpack .../5-linux-headers-4.15.0-213_4.15.0-213.224_all.deb ... 2024-01-13T07:26:55.096 INFO:teuthology.orchestra.run.smithi100.stdout:Unpacking linux-headers-4.15.0-213 (4.15.0-213.224) ... 2024-01-13T07:26:55.265 INFO:teuthology.orchestra.run.smithi039.stdout:Selecting previously unselected package linux-headers-4.15.0-213. 2024-01-13T07:26:55.279 INFO:teuthology.orchestra.run.smithi039.stdout:Preparing to unpack .../5-linux-headers-4.15.0-213_4.15.0-213.224_all.deb ... 2024-01-13T07:26:55.331 INFO:teuthology.orchestra.run.smithi039.stdout:Unpacking linux-headers-4.15.0-213 (4.15.0-213.224) ... 2024-01-13T07:26:59.922 INFO:teuthology.orchestra.run.smithi100.stdout:Selecting previously unselected package linux-headers-4.15.0-213-generic. 2024-01-13T07:26:59.946 INFO:teuthology.orchestra.run.smithi100.stdout:Preparing to unpack .../6-linux-headers-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-01-13T07:26:59.988 INFO:teuthology.orchestra.run.smithi100.stdout:Unpacking linux-headers-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-13T07:27:00.492 INFO:teuthology.orchestra.run.smithi039.stdout:Selecting previously unselected package linux-headers-4.15.0-213-generic. 2024-01-13T07:27:00.517 INFO:teuthology.orchestra.run.smithi039.stdout:Preparing to unpack .../6-linux-headers-4.15.0-213-generic_4.15.0-213.224_amd64.deb ... 2024-01-13T07:27:00.559 INFO:teuthology.orchestra.run.smithi039.stdout:Unpacking linux-headers-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-13T07:27:02.401 INFO:teuthology.orchestra.run.smithi100.stdout:Preparing to unpack .../7-linux-headers-generic_4.15.0.213.196_amd64.deb ... 2024-01-13T07:27:02.531 INFO:teuthology.orchestra.run.smithi100.stdout:Unpacking linux-headers-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-01-13T07:27:02.849 INFO:teuthology.orchestra.run.smithi100.stdout:Setting up linux-modules-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-13T07:27:03.169 INFO:teuthology.orchestra.run.smithi039.stdout:Preparing to unpack .../7-linux-headers-generic_4.15.0.213.196_amd64.deb ... 2024-01-13T07:27:03.283 INFO:teuthology.orchestra.run.smithi039.stdout:Unpacking linux-headers-generic (4.15.0.213.196) over (4.15.0.200.183) ... 2024-01-13T07:27:03.494 INFO:teuthology.orchestra.run.smithi100.stdout:Setting up linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-13T07:27:03.626 INFO:teuthology.orchestra.run.smithi039.stdout:Setting up linux-modules-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-13T07:27:03.987 INFO:teuthology.orchestra.run.smithi100.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-4.15.0-200-generic 2024-01-13T07:27:03.987 INFO:teuthology.orchestra.run.smithi100.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-4.15.0-200-generic 2024-01-13T07:27:03.987 INFO:teuthology.orchestra.run.smithi100.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-4.15.0-213-generic 2024-01-13T07:27:03.987 INFO:teuthology.orchestra.run.smithi100.stdout:I: /initrd.img is now a symlink to boot/initrd.img-4.15.0-213-generic 2024-01-13T07:27:04.121 INFO:teuthology.orchestra.run.smithi100.stdout:Setting up linux-modules-extra-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-13T07:27:04.281 INFO:teuthology.orchestra.run.smithi039.stdout:Setting up linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-13T07:27:04.648 INFO:teuthology.orchestra.run.smithi100.stdout:Setting up linux-headers-4.15.0-213 (4.15.0-213.224) ... 2024-01-13T07:27:04.766 INFO:teuthology.orchestra.run.smithi100.stdout:Setting up linux-image-generic (4.15.0.213.196) ... 2024-01-13T07:27:04.803 INFO:teuthology.orchestra.run.smithi039.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-4.15.0-200-generic 2024-01-13T07:27:04.804 INFO:teuthology.orchestra.run.smithi039.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-4.15.0-200-generic 2024-01-13T07:27:04.804 INFO:teuthology.orchestra.run.smithi039.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-4.15.0-213-generic 2024-01-13T07:27:04.804 INFO:teuthology.orchestra.run.smithi039.stdout:I: /initrd.img is now a symlink to boot/initrd.img-4.15.0-213-generic 2024-01-13T07:27:04.917 INFO:teuthology.orchestra.run.smithi100.stdout:Setting up linux-headers-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-13T07:27:04.958 INFO:teuthology.orchestra.run.smithi039.stdout:Setting up linux-modules-extra-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-13T07:27:05.043 INFO:teuthology.orchestra.run.smithi100.stdout:Setting up linux-headers-generic (4.15.0.213.196) ... 2024-01-13T07:27:05.169 INFO:teuthology.orchestra.run.smithi100.stdout:Setting up linux-generic (4.15.0.213.196) ... 2024-01-13T07:27:05.295 INFO:teuthology.orchestra.run.smithi100.stdout:Processing triggers for linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-13T07:27:05.511 INFO:teuthology.orchestra.run.smithi100.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-01-13T07:27:05.511 INFO:teuthology.orchestra.run.smithi100.stdout:update-initramfs: Generating /boot/initrd.img-4.15.0-213-generic 2024-01-13T07:27:05.517 INFO:teuthology.orchestra.run.smithi039.stdout:Setting up linux-headers-4.15.0-213 (4.15.0-213.224) ... 2024-01-13T07:27:05.643 INFO:teuthology.orchestra.run.smithi039.stdout:Setting up linux-image-generic (4.15.0.213.196) ... 2024-01-13T07:27:05.791 INFO:teuthology.orchestra.run.smithi039.stdout:Setting up linux-headers-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-13T07:27:05.921 INFO:teuthology.orchestra.run.smithi039.stdout:Setting up linux-headers-generic (4.15.0.213.196) ... 2024-01-13T07:27:06.047 INFO:teuthology.orchestra.run.smithi039.stdout:Setting up linux-generic (4.15.0.213.196) ... 2024-01-13T07:27:06.165 INFO:teuthology.orchestra.run.smithi039.stdout:Processing triggers for linux-image-4.15.0-213-generic (4.15.0-213.224) ... 2024-01-13T07:27:06.391 INFO:teuthology.orchestra.run.smithi039.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-01-13T07:27:06.391 INFO:teuthology.orchestra.run.smithi039.stdout:update-initramfs: Generating /boot/initrd.img-4.15.0-213-generic 2024-01-13T07:27:21.642 INFO:teuthology.orchestra.run.smithi100.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-01-13T07:27:21.642 INFO:teuthology.orchestra.run.smithi100.stdout:Sourcing file `/etc/default/grub' 2024-01-13T07:27:21.671 INFO:teuthology.orchestra.run.smithi100.stdout:Generating grub configuration file ... 2024-01-13T07:27:22.103 INFO:teuthology.orchestra.run.smithi100.stdout:Found linux image: /boot/vmlinuz-4.15.0-213-generic 2024-01-13T07:27:22.167 INFO:teuthology.orchestra.run.smithi100.stdout:Found initrd image: /boot/initrd.img-4.15.0-213-generic 2024-01-13T07:27:22.512 INFO:teuthology.orchestra.run.smithi100.stdout:Found linux image: /boot/vmlinuz-4.15.0-200-generic 2024-01-13T07:27:22.550 INFO:teuthology.orchestra.run.smithi100.stdout:Found initrd image: /boot/initrd.img-4.15.0-200-generic 2024-01-13T07:27:22.624 INFO:teuthology.orchestra.run.smithi100.stdout:Found linux image: /boot/vmlinuz-4.15.0-194-generic 2024-01-13T07:27:22.664 INFO:teuthology.orchestra.run.smithi100.stdout:Found initrd image: /boot/initrd.img-4.15.0-194-generic 2024-01-13T07:27:23.645 INFO:teuthology.orchestra.run.smithi039.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-01-13T07:27:23.645 INFO:teuthology.orchestra.run.smithi039.stdout:Sourcing file `/etc/default/grub' 2024-01-13T07:27:23.663 INFO:teuthology.orchestra.run.smithi039.stdout:Generating grub configuration file ... 2024-01-13T07:27:23.719 INFO:teuthology.orchestra.run.smithi100.stdout:done 2024-01-13T07:27:24.159 DEBUG:teuthology.orchestra.run.smithi100:> dpkg -s linux-image-generic 2024-01-13T07:27:24.184 INFO:teuthology.orchestra.run.smithi100.stdout:Package: linux-image-generic 2024-01-13T07:27:24.184 INFO:teuthology.orchestra.run.smithi100.stdout:Status: install ok installed 2024-01-13T07:27:24.185 INFO:teuthology.orchestra.run.smithi100.stdout:Priority: optional 2024-01-13T07:27:24.185 INFO:teuthology.orchestra.run.smithi100.stdout:Section: kernel 2024-01-13T07:27:24.185 INFO:teuthology.orchestra.run.smithi100.stdout:Installed-Size: 18 2024-01-13T07:27:24.185 INFO:teuthology.orchestra.run.smithi100.stdout:Maintainer: Ubuntu Kernel Team 2024-01-13T07:27:24.185 INFO:teuthology.orchestra.run.smithi100.stdout:Architecture: amd64 2024-01-13T07:27:24.185 INFO:teuthology.orchestra.run.smithi100.stdout:Source: linux-meta 2024-01-13T07:27:24.185 INFO:teuthology.orchestra.run.smithi100.stdout:Version: 4.15.0.213.196 2024-01-13T07:27:24.185 INFO:teuthology.orchestra.run.smithi100.stdout:Provides: wireguard-modules (= 1.0.20201112-1~18.04.4), zfs-modules (= 0.7.5-1ubuntu16.12) 2024-01-13T07:27:24.185 INFO:teuthology.orchestra.run.smithi100.stdout:Depends: linux-image-4.15.0-213-generic, linux-modules-extra-4.15.0-213-generic, linux-firmware, intel-microcode, amd64-microcode 2024-01-13T07:27:24.185 INFO:teuthology.orchestra.run.smithi100.stdout:Recommends: thermald 2024-01-13T07:27:24.185 INFO:teuthology.orchestra.run.smithi100.stdout:Description: Generic Linux kernel image 2024-01-13T07:27:24.186 INFO:teuthology.orchestra.run.smithi100.stdout: This package will always depend on the latest generic kernel image 2024-01-13T07:27:24.186 INFO:teuthology.orchestra.run.smithi100.stdout: available. 2024-01-13T07:27:24.187 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 4.15.0-200-generic Expected: 4.15.0-213-generic 2024-01-13T07:27:24.188 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-01-13T07:27:24.188 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-01-13T07:27:24.188 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-01-13T07:27:24.188 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi100.front.sepia.ceph.com, path=None, version=distro) 2024-01-13T07:27:24.188 DEBUG:teuthology.orchestra.run.smithi100:> sudo apt-get clean 2024-01-13T07:27:24.205 INFO:teuthology.orchestra.run.smithi039.stdout:Found linux image: /boot/vmlinuz-4.15.0-213-generic 2024-01-13T07:27:24.247 INFO:teuthology.orchestra.run.smithi039.stdout:Found initrd image: /boot/initrd.img-4.15.0-213-generic 2024-01-13T07:27:24.312 DEBUG:teuthology.orchestra.run.smithi100:> sudo apt-get update 2024-01-13T07:27:24.456 INFO:teuthology.orchestra.run.smithi100.stdout:Hit:1 http://security.ubuntu.com/ubuntu bionic-security InRelease 2024-01-13T07:27:24.568 INFO:teuthology.orchestra.run.smithi100.stdout:Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease 2024-01-13T07:27:24.629 INFO:teuthology.orchestra.run.smithi039.stdout:Found linux image: /boot/vmlinuz-4.15.0-200-generic 2024-01-13T07:27:24.649 INFO:teuthology.orchestra.run.smithi100.stdout:Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease 2024-01-13T07:27:24.660 INFO:teuthology.orchestra.run.smithi039.stdout:Found initrd image: /boot/initrd.img-4.15.0-200-generic 2024-01-13T07:27:24.735 INFO:teuthology.orchestra.run.smithi100.stdout:Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease 2024-01-13T07:27:24.736 INFO:teuthology.orchestra.run.smithi039.stdout:Found linux image: /boot/vmlinuz-4.15.0-194-generic 2024-01-13T07:27:24.857 INFO:teuthology.orchestra.run.smithi039.stdout:Found initrd image: /boot/initrd.img-4.15.0-194-generic 2024-01-13T07:27:25.843 INFO:teuthology.orchestra.run.smithi039.stdout:done 2024-01-13T07:27:26.323 DEBUG:teuthology.orchestra.run.smithi039:> dpkg -s linux-image-generic 2024-01-13T07:27:26.345 INFO:teuthology.orchestra.run.smithi039.stdout:Package: linux-image-generic 2024-01-13T07:27:26.345 INFO:teuthology.orchestra.run.smithi039.stdout:Status: install ok installed 2024-01-13T07:27:26.345 INFO:teuthology.orchestra.run.smithi039.stdout:Priority: optional 2024-01-13T07:27:26.345 INFO:teuthology.orchestra.run.smithi039.stdout:Section: kernel 2024-01-13T07:27:26.345 INFO:teuthology.orchestra.run.smithi039.stdout:Installed-Size: 18 2024-01-13T07:27:26.345 INFO:teuthology.orchestra.run.smithi039.stdout:Maintainer: Ubuntu Kernel Team 2024-01-13T07:27:26.346 INFO:teuthology.orchestra.run.smithi039.stdout:Architecture: amd64 2024-01-13T07:27:26.346 INFO:teuthology.orchestra.run.smithi039.stdout:Source: linux-meta 2024-01-13T07:27:26.346 INFO:teuthology.orchestra.run.smithi039.stdout:Version: 4.15.0.213.196 2024-01-13T07:27:26.346 INFO:teuthology.orchestra.run.smithi039.stdout:Provides: wireguard-modules (= 1.0.20201112-1~18.04.4), zfs-modules (= 0.7.5-1ubuntu16.12) 2024-01-13T07:27:26.346 INFO:teuthology.orchestra.run.smithi039.stdout:Depends: linux-image-4.15.0-213-generic, linux-modules-extra-4.15.0-213-generic, linux-firmware, intel-microcode, amd64-microcode 2024-01-13T07:27:26.346 INFO:teuthology.orchestra.run.smithi039.stdout:Recommends: thermald 2024-01-13T07:27:26.346 INFO:teuthology.orchestra.run.smithi039.stdout:Description: Generic Linux kernel image 2024-01-13T07:27:26.346 INFO:teuthology.orchestra.run.smithi039.stdout: This package will always depend on the latest generic kernel image 2024-01-13T07:27:26.346 INFO:teuthology.orchestra.run.smithi039.stdout: available. 2024-01-13T07:27:26.346 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 4.15.0-200-generic Expected: 4.15.0-213-generic 2024-01-13T07:27:26.346 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-01-13T07:27:26.346 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-01-13T07:27:26.346 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-01-13T07:27:26.346 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi039.front.sepia.ceph.com, path=None, version=distro) 2024-01-13T07:27:26.347 DEBUG:teuthology.orchestra.run.smithi039:> sudo apt-get clean 2024-01-13T07:27:26.446 DEBUG:teuthology.orchestra.run.smithi039:> sudo apt-get update 2024-01-13T07:27:26.547 INFO:teuthology.orchestra.run.smithi100.stdout:Reading package lists... 2024-01-13T07:27:26.598 DEBUG:teuthology.orchestra.run.smithi100:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-01-13T07:27:26.685 INFO:teuthology.orchestra.run.smithi100.stdout:Reading package lists... 2024-01-13T07:27:26.720 INFO:teuthology.orchestra.run.smithi039.stdout:Hit:1 http://security.ubuntu.com/ubuntu bionic-security InRelease 2024-01-13T07:27:26.720 INFO:teuthology.orchestra.run.smithi039.stdout:Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease 2024-01-13T07:27:26.792 INFO:teuthology.orchestra.run.smithi039.stdout:Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease 2024-01-13T07:27:26.873 INFO:teuthology.orchestra.run.smithi039.stdout:Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease 2024-01-13T07:27:26.950 INFO:teuthology.orchestra.run.smithi100.stdout:Building dependency tree... 2024-01-13T07:27:26.950 INFO:teuthology.orchestra.run.smithi100.stdout:Reading state information... 2024-01-13T07:27:27.156 INFO:teuthology.orchestra.run.smithi100.stdout:linux-image-generic is already the newest version (4.15.0.213.196). 2024-01-13T07:27:27.156 INFO:teuthology.orchestra.run.smithi100.stdout:The following packages were automatically installed and are no longer required: 2024-01-13T07:27:27.157 INFO:teuthology.orchestra.run.smithi100.stdout: linux-headers-4.15.0-194 linux-headers-4.15.0-194-generic 2024-01-13T07:27:27.157 INFO:teuthology.orchestra.run.smithi100.stdout: linux-image-4.15.0-194-generic linux-modules-4.15.0-194-generic 2024-01-13T07:27:27.157 INFO:teuthology.orchestra.run.smithi100.stdout: linux-modules-extra-4.15.0-194-generic 2024-01-13T07:27:27.157 INFO:teuthology.orchestra.run.smithi100.stdout:Use 'sudo apt autoremove' to remove them. 2024-01-13T07:27:27.214 INFO:teuthology.orchestra.run.smithi100.stdout:0 upgraded, 0 newly installed, 0 to remove and 164 not upgraded. 2024-01-13T07:27:27.215 DEBUG:teuthology.orchestra.run.smithi100:> dpkg -s linux-image-generic 2024-01-13T07:27:27.234 INFO:teuthology.orchestra.run.smithi100.stdout:Package: linux-image-generic 2024-01-13T07:27:27.234 INFO:teuthology.orchestra.run.smithi100.stdout:Status: install ok installed 2024-01-13T07:27:27.234 INFO:teuthology.orchestra.run.smithi100.stdout:Priority: optional 2024-01-13T07:27:27.234 INFO:teuthology.orchestra.run.smithi100.stdout:Section: kernel 2024-01-13T07:27:27.235 INFO:teuthology.orchestra.run.smithi100.stdout:Installed-Size: 18 2024-01-13T07:27:27.235 INFO:teuthology.orchestra.run.smithi100.stdout:Maintainer: Ubuntu Kernel Team 2024-01-13T07:27:27.235 INFO:teuthology.orchestra.run.smithi100.stdout:Architecture: amd64 2024-01-13T07:27:27.235 INFO:teuthology.orchestra.run.smithi100.stdout:Source: linux-meta 2024-01-13T07:27:27.235 INFO:teuthology.orchestra.run.smithi100.stdout:Version: 4.15.0.213.196 2024-01-13T07:27:27.235 INFO:teuthology.orchestra.run.smithi100.stdout:Provides: wireguard-modules (= 1.0.20201112-1~18.04.4), zfs-modules (= 0.7.5-1ubuntu16.12) 2024-01-13T07:27:27.235 INFO:teuthology.orchestra.run.smithi100.stdout:Depends: linux-image-4.15.0-213-generic, linux-modules-extra-4.15.0-213-generic, linux-firmware, intel-microcode, amd64-microcode 2024-01-13T07:27:27.235 INFO:teuthology.orchestra.run.smithi100.stdout:Recommends: thermald 2024-01-13T07:27:27.235 INFO:teuthology.orchestra.run.smithi100.stdout:Description: Generic Linux kernel image 2024-01-13T07:27:27.235 INFO:teuthology.orchestra.run.smithi100.stdout: This package will always depend on the latest generic kernel image 2024-01-13T07:27:27.235 INFO:teuthology.orchestra.run.smithi100.stdout: available. 2024-01-13T07:27:27.236 DEBUG:teuthology.orchestra.run.smithi100:> mktemp 2024-01-13T07:27:27.283 INFO:teuthology.orchestra.run.smithi100.stdout:/tmp/tmp.CZIpJ2ApRT 2024-01-13T07:27:27.283 DEBUG:teuthology.orchestra.run.smithi100:> sudo cp /boot/grub/grub.cfg /tmp/tmp.CZIpJ2ApRT 2024-01-13T07:27:27.337 DEBUG:teuthology.orchestra.run.smithi100:> sudo chmod 0666 /tmp/tmp.CZIpJ2ApRT 2024-01-13T07:27:27.482 DEBUG:teuthology.orchestra.remote:smithi100:/tmp/tmp.CZIpJ2ApRT is 10KB 2024-01-13T07:27:27.494 DEBUG:teuthology.orchestra.run.smithi100:> rm -fr /tmp/tmp.CZIpJ2ApRT 2024-01-13T07:27:27.501 DEBUG:teuthology.orchestra.run.smithi100:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-01-13T07:27:27.562 DEBUG:teuthology.orchestra.run.smithi100:> set -ex 2024-01-13T07:27:27.562 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-01-13T07:27:27.562 DEBUG:teuthology.orchestra.run.smithi100:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-01-13T07:27:27.640 INFO:teuthology.task.kernel:Distro Kernel Version: 4.15.0-213-generic 2024-01-13T07:27:27.641 DEBUG:teuthology.orchestra.run.smithi100:> sudo update-grub 2024-01-13T07:27:28.877 INFO:teuthology.orchestra.run.smithi039.stdout:Reading package lists... 2024-01-13T07:27:28.934 DEBUG:teuthology.orchestra.run.smithi039:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-01-13T07:27:29.018 INFO:teuthology.orchestra.run.smithi039.stdout:Reading package lists... 2024-01-13T07:27:29.126 INFO:teuthology.orchestra.run.smithi100.stderr:Sourcing file `/etc/default/grub' 2024-01-13T07:27:29.146 INFO:teuthology.orchestra.run.smithi100.stderr:Generating grub configuration file ... 2024-01-13T07:27:29.296 INFO:teuthology.orchestra.run.smithi039.stdout:Building dependency tree... 2024-01-13T07:27:29.296 INFO:teuthology.orchestra.run.smithi039.stdout:Reading state information... 2024-01-13T07:27:29.407 INFO:teuthology.orchestra.run.smithi100.stderr:Found linux image: /boot/vmlinuz-4.15.0-213-generic 2024-01-13T07:27:29.419 INFO:teuthology.orchestra.run.smithi100.stderr:Found initrd image: /boot/initrd.img-4.15.0-213-generic 2024-01-13T07:27:29.515 INFO:teuthology.orchestra.run.smithi039.stdout:linux-image-generic is already the newest version (4.15.0.213.196). 2024-01-13T07:27:29.516 INFO:teuthology.orchestra.run.smithi039.stdout:The following packages were automatically installed and are no longer required: 2024-01-13T07:27:29.516 INFO:teuthology.orchestra.run.smithi039.stdout: linux-headers-4.15.0-194 linux-headers-4.15.0-194-generic 2024-01-13T07:27:29.516 INFO:teuthology.orchestra.run.smithi039.stdout: linux-image-4.15.0-194-generic linux-modules-4.15.0-194-generic 2024-01-13T07:27:29.516 INFO:teuthology.orchestra.run.smithi039.stdout: linux-modules-extra-4.15.0-194-generic 2024-01-13T07:27:29.516 INFO:teuthology.orchestra.run.smithi039.stdout:Use 'sudo apt autoremove' to remove them. 2024-01-13T07:27:29.572 INFO:teuthology.orchestra.run.smithi039.stdout:0 upgraded, 0 newly installed, 0 to remove and 164 not upgraded. 2024-01-13T07:27:29.574 DEBUG:teuthology.orchestra.run.smithi039:> dpkg -s linux-image-generic 2024-01-13T07:27:29.594 INFO:teuthology.orchestra.run.smithi039.stdout:Package: linux-image-generic 2024-01-13T07:27:29.594 INFO:teuthology.orchestra.run.smithi039.stdout:Status: install ok installed 2024-01-13T07:27:29.594 INFO:teuthology.orchestra.run.smithi039.stdout:Priority: optional 2024-01-13T07:27:29.595 INFO:teuthology.orchestra.run.smithi039.stdout:Section: kernel 2024-01-13T07:27:29.595 INFO:teuthology.orchestra.run.smithi039.stdout:Installed-Size: 18 2024-01-13T07:27:29.595 INFO:teuthology.orchestra.run.smithi039.stdout:Maintainer: Ubuntu Kernel Team 2024-01-13T07:27:29.595 INFO:teuthology.orchestra.run.smithi039.stdout:Architecture: amd64 2024-01-13T07:27:29.595 INFO:teuthology.orchestra.run.smithi039.stdout:Source: linux-meta 2024-01-13T07:27:29.595 INFO:teuthology.orchestra.run.smithi039.stdout:Version: 4.15.0.213.196 2024-01-13T07:27:29.595 INFO:teuthology.orchestra.run.smithi039.stdout:Provides: wireguard-modules (= 1.0.20201112-1~18.04.4), zfs-modules (= 0.7.5-1ubuntu16.12) 2024-01-13T07:27:29.595 INFO:teuthology.orchestra.run.smithi039.stdout:Depends: linux-image-4.15.0-213-generic, linux-modules-extra-4.15.0-213-generic, linux-firmware, intel-microcode, amd64-microcode 2024-01-13T07:27:29.595 INFO:teuthology.orchestra.run.smithi039.stdout:Recommends: thermald 2024-01-13T07:27:29.595 INFO:teuthology.orchestra.run.smithi039.stdout:Description: Generic Linux kernel image 2024-01-13T07:27:29.595 INFO:teuthology.orchestra.run.smithi039.stdout: This package will always depend on the latest generic kernel image 2024-01-13T07:27:29.595 INFO:teuthology.orchestra.run.smithi039.stdout: available. 2024-01-13T07:27:29.596 DEBUG:teuthology.orchestra.run.smithi039:> mktemp 2024-01-13T07:27:29.643 INFO:teuthology.orchestra.run.smithi039.stdout:/tmp/tmp.3EISTjOd1F 2024-01-13T07:27:29.643 DEBUG:teuthology.orchestra.run.smithi039:> sudo cp /boot/grub/grub.cfg /tmp/tmp.3EISTjOd1F 2024-01-13T07:27:29.700 DEBUG:teuthology.orchestra.run.smithi039:> sudo chmod 0666 /tmp/tmp.3EISTjOd1F 2024-01-13T07:27:29.752 INFO:teuthology.orchestra.run.smithi100.stderr:Found linux image: /boot/vmlinuz-4.15.0-200-generic 2024-01-13T07:27:29.764 INFO:teuthology.orchestra.run.smithi100.stderr:Found initrd image: /boot/initrd.img-4.15.0-200-generic 2024-01-13T07:27:29.831 DEBUG:teuthology.orchestra.remote:smithi039:/tmp/tmp.3EISTjOd1F is 10KB 2024-01-13T07:27:29.840 INFO:teuthology.orchestra.run.smithi100.stderr:Found linux image: /boot/vmlinuz-4.15.0-194-generic 2024-01-13T07:27:29.842 DEBUG:teuthology.orchestra.run.smithi039:> rm -fr /tmp/tmp.3EISTjOd1F 2024-01-13T07:27:29.848 DEBUG:teuthology.orchestra.run.smithi039:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-01-13T07:27:29.853 INFO:teuthology.orchestra.run.smithi100.stderr:Found initrd image: /boot/initrd.img-4.15.0-194-generic 2024-01-13T07:27:29.918 DEBUG:teuthology.orchestra.run.smithi039:> set -ex 2024-01-13T07:27:29.918 DEBUG:teuthology.orchestra.run.smithi039:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-01-13T07:27:29.918 DEBUG:teuthology.orchestra.run.smithi039:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-01-13T07:27:29.997 INFO:teuthology.task.kernel:Distro Kernel Version: 4.15.0-213-generic 2024-01-13T07:27:29.997 DEBUG:teuthology.orchestra.run.smithi039:> sudo update-grub 2024-01-13T07:27:30.567 INFO:teuthology.orchestra.run.smithi100.stderr:done 2024-01-13T07:27:30.568 DEBUG:teuthology.orchestra.run.smithi100:> sudo shutdown -r now 2024-01-13T07:27:31.475 INFO:teuthology.orchestra.run.smithi039.stderr:Sourcing file `/etc/default/grub' 2024-01-13T07:27:31.483 INFO:teuthology.orchestra.run.smithi039.stderr:Generating grub configuration file ... 2024-01-13T07:27:31.727 INFO:teuthology.orchestra.run.smithi039.stderr:Found linux image: /boot/vmlinuz-4.15.0-213-generic 2024-01-13T07:27:31.740 INFO:teuthology.orchestra.run.smithi039.stderr:Found initrd image: /boot/initrd.img-4.15.0-213-generic 2024-01-13T07:27:32.077 INFO:teuthology.orchestra.run.smithi039.stderr:Found linux image: /boot/vmlinuz-4.15.0-200-generic 2024-01-13T07:27:32.088 INFO:teuthology.orchestra.run.smithi039.stderr:Found initrd image: /boot/initrd.img-4.15.0-200-generic 2024-01-13T07:27:32.165 INFO:teuthology.orchestra.run.smithi039.stderr:Found linux image: /boot/vmlinuz-4.15.0-194-generic 2024-01-13T07:27:32.178 INFO:teuthology.orchestra.run.smithi039.stderr:Found initrd image: /boot/initrd.img-4.15.0-194-generic 2024-01-13T07:27:32.858 INFO:teuthology.orchestra.run.smithi039.stderr:done 2024-01-13T07:27:32.859 DEBUG:teuthology.orchestra.run.smithi039:> sudo shutdown -r now 2024-01-13T07:28:00.636 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-01-13T07:28:00.637 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-01-13T07:28:00.638 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi100.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-13T07:28:02.864 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-01-13T07:28:02.864 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi039.front.sepia.ceph.com' 2024-01-13T07:28:02.865 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi039.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-13T07:28:37.436 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.39 2024-01-13T07:28:46.437 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi039.front.sepia.ceph.com' 2024-01-13T07:28:46.438 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi039.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-13T07:28:49.500 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.39 2024-01-13T07:29:00.651 DEBUG:teuthology.orchestra.remote:timed out 2024-01-13T07:29:01.501 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi039.front.sepia.ceph.com' 2024-01-13T07:29:01.502 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi039.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-13T07:29:09.658 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-01-13T07:29:09.659 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi100.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-13T07:29:09.824 DEBUG:teuthology.orchestra.run.smithi100:> true 2024-01-13T07:29:10.405 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-01-13T07:29:10.405 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "4.15.0-213-generic"... 2024-01-13T07:29:10.405 DEBUG:teuthology.orchestra.run.smithi100:> uname -r 2024-01-13T07:29:10.454 INFO:teuthology.orchestra.run.smithi100.stdout:4.15.0-213-generic 2024-01-13T07:29:10.455 DEBUG:teuthology.task.kernel:current kernel version is 4.15.0-213-generic vs 4.15.0-213-generic 2024-01-13T07:29:10.455 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-01-13T07:29:10.455 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-01-13T07:29:11.456 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-01-13T07:29:11.457 DEBUG:teuthology.orchestra.run.smithi100:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-01-13T07:29:11.488 INFO:teuthology.orchestra.run.smithi100.stdout:ttyS1 2024-01-13T07:29:11.512 DEBUG:teuthology.parallel:result is None 2024-01-13T07:30:01.504 DEBUG:teuthology.orchestra.remote:timed out 2024-01-13T07:30:16.506 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi039.front.sepia.ceph.com' 2024-01-13T07:30:16.507 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi039.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-13T07:30:16.612 DEBUG:teuthology.orchestra.run.smithi039:> true 2024-01-13T07:30:16.997 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi039.front.sepia.ceph.com' 2024-01-13T07:30:16.998 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "4.15.0-213-generic"... 2024-01-13T07:30:16.998 DEBUG:teuthology.orchestra.run.smithi039:> uname -r 2024-01-13T07:30:17.044 INFO:teuthology.orchestra.run.smithi039.stdout:4.15.0-213-generic 2024-01-13T07:30:17.045 DEBUG:teuthology.task.kernel:current kernel version is 4.15.0-213-generic vs 4.15.0-213-generic 2024-01-13T07:30:17.045 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-01-13T07:30:17.045 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-01-13T07:30:18.046 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-01-13T07:30:18.046 DEBUG:teuthology.orchestra.run.smithi039:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-01-13T07:30:18.078 INFO:teuthology.orchestra.run.smithi039.stdout:ttyS1 2024-01-13T07:30:18.106 DEBUG:teuthology.parallel:result is None 2024-01-13T07:30:18.107 INFO:teuthology.run_tasks:Running task internal.base... 2024-01-13T07:30:18.113 INFO:teuthology.task.internal:Creating test directory... 2024-01-13T07:30:18.113 DEBUG:teuthology.orchestra.run.smithi039:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-01-13T07:30:18.149 DEBUG:teuthology.orchestra.run.smithi100:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-01-13T07:30:18.156 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-01-13T07:30:18.163 INFO:teuthology.run_tasks:Running task internal.archive... 2024-01-13T07:30:18.173 INFO:teuthology.task.internal:Creating archive directory... 2024-01-13T07:30:18.173 DEBUG:teuthology.orchestra.run.smithi039:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-01-13T07:30:18.197 DEBUG:teuthology.orchestra.run.smithi100:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-01-13T07:30:18.479 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-01-13T07:30:18.486 INFO:teuthology.task.internal:Enabling coredump saving... 2024-01-13T07:30:18.486 DEBUG:teuthology.orchestra.run.smithi039:> 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-01-13T07:30:18.488 DEBUG:teuthology.orchestra.run.smithi100:> 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-01-13T07:30:18.509 INFO:teuthology.orchestra.run.smithi039.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-01-13T07:30:18.510 INFO:teuthology.orchestra.run.smithi100.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-01-13T07:30:18.516 INFO:teuthology.orchestra.run.smithi039.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-01-13T07:30:18.519 INFO:teuthology.orchestra.run.smithi100.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-01-13T07:30:18.521 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-01-13T07:30:18.528 INFO:teuthology.task.internal:Configuring sudo... 2024-01-13T07:30:18.528 DEBUG:teuthology.orchestra.run.smithi039:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-01-13T07:30:18.565 DEBUG:teuthology.orchestra.run.smithi100:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-01-13T07:30:18.581 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-01-13T07:30:18.594 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-01-13T07:30:18.594 DEBUG:teuthology.orchestra.run.smithi039:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-01-13T07:30:18.623 DEBUG:teuthology.orchestra.run.smithi100:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-01-13T07:30:18.630 DEBUG:teuthology.orchestra.run.smithi039:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-01-13T07:30:18.674 DEBUG:teuthology.orchestra.run.smithi039:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-01-13T07:30:18.722 DEBUG:teuthology.orchestra.run.smithi039:> set -ex 2024-01-13T07:30:18.722 DEBUG:teuthology.orchestra.run.smithi039:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-01-13T07:30:18.787 DEBUG:teuthology.orchestra.run.smithi100:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-01-13T07:30:18.794 DEBUG:teuthology.orchestra.run.smithi100:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-01-13T07:30:18.840 DEBUG:teuthology.orchestra.run.smithi100:> set -ex 2024-01-13T07:30:18.840 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-01-13T07:30:18.912 DEBUG:teuthology.orchestra.run.smithi039:> sudo service rsyslog restart 2024-01-13T07:30:18.914 DEBUG:teuthology.orchestra.run.smithi100:> sudo service rsyslog restart 2024-01-13T07:30:18.997 INFO:teuthology.run_tasks:Running task internal.timer... 2024-01-13T07:30:19.006 INFO:teuthology.task.internal:Starting timer... 2024-01-13T07:30:19.007 INFO:teuthology.run_tasks:Running task pcp... 2024-01-13T07:30:19.015 INFO:teuthology.run_tasks:Running task selinux... 2024-01-13T07:30:19.025 DEBUG:teuthology.task.selinux:Excluding smithi039: OS 'ubuntu' does not support SELinux 2024-01-13T07:30:19.025 DEBUG:teuthology.task.selinux:Excluding smithi100: OS 'ubuntu' does not support SELinux 2024-01-13T07:30:19.026 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-01-13T07:30:19.026 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-01-13T07:30:19.027 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-01-13T07:30:19.027 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-01-13T07:30:19.038 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-01-13T07:30:19.057 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-01-13T07:30:19.058 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi039.front.sepia.ceph.com,smithi100.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-01-13T07:35:36.908 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi039.front.sepia.ceph.com'), Remote(name='ubuntu@smithi100.front.sepia.ceph.com')] 2024-01-13T07:35:36.909 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi039.front.sepia.ceph.com' 2024-01-13T07:35:36.910 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi039.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-13T07:35:36.997 DEBUG:teuthology.orchestra.run.smithi039:> true 2024-01-13T07:35:37.117 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi039.front.sepia.ceph.com' 2024-01-13T07:35:37.117 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-01-13T07:35:37.118 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi100.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-01-13T07:35:37.199 DEBUG:teuthology.orchestra.run.smithi100:> true 2024-01-13T07:35:37.317 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-01-13T07:35:37.317 INFO:teuthology.run_tasks:Running task clock... 2024-01-13T07:35:37.328 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-01-13T07:35:37.328 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-01-13T07:35:37.329 DEBUG:teuthology.orchestra.run.smithi039:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-01-13T07:35:37.331 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-01-13T07:35:37.331 DEBUG:teuthology.orchestra.run.smithi100:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-01-13T07:35:37.386 INFO:teuthology.orchestra.run.smithi039.stdout:13 Jan 07:35:37 ntpd[14377]: ntpd 4.2.8p10@1.3728-o (1): Starting 2024-01-13T07:35:37.386 INFO:teuthology.orchestra.run.smithi039.stdout:13 Jan 07:35:37 ntpd[14377]: Command line: ntpd -gq 2024-01-13T07:35:37.387 INFO:teuthology.orchestra.run.smithi039.stdout:13 Jan 07:35:37 ntpd[14377]: proto: precision = 0.127 usec (-23) 2024-01-13T07:35:37.387 INFO:teuthology.orchestra.run.smithi039.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-01-13T07:35:37.388 INFO:teuthology.orchestra.run.smithi039.stdout:13 Jan 07:35:37 ntpd[14377]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-01-13T07:35:37.388 INFO:teuthology.orchestra.run.smithi039.stderr:restrict ::: KOD does nothing without LIMITED. 2024-01-13T07:35:37.389 INFO:teuthology.orchestra.run.smithi039.stdout:13 Jan 07:35:37 ntpd[14377]: restrict ::: KOD does nothing without LIMITED. 2024-01-13T07:35:37.389 INFO:teuthology.orchestra.run.smithi039.stdout:13 Jan 07:35:37 ntpd[14377]: Listen and drop on 0 v6wildcard [::]:123 2024-01-13T07:35:37.389 INFO:teuthology.orchestra.run.smithi039.stdout:13 Jan 07:35:37 ntpd[14377]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-01-13T07:35:37.389 INFO:teuthology.orchestra.run.smithi039.stdout:13 Jan 07:35:37 ntpd[14377]: Listen normally on 2 lo 127.0.0.1:123 2024-01-13T07:35:37.389 INFO:teuthology.orchestra.run.smithi039.stdout:13 Jan 07:35:37 ntpd[14377]: Listen normally on 3 ens1f0 172.21.15.39:123 2024-01-13T07:35:37.389 INFO:teuthology.orchestra.run.smithi039.stdout:13 Jan 07:35:37 ntpd[14377]: Listen normally on 4 lo [::1]:123 2024-01-13T07:35:37.389 INFO:teuthology.orchestra.run.smithi039.stdout:13 Jan 07:35:37 ntpd[14377]: Listen normally on 5 ens1f0 [fe80::ec4:7aff:febd:1370%3]:123 2024-01-13T07:35:37.389 INFO:teuthology.orchestra.run.smithi039.stdout:13 Jan 07:35:37 ntpd[14377]: Listening on routing socket on fd #22 for interface updates 2024-01-13T07:35:37.420 INFO:teuthology.orchestra.run.smithi100.stdout:13 Jan 07:35:37 ntpd[14252]: ntpd 4.2.8p10@1.3728-o (1): Starting 2024-01-13T07:35:37.420 INFO:teuthology.orchestra.run.smithi100.stdout:13 Jan 07:35:37 ntpd[14252]: Command line: ntpd -gq 2024-01-13T07:35:37.421 INFO:teuthology.orchestra.run.smithi100.stdout:13 Jan 07:35:37 ntpd[14252]: proto: precision = 0.123 usec (-23) 2024-01-13T07:35:37.421 INFO:teuthology.orchestra.run.smithi100.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-01-13T07:35:37.422 INFO:teuthology.orchestra.run.smithi100.stdout:13 Jan 07:35:37 ntpd[14252]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-01-13T07:35:37.422 INFO:teuthology.orchestra.run.smithi100.stderr:restrict ::: KOD does nothing without LIMITED. 2024-01-13T07:35:37.423 INFO:teuthology.orchestra.run.smithi100.stdout:13 Jan 07:35:37 ntpd[14252]: restrict ::: KOD does nothing without LIMITED. 2024-01-13T07:35:37.423 INFO:teuthology.orchestra.run.smithi100.stdout:13 Jan 07:35:37 ntpd[14252]: Listen and drop on 0 v6wildcard [::]:123 2024-01-13T07:35:37.423 INFO:teuthology.orchestra.run.smithi100.stdout:13 Jan 07:35:37 ntpd[14252]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-01-13T07:35:37.423 INFO:teuthology.orchestra.run.smithi100.stdout:13 Jan 07:35:37 ntpd[14252]: Listen normally on 2 lo 127.0.0.1:123 2024-01-13T07:35:37.423 INFO:teuthology.orchestra.run.smithi100.stdout:13 Jan 07:35:37 ntpd[14252]: Listen normally on 3 enp3s0f1 172.21.15.100:123 2024-01-13T07:35:37.423 INFO:teuthology.orchestra.run.smithi100.stdout:13 Jan 07:35:37 ntpd[14252]: Listen normally on 4 lo [::1]:123 2024-01-13T07:35:37.423 INFO:teuthology.orchestra.run.smithi100.stdout:13 Jan 07:35:37 ntpd[14252]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:d733%5]:123 2024-01-13T07:35:37.423 INFO:teuthology.orchestra.run.smithi100.stdout:13 Jan 07:35:37 ntpd[14252]: Listening on routing socket on fd #22 for interface updates 2024-01-13T07:35:38.387 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:38 ntpd[14377]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-13T07:35:38.388 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:38 ntpd[14377]: can't open /var/log/ntpstats/rawstats.20240113: Permission denied 2024-01-13T07:35:38.388 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:38 ntpd[14377]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-13T07:35:38.388 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:38 ntpd[14377]: can't open /var/log/ntpstats/peerstats.20240113: Permission denied 2024-01-13T07:35:38.388 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:38 ntpd[14377]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-13T07:35:38.388 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:38 ntpd[14377]: can't open /var/log/ntpstats/rawstats.20240113: Permission denied 2024-01-13T07:35:38.388 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:38 ntpd[14377]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-13T07:35:38.388 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:38 ntpd[14377]: can't open /var/log/ntpstats/peerstats.20240113: Permission denied 2024-01-13T07:35:38.421 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:38 ntpd[14252]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-13T07:35:38.421 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:38 ntpd[14252]: can't open /var/log/ntpstats/rawstats.20240113: Permission denied 2024-01-13T07:35:38.422 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:38 ntpd[14252]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-13T07:35:38.422 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:38 ntpd[14252]: can't open /var/log/ntpstats/peerstats.20240113: Permission denied 2024-01-13T07:35:38.422 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:38 ntpd[14252]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-13T07:35:38.422 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:38 ntpd[14252]: can't open /var/log/ntpstats/rawstats.20240113: Permission denied 2024-01-13T07:35:38.422 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:38 ntpd[14252]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-13T07:35:38.422 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:38 ntpd[14252]: can't open /var/log/ntpstats/peerstats.20240113: Permission denied 2024-01-13T07:35:40.389 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:40 ntpd[14377]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-13T07:35:40.389 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:40 ntpd[14377]: can't open /var/log/ntpstats/rawstats.20240113: Permission denied 2024-01-13T07:35:40.390 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:40 ntpd[14377]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-13T07:35:40.390 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:40 ntpd[14377]: can't open /var/log/ntpstats/peerstats.20240113: Permission denied 2024-01-13T07:35:40.390 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:40 ntpd[14377]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-13T07:35:40.390 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:40 ntpd[14377]: can't open /var/log/ntpstats/rawstats.20240113: Permission denied 2024-01-13T07:35:40.390 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:40 ntpd[14377]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-13T07:35:40.390 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:40 ntpd[14377]: can't open /var/log/ntpstats/peerstats.20240113: Permission denied 2024-01-13T07:35:40.391 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:40 ntpd[14377]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-13T07:35:40.391 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:40 ntpd[14377]: can't open /var/log/ntpstats/rawstats.20240113: Permission denied 2024-01-13T07:35:40.391 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:40 ntpd[14377]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-13T07:35:40.391 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:40 ntpd[14377]: can't open /var/log/ntpstats/peerstats.20240113: Permission denied 2024-01-13T07:35:40.421 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:40 ntpd[14252]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-13T07:35:40.421 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:40 ntpd[14252]: can't open /var/log/ntpstats/rawstats.20240113: Permission denied 2024-01-13T07:35:40.422 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:40 ntpd[14252]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-13T07:35:40.422 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:40 ntpd[14252]: can't open /var/log/ntpstats/peerstats.20240113: Permission denied 2024-01-13T07:35:40.422 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:40 ntpd[14252]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-13T07:35:40.422 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:40 ntpd[14252]: can't open /var/log/ntpstats/rawstats.20240113: Permission denied 2024-01-13T07:35:40.422 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:40 ntpd[14252]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-13T07:35:40.422 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:40 ntpd[14252]: can't open /var/log/ntpstats/peerstats.20240113: Permission denied 2024-01-13T07:35:41.421 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:41 ntpd[14252]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-13T07:35:41.421 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:41 ntpd[14252]: can't open /var/log/ntpstats/rawstats.20240113: Permission denied 2024-01-13T07:35:41.421 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:41 ntpd[14252]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-13T07:35:41.421 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:41 ntpd[14252]: can't open /var/log/ntpstats/peerstats.20240113: Permission denied 2024-01-13T07:35:42.388 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:42 ntpd[14377]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-13T07:35:42.388 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:42 ntpd[14377]: can't open /var/log/ntpstats/rawstats.20240113: Permission denied 2024-01-13T07:35:42.388 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:42 ntpd[14377]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-13T07:35:42.388 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:42 ntpd[14377]: can't open /var/log/ntpstats/peerstats.20240113: Permission denied 2024-01-13T07:35:42.388 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:42 ntpd[14377]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-13T07:35:42.389 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:42 ntpd[14377]: can't open /var/log/ntpstats/rawstats.20240113: Permission denied 2024-01-13T07:35:42.389 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:42 ntpd[14377]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-13T07:35:42.389 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:42 ntpd[14377]: can't open /var/log/ntpstats/peerstats.20240113: Permission denied 2024-01-13T07:35:42.389 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:42 ntpd[14377]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-13T07:35:42.389 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:42 ntpd[14377]: can't open /var/log/ntpstats/rawstats.20240113: Permission denied 2024-01-13T07:35:42.389 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:42 ntpd[14377]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-13T07:35:42.389 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:42 ntpd[14377]: can't open /var/log/ntpstats/peerstats.20240113: Permission denied 2024-01-13T07:35:42.421 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:42 ntpd[14252]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-13T07:35:42.421 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:42 ntpd[14252]: can't open /var/log/ntpstats/rawstats.20240113: Permission denied 2024-01-13T07:35:42.421 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:42 ntpd[14252]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-13T07:35:42.421 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:42 ntpd[14252]: can't open /var/log/ntpstats/peerstats.20240113: Permission denied 2024-01-13T07:35:42.422 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:42 ntpd[14252]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-13T07:35:42.422 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:42 ntpd[14252]: can't open /var/log/ntpstats/rawstats.20240113: Permission denied 2024-01-13T07:35:42.422 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:42 ntpd[14252]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-13T07:35:42.422 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:42 ntpd[14252]: can't open /var/log/ntpstats/peerstats.20240113: Permission denied 2024-01-13T07:35:43.421 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:43 ntpd[14252]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-13T07:35:43.421 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:43 ntpd[14252]: can't open /var/log/ntpstats/rawstats.20240113: Permission denied 2024-01-13T07:35:43.421 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:43 ntpd[14252]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-13T07:35:43.421 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:43 ntpd[14252]: can't open /var/log/ntpstats/peerstats.20240113: Permission denied 2024-01-13T07:35:44.387 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:44 ntpd[14377]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-13T07:35:44.387 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:44 ntpd[14377]: can't open /var/log/ntpstats/rawstats.20240113: Permission denied 2024-01-13T07:35:44.387 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:44 ntpd[14377]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-13T07:35:44.387 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:44 ntpd[14377]: can't open /var/log/ntpstats/peerstats.20240113: Permission denied 2024-01-13T07:35:44.388 INFO:teuthology.orchestra.run.smithi039.stdout:13 Jan 07:35:44 ntpd[14377]: ntpd: time slew +0.000490 s 2024-01-13T07:35:44.388 INFO:teuthology.orchestra.run.smithi039.stdout:ntpd: time slew +0.000490s 2024-01-13T07:35:44.388 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:44 ntpd[14377]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-01-13T07:35:44.388 INFO:teuthology.orchestra.run.smithi039.stderr:13 Jan 07:35:44 ntpd[14377]: can't open /var/log/ntpstats/loopstats.20240113: Permission denied 2024-01-13T07:35:44.421 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:44 ntpd[14252]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-01-13T07:35:44.421 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:44 ntpd[14252]: can't open /var/log/ntpstats/rawstats.20240113: Permission denied 2024-01-13T07:35:44.421 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:44 ntpd[14252]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-01-13T07:35:44.421 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:44 ntpd[14252]: can't open /var/log/ntpstats/peerstats.20240113: Permission denied 2024-01-13T07:35:44.421 INFO:teuthology.orchestra.run.smithi100.stdout:13 Jan 07:35:44 ntpd[14252]: ntpd: time slew -0.000328 s 2024-01-13T07:35:44.422 INFO:teuthology.orchestra.run.smithi100.stdout:ntpd: time slew -0.000328s 2024-01-13T07:35:44.422 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:44 ntpd[14252]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-01-13T07:35:44.422 INFO:teuthology.orchestra.run.smithi100.stderr:13 Jan 07:35:44 ntpd[14252]: can't open /var/log/ntpstats/loopstats.20240113: Permission denied 2024-01-13T07:35:44.446 INFO:teuthology.orchestra.run.smithi039.stdout: remote refid st t when poll reach delay offset jitter 2024-01-13T07:35:44.446 INFO:teuthology.orchestra.run.smithi039.stdout:============================================================================== 2024-01-13T07:35:44.446 INFO:teuthology.orchestra.run.smithi039.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-01-13T07:35:44.446 INFO:teuthology.orchestra.run.smithi039.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-01-13T07:35:44.447 INFO:teuthology.orchestra.run.smithi039.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-01-13T07:35:44.447 INFO:teuthology.orchestra.run.smithi039.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-01-13T07:35:44.492 INFO:teuthology.orchestra.run.smithi100.stdout: remote refid st t when poll reach delay offset jitter 2024-01-13T07:35:44.492 INFO:teuthology.orchestra.run.smithi100.stdout:============================================================================== 2024-01-13T07:35:44.492 INFO:teuthology.orchestra.run.smithi100.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-01-13T07:35:44.492 INFO:teuthology.orchestra.run.smithi100.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-01-13T07:35:44.492 INFO:teuthology.orchestra.run.smithi100.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-01-13T07:35:44.492 INFO:teuthology.orchestra.run.smithi100.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-01-13T07:35:44.493 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-01-13T07:35:44.504 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-01-13T07:35:44.505 DEBUG:teuthology.orchestra.run.smithi039:> set -ex 2024-01-13T07:35:44.505 DEBUG:teuthology.orchestra.run.smithi039:> dd if=/scratch_devs of=/dev/stdout 2024-01-13T07:35:44.512 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-01-13T07:35:44.512 DEBUG:teuthology.orchestra.run.smithi039:> stat /dev/vg_nvme/lv_1 2024-01-13T07:35:44.562 INFO:teuthology.orchestra.run.smithi039.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-01-13T07:35:44.562 INFO:teuthology.orchestra.run.smithi039.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-13T07:35:44.562 INFO:teuthology.orchestra.run.smithi039.stdout:Device: 6h/6d Inode: 343 Links: 1 2024-01-13T07:35:44.563 INFO:teuthology.orchestra.run.smithi039.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-13T07:35:44.563 INFO:teuthology.orchestra.run.smithi039.stdout:Access: 2024-01-13 07:34:16.831805141 +0000 2024-01-13T07:35:44.563 INFO:teuthology.orchestra.run.smithi039.stdout:Modify: 2024-01-13 07:34:16.655809332 +0000 2024-01-13T07:35:44.563 INFO:teuthology.orchestra.run.smithi039.stdout:Change: 2024-01-13 07:34:16.655809332 +0000 2024-01-13T07:35:44.563 INFO:teuthology.orchestra.run.smithi039.stdout: Birth: - 2024-01-13T07:35:44.564 DEBUG:teuthology.orchestra.run.smithi039:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-01-13T07:35:44.617 INFO:teuthology.orchestra.run.smithi039.stderr:1+0 records in 2024-01-13T07:35:44.617 INFO:teuthology.orchestra.run.smithi039.stderr:1+0 records out 2024-01-13T07:35:44.617 INFO:teuthology.orchestra.run.smithi039.stderr:512 bytes copied, 0.000466963 s, 1.1 MB/s 2024-01-13T07:35:44.618 DEBUG:teuthology.orchestra.run.smithi039:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-01-13T07:35:44.667 DEBUG:teuthology.orchestra.run.smithi039:> stat /dev/vg_nvme/lv_2 2024-01-13T07:35:44.718 INFO:teuthology.orchestra.run.smithi039.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-01-13T07:35:44.718 INFO:teuthology.orchestra.run.smithi039.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-13T07:35:44.718 INFO:teuthology.orchestra.run.smithi039.stdout:Device: 6h/6d Inode: 351 Links: 1 2024-01-13T07:35:44.718 INFO:teuthology.orchestra.run.smithi039.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-13T07:35:44.718 INFO:teuthology.orchestra.run.smithi039.stdout:Access: 2024-01-13 07:34:17.131797998 +0000 2024-01-13T07:35:44.718 INFO:teuthology.orchestra.run.smithi039.stdout:Modify: 2024-01-13 07:34:16.971801808 +0000 2024-01-13T07:35:44.718 INFO:teuthology.orchestra.run.smithi039.stdout:Change: 2024-01-13 07:34:16.971801808 +0000 2024-01-13T07:35:44.718 INFO:teuthology.orchestra.run.smithi039.stdout: Birth: - 2024-01-13T07:35:44.718 DEBUG:teuthology.orchestra.run.smithi039:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-01-13T07:35:44.773 INFO:teuthology.orchestra.run.smithi039.stderr:1+0 records in 2024-01-13T07:35:44.773 INFO:teuthology.orchestra.run.smithi039.stderr:1+0 records out 2024-01-13T07:35:44.773 INFO:teuthology.orchestra.run.smithi039.stderr:512 bytes copied, 0.000473876 s, 1.1 MB/s 2024-01-13T07:35:44.774 DEBUG:teuthology.orchestra.run.smithi039:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-01-13T07:35:44.824 DEBUG:teuthology.orchestra.run.smithi039:> stat /dev/vg_nvme/lv_3 2024-01-13T07:35:44.874 INFO:teuthology.orchestra.run.smithi039.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-01-13T07:35:44.874 INFO:teuthology.orchestra.run.smithi039.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-13T07:35:44.874 INFO:teuthology.orchestra.run.smithi039.stdout:Device: 6h/6d Inode: 357 Links: 1 2024-01-13T07:35:44.874 INFO:teuthology.orchestra.run.smithi039.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-13T07:35:44.874 INFO:teuthology.orchestra.run.smithi039.stdout:Access: 2024-01-13 07:34:17.435790760 +0000 2024-01-13T07:35:44.875 INFO:teuthology.orchestra.run.smithi039.stdout:Modify: 2024-01-13 07:34:17.279794474 +0000 2024-01-13T07:35:44.875 INFO:teuthology.orchestra.run.smithi039.stdout:Change: 2024-01-13 07:34:17.279794474 +0000 2024-01-13T07:35:44.875 INFO:teuthology.orchestra.run.smithi039.stdout: Birth: - 2024-01-13T07:35:44.875 DEBUG:teuthology.orchestra.run.smithi039:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-01-13T07:35:44.928 INFO:teuthology.orchestra.run.smithi039.stderr:1+0 records in 2024-01-13T07:35:44.929 INFO:teuthology.orchestra.run.smithi039.stderr:1+0 records out 2024-01-13T07:35:44.929 INFO:teuthology.orchestra.run.smithi039.stderr:512 bytes copied, 0.000448237 s, 1.1 MB/s 2024-01-13T07:35:44.930 DEBUG:teuthology.orchestra.run.smithi039:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-01-13T07:35:44.983 DEBUG:teuthology.orchestra.run.smithi039:> stat /dev/vg_nvme/lv_4 2024-01-13T07:35:45.034 INFO:teuthology.orchestra.run.smithi039.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-01-13T07:35:45.034 INFO:teuthology.orchestra.run.smithi039.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-13T07:35:45.034 INFO:teuthology.orchestra.run.smithi039.stdout:Device: 6h/6d Inode: 363 Links: 1 2024-01-13T07:35:45.034 INFO:teuthology.orchestra.run.smithi039.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-13T07:35:45.034 INFO:teuthology.orchestra.run.smithi039.stdout:Access: 2024-01-13 07:34:17.563787712 +0000 2024-01-13T07:35:45.034 INFO:teuthology.orchestra.run.smithi039.stdout:Modify: 2024-01-13 07:34:17.559787807 +0000 2024-01-13T07:35:45.034 INFO:teuthology.orchestra.run.smithi039.stdout:Change: 2024-01-13 07:34:17.559787807 +0000 2024-01-13T07:35:45.034 INFO:teuthology.orchestra.run.smithi039.stdout: Birth: - 2024-01-13T07:35:45.035 DEBUG:teuthology.orchestra.run.smithi039:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-01-13T07:35:45.088 INFO:teuthology.orchestra.run.smithi039.stderr:1+0 records in 2024-01-13T07:35:45.088 INFO:teuthology.orchestra.run.smithi039.stderr:1+0 records out 2024-01-13T07:35:45.088 INFO:teuthology.orchestra.run.smithi039.stderr:512 bytes copied, 0.00034166 s, 1.5 MB/s 2024-01-13T07:35:45.089 DEBUG:teuthology.orchestra.run.smithi039:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-01-13T07:35:45.139 DEBUG:teuthology.orchestra.run.smithi039:> sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-01-13T07:35:45.225 INFO:teuthology.orchestra.run.smithi039.stdout:loop 2024-01-13T07:35:45.226 INFO:tasks.nvme_loop:Connecting nvme_loop smithi039:/dev/vg_nvme/lv_1... 2024-01-13T07:35:45.227 DEBUG:teuthology.orchestra.run.smithi039:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-01-13T07:35:45.291 INFO:teuthology.orchestra.run.smithi039.stdout:1 2024-01-13T07:35:45.320 INFO:teuthology.orchestra.run.smithi039.stdout:/dev/vg_nvme/lv_11 2024-01-13T07:35:45.343 INFO:tasks.nvme_loop:Connecting nvme_loop smithi039:/dev/vg_nvme/lv_2... 2024-01-13T07:35:45.344 DEBUG:teuthology.orchestra.run.smithi039:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-01-13T07:35:45.408 INFO:teuthology.orchestra.run.smithi039.stdout:1 2024-01-13T07:35:45.433 INFO:teuthology.orchestra.run.smithi039.stdout:/dev/vg_nvme/lv_21 2024-01-13T07:35:45.457 INFO:tasks.nvme_loop:Connecting nvme_loop smithi039:/dev/vg_nvme/lv_3... 2024-01-13T07:35:45.457 DEBUG:teuthology.orchestra.run.smithi039:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-01-13T07:35:45.523 INFO:teuthology.orchestra.run.smithi039.stdout:1 2024-01-13T07:35:45.549 INFO:teuthology.orchestra.run.smithi039.stdout:/dev/vg_nvme/lv_31 2024-01-13T07:35:45.572 INFO:tasks.nvme_loop:Connecting nvme_loop smithi039:/dev/vg_nvme/lv_4... 2024-01-13T07:35:45.572 DEBUG:teuthology.orchestra.run.smithi039:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-01-13T07:35:45.638 INFO:teuthology.orchestra.run.smithi039.stdout:1 2024-01-13T07:35:45.667 INFO:teuthology.orchestra.run.smithi039.stdout:/dev/vg_nvme/lv_41 2024-01-13T07:35:45.688 DEBUG:teuthology.orchestra.run.smithi039:> set -ex 2024-01-13T07:35:45.688 DEBUG:teuthology.orchestra.run.smithi039:> dd if=/scratch_devs of=/dev/stdout 2024-01-13T07:35:45.737 DEBUG:teuthology.orchestra.run.smithi039:> sudo nvme list 2024-01-13T07:35:45.793 INFO:teuthology.orchestra.run.smithi039.stdout:Node SN Model Namespace Usage Format FW Rev 2024-01-13T07:35:45.793 INFO:teuthology.orchestra.run.smithi039.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-01-13T07:35:45.793 INFO:teuthology.orchestra.run.smithi039.stdout:/dev/nvme0n1 BTLE736102QX4P0KGN INTEL SSDPEDKE040T7 1 4.00 TB / 4.00 TB 512 B + 0 B QDV1013D 2024-01-13T07:35:45.793 INFO:teuthology.orchestra.run.smithi039.stdout:/dev/nvme1n1 20d653d022fad1d2 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-01-13T07:35:45.793 INFO:teuthology.orchestra.run.smithi039.stdout:/dev/nvme2n1 c7d89d5d75bfe767 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-01-13T07:35:45.793 INFO:teuthology.orchestra.run.smithi039.stdout:/dev/nvme3n1 34b5061205b8c9bb Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-01-13T07:35:45.793 INFO:teuthology.orchestra.run.smithi039.stdout:/dev/nvme4n1 dd38d391e4464fa4 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-01-13T07:35:45.794 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-01-13T07:35:45.794 DEBUG:teuthology.orchestra.run.smithi039:> set -ex 2024-01-13T07:35:45.794 DEBUG:teuthology.orchestra.run.smithi039:> sudo dd of=/scratch_devs 2024-01-13T07:35:45.853 DEBUG:teuthology.orchestra.run.smithi100:> set -ex 2024-01-13T07:35:45.853 DEBUG:teuthology.orchestra.run.smithi100:> dd if=/scratch_devs of=/dev/stdout 2024-01-13T07:35:45.860 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-01-13T07:35:45.860 DEBUG:teuthology.orchestra.run.smithi100:> stat /dev/vg_nvme/lv_1 2024-01-13T07:35:45.912 INFO:teuthology.orchestra.run.smithi100.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-01-13T07:35:45.912 INFO:teuthology.orchestra.run.smithi100.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-13T07:35:45.912 INFO:teuthology.orchestra.run.smithi100.stdout:Device: 6h/6d Inode: 341 Links: 1 2024-01-13T07:35:45.912 INFO:teuthology.orchestra.run.smithi100.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-13T07:35:45.912 INFO:teuthology.orchestra.run.smithi100.stdout:Access: 2024-01-13 07:34:09.845493792 +0000 2024-01-13T07:35:45.912 INFO:teuthology.orchestra.run.smithi100.stdout:Modify: 2024-01-13 07:34:09.661498169 +0000 2024-01-13T07:35:45.912 INFO:teuthology.orchestra.run.smithi100.stdout:Change: 2024-01-13 07:34:09.661498169 +0000 2024-01-13T07:35:45.912 INFO:teuthology.orchestra.run.smithi100.stdout: Birth: - 2024-01-13T07:35:45.913 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-01-13T07:35:45.967 INFO:teuthology.orchestra.run.smithi100.stderr:1+0 records in 2024-01-13T07:35:45.967 INFO:teuthology.orchestra.run.smithi100.stderr:1+0 records out 2024-01-13T07:35:45.967 INFO:teuthology.orchestra.run.smithi100.stderr:512 bytes copied, 0.000384865 s, 1.3 MB/s 2024-01-13T07:35:45.969 DEBUG:teuthology.orchestra.run.smithi100:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-01-13T07:35:46.021 DEBUG:teuthology.orchestra.run.smithi100:> stat /dev/vg_nvme/lv_2 2024-01-13T07:35:46.068 INFO:teuthology.orchestra.run.smithi100.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-01-13T07:35:46.068 INFO:teuthology.orchestra.run.smithi100.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-13T07:35:46.068 INFO:teuthology.orchestra.run.smithi100.stdout:Device: 6h/6d Inode: 349 Links: 1 2024-01-13T07:35:46.068 INFO:teuthology.orchestra.run.smithi100.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-13T07:35:46.068 INFO:teuthology.orchestra.run.smithi100.stdout:Access: 2024-01-13 07:34:10.141486752 +0000 2024-01-13T07:35:46.068 INFO:teuthology.orchestra.run.smithi100.stdout:Modify: 2024-01-13 07:34:09.989490367 +0000 2024-01-13T07:35:46.068 INFO:teuthology.orchestra.run.smithi100.stdout:Change: 2024-01-13 07:34:09.989490367 +0000 2024-01-13T07:35:46.068 INFO:teuthology.orchestra.run.smithi100.stdout: Birth: - 2024-01-13T07:35:46.068 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-01-13T07:35:46.123 INFO:teuthology.orchestra.run.smithi100.stderr:1+0 records in 2024-01-13T07:35:46.123 INFO:teuthology.orchestra.run.smithi100.stderr:1+0 records out 2024-01-13T07:35:46.123 INFO:teuthology.orchestra.run.smithi100.stderr:512 bytes copied, 0.000354969 s, 1.4 MB/s 2024-01-13T07:35:46.124 DEBUG:teuthology.orchestra.run.smithi100:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-01-13T07:35:46.177 DEBUG:teuthology.orchestra.run.smithi100:> stat /dev/vg_nvme/lv_3 2024-01-13T07:35:46.228 INFO:teuthology.orchestra.run.smithi100.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-01-13T07:35:46.228 INFO:teuthology.orchestra.run.smithi100.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-13T07:35:46.228 INFO:teuthology.orchestra.run.smithi100.stdout:Device: 6h/6d Inode: 355 Links: 1 2024-01-13T07:35:46.228 INFO:teuthology.orchestra.run.smithi100.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-13T07:35:46.228 INFO:teuthology.orchestra.run.smithi100.stdout:Access: 2024-01-13 07:34:10.437479711 +0000 2024-01-13T07:35:46.228 INFO:teuthology.orchestra.run.smithi100.stdout:Modify: 2024-01-13 07:34:10.289483231 +0000 2024-01-13T07:35:46.229 INFO:teuthology.orchestra.run.smithi100.stdout:Change: 2024-01-13 07:34:10.289483231 +0000 2024-01-13T07:35:46.229 INFO:teuthology.orchestra.run.smithi100.stdout: Birth: - 2024-01-13T07:35:46.229 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-01-13T07:35:46.283 INFO:teuthology.orchestra.run.smithi100.stderr:1+0 records in 2024-01-13T07:35:46.283 INFO:teuthology.orchestra.run.smithi100.stderr:1+0 records out 2024-01-13T07:35:46.283 INFO:teuthology.orchestra.run.smithi100.stderr:512 bytes copied, 0.000336661 s, 1.5 MB/s 2024-01-13T07:35:46.283 DEBUG:teuthology.orchestra.run.smithi100:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-01-13T07:35:46.333 DEBUG:teuthology.orchestra.run.smithi100:> stat /dev/vg_nvme/lv_4 2024-01-13T07:35:46.383 INFO:teuthology.orchestra.run.smithi100.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-01-13T07:35:46.384 INFO:teuthology.orchestra.run.smithi100.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-01-13T07:35:46.384 INFO:teuthology.orchestra.run.smithi100.stdout:Device: 6h/6d Inode: 361 Links: 1 2024-01-13T07:35:46.384 INFO:teuthology.orchestra.run.smithi100.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-01-13T07:35:46.384 INFO:teuthology.orchestra.run.smithi100.stdout:Access: 2024-01-13 07:34:10.725472861 +0000 2024-01-13T07:35:46.384 INFO:teuthology.orchestra.run.smithi100.stdout:Modify: 2024-01-13 07:34:10.593476001 +0000 2024-01-13T07:35:46.384 INFO:teuthology.orchestra.run.smithi100.stdout:Change: 2024-01-13 07:34:10.593476001 +0000 2024-01-13T07:35:46.384 INFO:teuthology.orchestra.run.smithi100.stdout: Birth: - 2024-01-13T07:35:46.384 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-01-13T07:35:46.438 INFO:teuthology.orchestra.run.smithi100.stderr:1+0 records in 2024-01-13T07:35:46.438 INFO:teuthology.orchestra.run.smithi100.stderr:1+0 records out 2024-01-13T07:35:46.439 INFO:teuthology.orchestra.run.smithi100.stderr:512 bytes copied, 0.000365424 s, 1.4 MB/s 2024-01-13T07:35:46.439 DEBUG:teuthology.orchestra.run.smithi100:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-01-13T07:35:46.489 DEBUG:teuthology.orchestra.run.smithi100:> sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-01-13T07:35:46.619 INFO:teuthology.orchestra.run.smithi100.stdout:loop 2024-01-13T07:35:46.620 INFO:tasks.nvme_loop:Connecting nvme_loop smithi100:/dev/vg_nvme/lv_1... 2024-01-13T07:35:46.621 DEBUG:teuthology.orchestra.run.smithi100:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-01-13T07:35:46.639 INFO:teuthology.orchestra.run.smithi100.stdout:1 2024-01-13T07:35:46.668 INFO:teuthology.orchestra.run.smithi100.stdout:/dev/vg_nvme/lv_11 2024-01-13T07:35:46.685 INFO:tasks.nvme_loop:Connecting nvme_loop smithi100:/dev/vg_nvme/lv_2... 2024-01-13T07:35:46.686 DEBUG:teuthology.orchestra.run.smithi100:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-01-13T07:35:46.750 INFO:teuthology.orchestra.run.smithi100.stdout:1 2024-01-13T07:35:46.770 INFO:teuthology.orchestra.run.smithi100.stdout:/dev/vg_nvme/lv_21 2024-01-13T07:35:46.793 INFO:tasks.nvme_loop:Connecting nvme_loop smithi100:/dev/vg_nvme/lv_3... 2024-01-13T07:35:46.793 DEBUG:teuthology.orchestra.run.smithi100:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-01-13T07:35:46.858 INFO:teuthology.orchestra.run.smithi100.stdout:1 2024-01-13T07:35:46.886 INFO:teuthology.orchestra.run.smithi100.stdout:/dev/vg_nvme/lv_31 2024-01-13T07:35:46.908 INFO:tasks.nvme_loop:Connecting nvme_loop smithi100:/dev/vg_nvme/lv_4... 2024-01-13T07:35:46.908 DEBUG:teuthology.orchestra.run.smithi100:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-01-13T07:35:46.972 INFO:teuthology.orchestra.run.smithi100.stdout:1 2024-01-13T07:35:47.000 INFO:teuthology.orchestra.run.smithi100.stdout:/dev/vg_nvme/lv_41 2024-01-13T07:35:47.018 DEBUG:teuthology.orchestra.run.smithi100:> set -ex 2024-01-13T07:35:47.018 DEBUG:teuthology.orchestra.run.smithi100:> dd if=/scratch_devs of=/dev/stdout 2024-01-13T07:35:47.067 DEBUG:teuthology.orchestra.run.smithi100:> sudo nvme list 2024-01-13T07:35:47.123 INFO:teuthology.orchestra.run.smithi100.stdout:Node SN Model Namespace Usage Format FW Rev 2024-01-13T07:35:47.123 INFO:teuthology.orchestra.run.smithi100.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-01-13T07:35:47.123 INFO:teuthology.orchestra.run.smithi100.stdout:/dev/nvme0n1 PHFT620400WR400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-01-13T07:35:47.123 INFO:teuthology.orchestra.run.smithi100.stdout:/dev/nvme1n1 e90d5d0d6ccca4bc Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-01-13T07:35:47.123 INFO:teuthology.orchestra.run.smithi100.stdout:/dev/nvme2n1 181ffd2e4e7d1692 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-01-13T07:35:47.123 INFO:teuthology.orchestra.run.smithi100.stdout:/dev/nvme3n1 1c268e42d3c4c272 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-01-13T07:35:47.123 INFO:teuthology.orchestra.run.smithi100.stdout:/dev/nvme4n1 87fc01285a6a5789 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.15.0-2 2024-01-13T07:35:47.124 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-01-13T07:35:47.124 DEBUG:teuthology.orchestra.run.smithi100:> set -ex 2024-01-13T07:35:47.124 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd of=/scratch_devs 2024-01-13T07:35:47.179 INFO:teuthology.run_tasks:Running task cephadm... 2024-01-13T07:35:47.253 INFO:tasks.cephadm:Config: {'roleless': True, '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': '445562ab4bc3ddfb386936119050695810860bcb'} 2024-01-13T07:35:47.254 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb 2024-01-13T07:35:47.254 INFO:tasks.cephadm:Cluster fsid is 5dfd6106-b1e6-11ee-95ac-87774f69a715 2024-01-13T07:35:47.254 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-01-13T07:35:47.254 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-01-13T07:35:47.254 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi039': '172.21.15.39', 'mon.smithi100': '172.21.15.100'} 2024-01-13T07:35:47.255 INFO:tasks.cephadm:Normalizing hostnames... 2024-01-13T07:35:47.255 DEBUG:teuthology.orchestra.run.smithi039:> sudo hostname $(hostname -s) 2024-01-13T07:35:47.271 DEBUG:teuthology.orchestra.run.smithi100:> sudo hostname $(hostname -s) 2024-01-13T07:35:47.288 INFO:tasks.cephadm:Downloading cephadm (repo https://github.com/ceph/ceph-ci.git ref 445562ab4bc3ddfb386936119050695810860bcb)... 2024-01-13T07:35:47.288 DEBUG:teuthology.orchestra.run.smithi039:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/445562ab4bc3ddfb386936119050695810860bcb/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-01-13T07:35:47.469 INFO:teuthology.orchestra.run.smithi039.stdout:-rw-rw-r-- 1 ubuntu ubuntu 355729 Jan 13 07:35 /home/ubuntu/cephtest/cephadm 2024-01-13T07:35:47.469 DEBUG:teuthology.orchestra.run.smithi100:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/445562ab4bc3ddfb386936119050695810860bcb/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-01-13T07:35:47.614 INFO:teuthology.orchestra.run.smithi100.stdout:-rw-rw-r-- 1 ubuntu ubuntu 355729 Jan 13 07:35 /home/ubuntu/cephtest/cephadm 2024-01-13T07:35:47.615 DEBUG:teuthology.orchestra.run.smithi039:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-01-13T07:35:47.624 DEBUG:teuthology.orchestra.run.smithi100:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-01-13T07:35:47.641 DEBUG:teuthology.orchestra.run.smithi039:> sudo mkdir -p /etc/ceph 2024-01-13T07:35:47.681 DEBUG:teuthology.orchestra.run.smithi100:> sudo mkdir -p /etc/ceph 2024-01-13T07:35:47.696 DEBUG:teuthology.orchestra.run.smithi039:> sudo chmod 777 /etc/ceph 2024-01-13T07:35:47.740 DEBUG:teuthology.orchestra.run.smithi100:> sudo chmod 777 /etc/ceph 2024-01-13T07:35:47.754 INFO:tasks.cephadm:Writing seed config... 2024-01-13T07:35:47.755 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-01-13T07:35:47.755 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-01-13T07:35:47.755 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-01-13T07:35:47.755 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-01-13T07:35:47.755 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-01-13T07:35:47.755 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-01-13T07:35:47.755 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-01-13T07:35:47.755 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-01-13T07:35:47.756 DEBUG:teuthology.orchestra.run.smithi039:> set -ex 2024-01-13T07:35:47.756 DEBUG:teuthology.orchestra.run.smithi039:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-01-13T07:35:47.793 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false mon cluster log file level = debug mon clock drift allowed = 1.000 # replicate across OSDs, not hosts osd crush chooseleaf type = 0 #osd pool default size = 2 osd pool default erasure code profile = plugin=jerasure technique=reed_sol_van k=2 m=1 ruleset-failure-domain=osd crush-failure-domain=osd # enable some debugging auth debug = true ms die on old message = true ms die on bug = true debug asserts on shutdown = true # adjust warnings mon max pg per osd = 10000# >= luminous mon pg warn max object skew = 0 mon osd allow primary affinity = true mon osd allow pg remap = true mon warn on legacy crush tunables = false mon warn on crush straw calc version zero = false mon warn on no sortbitwise = false mon warn on osd down out interval zero = false mon warn on too few osds = false mon_warn_on_pool_pg_num_not_power_of_two = false # disable pg_autoscaler by default for new pools osd_pool_default_pg_autoscale_mode = off # tests delete pools mon allow pool delete = true fsid = 5dfd6106-b1e6-11ee-95ac-87774f69a715 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd recover clone overlap = true osd recovery max chunk = 1048576 osd deep scrub update digest min age = 30 osd map max advance = 10 osd memory target autotune = true # debugging osd debug shutdown = true osd debug op order = true osd debug verify stray on activate = true osd debug pg log writeout = true osd debug verify cached snaps = true osd debug verify missing on start = true osd debug misdirected ops = true osd op queue = debug_random osd op queue cut off = debug_random osd shutdown pgref assert = True bdev debug aio = true osd sloppy crc = true debug ms = 1 debug osd = 20 [mgr] mon reweight min pgs per osd = 4 mon reweight min bytes per osd = 10 mgr/telemetry/nag = false debug mgr = 20 debug ms = 1 [mon] mon data avail warn = 5 mon mgr mkfs grace = 240 mon reweight min pgs per osd = 4 mon osd reporter subtree level = osd mon osd prime pg temp = true mon reweight min bytes per osd = 10 # rotate auth tickets quickly to exercise renewal paths auth mon ticket ttl = 660# 11m auth service ticket ttl = 240# 4m # don't complain about global id reclaim mon_warn_on_insecure_global_id_reclaim = false mon_warn_on_insecure_global_id_reclaim_allowed = false debug mon = 20 debug ms = 1 debug paxos = 20 [client.rgw] rgw cache enabled = true rgw enable ops log = true rgw enable usage log = true 2024-01-13T07:35:47.793 DEBUG:teuthology.orchestra.run.smithi039:mon.smithi039> sudo journalctl -f -n 0 -u ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715@mon.smithi039.service 2024-01-13T07:35:47.836 INFO:tasks.cephadm:Bootstrapping... 2024-01-13T07:35:47.836 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb -v bootstrap --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-ip 172.21.15.39 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-01-13T07:35:48.179 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:-- Logs begin at Sun 2022-10-16 12:17:23 UTC. -- 2024-01-13T07:35:48.209 INFO:teuthology.orchestra.run.smithi039.stderr:-------------------------------------------------------------------------------- 2024-01-13T07:35:48.209 INFO:teuthology.orchestra.run.smithi039.stderr:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb', '-v', 'bootstrap', '--fsid', '5dfd6106-b1e6-11ee-95ac-87774f69a715', '--config', '/home/ubuntu/cephtest/seed.ceph.conf', '--output-config', '/etc/ceph/ceph.conf', '--output-keyring', '/etc/ceph/ceph.client.admin.keyring', '--output-pub-ssh-key', '/home/ubuntu/cephtest/ceph.pub', '--mon-ip', '172.21.15.39', '--skip-admin-label'] 2024-01-13T07:35:48.210 INFO:teuthology.orchestra.run.smithi039.stderr:Verifying podman|docker is present... 2024-01-13T07:35:48.210 INFO:teuthology.orchestra.run.smithi039.stderr:Verifying lvm2 is present... 2024-01-13T07:35:48.210 INFO:teuthology.orchestra.run.smithi039.stderr:Verifying time synchronization is in place... 2024-01-13T07:35:48.216 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: Failed to get unit file state for chrony.service: No such file or directory 2024-01-13T07:35:48.223 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: inactive 2024-01-13T07:35:48.231 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: Failed to get unit file state for chronyd.service: No such file or directory 2024-01-13T07:35:48.239 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: inactive 2024-01-13T07:35:48.249 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: enabled 2024-01-13T07:35:48.258 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: inactive 2024-01-13T07:35:48.265 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: Failed to get unit file state for ntpd.service: No such file or directory 2024-01-13T07:35:48.272 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: inactive 2024-01-13T07:35:48.280 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: enabled 2024-01-13T07:35:48.289 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: active 2024-01-13T07:35:48.290 INFO:teuthology.orchestra.run.smithi039.stderr:Unit ntp.service is enabled and running 2024-01-13T07:35:48.290 INFO:teuthology.orchestra.run.smithi039.stderr:Repeating the final host check... 2024-01-13T07:35:48.290 INFO:teuthology.orchestra.run.smithi039.stderr:docker (/usr/bin/docker) is present 2024-01-13T07:35:48.291 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl is present 2024-01-13T07:35:48.291 INFO:teuthology.orchestra.run.smithi039.stderr:lvcreate is present 2024-01-13T07:35:48.298 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: Failed to get unit file state for chrony.service: No such file or directory 2024-01-13T07:35:48.307 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: inactive 2024-01-13T07:35:48.315 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: Failed to get unit file state for chronyd.service: No such file or directory 2024-01-13T07:35:48.323 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: inactive 2024-01-13T07:35:48.333 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: enabled 2024-01-13T07:35:48.340 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: inactive 2024-01-13T07:35:48.349 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: Failed to get unit file state for ntpd.service: No such file or directory 2024-01-13T07:35:48.358 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: inactive 2024-01-13T07:35:48.367 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: enabled 2024-01-13T07:35:48.376 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: active 2024-01-13T07:35:48.377 INFO:teuthology.orchestra.run.smithi039.stderr:Unit ntp.service is enabled and running 2024-01-13T07:35:48.377 INFO:teuthology.orchestra.run.smithi039.stderr:Host looks OK 2024-01-13T07:35:48.377 INFO:teuthology.orchestra.run.smithi039.stderr:Cluster fsid: 5dfd6106-b1e6-11ee-95ac-87774f69a715 2024-01-13T07:35:48.379 INFO:teuthology.orchestra.run.smithi039.stderr:Acquiring lock 139889595401496 on /run/cephadm/5dfd6106-b1e6-11ee-95ac-87774f69a715.lock 2024-01-13T07:35:48.379 INFO:teuthology.orchestra.run.smithi039.stderr:Lock 139889595401496 acquired on /run/cephadm/5dfd6106-b1e6-11ee-95ac-87774f69a715.lock 2024-01-13T07:35:48.379 INFO:teuthology.orchestra.run.smithi039.stderr:Verifying IP 172.21.15.39 port 3300 ... 2024-01-13T07:35:48.379 INFO:teuthology.orchestra.run.smithi039.stderr:Verifying IP 172.21.15.39 port 6789 ... 2024-01-13T07:35:48.379 INFO:teuthology.orchestra.run.smithi039.stderr:Base mon IP(s) is [172.21.15.39:3300, 172.21.15.39:6789], mon addrv is [v2:172.21.15.39:3300,v1:172.21.15.39:6789] 2024-01-13T07:35:48.384 INFO:teuthology.orchestra.run.smithi039.stderr:/sbin/ip: default via 172.21.15.254 dev ens1f0 2024-01-13T07:35:48.384 INFO:teuthology.orchestra.run.smithi039.stderr:/sbin/ip: 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-01-13T07:35:48.384 INFO:teuthology.orchestra.run.smithi039.stderr:/sbin/ip: 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.39 2024-01-13T07:35:48.388 INFO:teuthology.orchestra.run.smithi039.stderr:/sbin/ip: fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2024-01-13T07:35:48.388 INFO:teuthology.orchestra.run.smithi039.stderr:/sbin/ip: default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1754sec hoplimit 64 pref medium 2024-01-13T07:35:48.391 INFO:teuthology.orchestra.run.smithi039.stderr:/sbin/ip: 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-01-13T07:35:48.391 INFO:teuthology.orchestra.run.smithi039.stderr:/sbin/ip: inet6 ::1/128 scope host 2024-01-13T07:35:48.392 INFO:teuthology.orchestra.run.smithi039.stderr:/sbin/ip: valid_lft forever preferred_lft forever 2024-01-13T07:35:48.392 INFO:teuthology.orchestra.run.smithi039.stderr:/sbin/ip: 3: ens1f0: mtu 1500 state UP qlen 1000 2024-01-13T07:35:48.392 INFO:teuthology.orchestra.run.smithi039.stderr:/sbin/ip: inet6 fe80::ec4:7aff:febd:1370/64 scope link 2024-01-13T07:35:48.392 INFO:teuthology.orchestra.run.smithi039.stderr:/sbin/ip: valid_lft forever preferred_lft forever 2024-01-13T07:35:48.393 INFO:teuthology.orchestra.run.smithi039.stderr:Mon IP `172.21.15.39` is in CIDR network `172.21.0.0/20` 2024-01-13T07:35:48.394 INFO:teuthology.orchestra.run.smithi039.stderr:Mon IP `172.21.15.39` is in CIDR network `172.21.0.0/20` 2024-01-13T07:35:48.394 INFO:teuthology.orchestra.run.smithi039.stderr:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-01-13T07:35:48.394 INFO:teuthology.orchestra.run.smithi039.stderr:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-01-13T07:35:48.395 INFO:teuthology.orchestra.run.smithi039.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb... 2024-01-13T07:35:48.795 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/docker: 445562ab4bc3ddfb386936119050695810860bcb: Pulling from ceph-ci/ceph 2024-01-13T07:35:48.799 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/docker: 6c507150f7e9: Pulling fs layer 2024-01-13T07:35:48.799 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/docker: 9bc82cfe8091: Pulling fs layer 2024-01-13T07:35:49.657 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/docker: 6c507150f7e9: Download complete 2024-01-13T07:35:51.528 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/docker: 9bc82cfe8091: Verifying Checksum 2024-01-13T07:35:51.528 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/docker: 9bc82cfe8091: Download complete 2024-01-13T07:35:52.189 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/docker: 6c507150f7e9: Pull complete 2024-01-13T07:36:02.640 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/docker: 9bc82cfe8091: Pull complete 2024-01-13T07:36:02.759 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/docker: Digest: sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 2024-01-13T07:36:02.808 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/docker: Status: Downloaded newer image for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb 2024-01-13T07:36:02.842 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/docker: quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb 2024-01-13T07:36:12.867 INFO:teuthology.orchestra.run.smithi039.stderr:ceph: ceph version 16.2.14-456-g445562ab (445562ab4bc3ddfb386936119050695810860bcb) pacific (stable) 2024-01-13T07:36:13.351 INFO:teuthology.orchestra.run.smithi039.stderr:Ceph version: ceph version 16.2.14-456-g445562ab (445562ab4bc3ddfb386936119050695810860bcb) pacific (stable) 2024-01-13T07:36:13.351 INFO:teuthology.orchestra.run.smithi039.stderr:Extracting ceph user uid/gid from container image... 2024-01-13T07:36:14.280 INFO:teuthology.orchestra.run.smithi039.stderr:stat: 167 167 2024-01-13T07:36:14.763 INFO:teuthology.orchestra.run.smithi039.stderr:Creating initial keys... 2024-01-13T07:36:15.576 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-authtool: AQBvPaJlZKhYIhAA5SDLjlwIu5s1n5jsKqXCAw== 2024-01-13T07:36:16.943 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-authtool: AQBwPaJlaa80OBAAwCnfeE2AnJo8mVgw0tEQ8g== 2024-01-13T07:36:18.295 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-authtool: AQByPaJlAAOUERAAvlni5zOg0kcAOrnf8hbYKQ== 2024-01-13T07:36:18.802 INFO:teuthology.orchestra.run.smithi039.stderr:Creating initial monmap... 2024-01-13T07:36:19.728 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: monmap file /tmp/monmap 2024-01-13T07:36:19.728 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: set fsid to 5dfd6106-b1e6-11ee-95ac-87774f69a715 2024-01-13T07:36:19.728 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-01-13T07:36:20.197 INFO:teuthology.orchestra.run.smithi039.stderr:monmaptool for smithi039 [v2:172.21.15.39:3300,v1:172.21.15.39:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-01-13T07:36:20.197 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/monmaptool: set fsid to 5dfd6106-b1e6-11ee-95ac-87774f69a715 2024-01-13T07:36:20.197 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-01-13T07:36:20.197 INFO:teuthology.orchestra.run.smithi039.stderr: 2024-01-13T07:36:20.198 INFO:teuthology.orchestra.run.smithi039.stderr:Creating mon... 2024-01-13T07:36:21.066 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 0 set uid:gid to 167:167 (ceph:ceph) 2024-01-13T07:36:21.067 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 1 imported monmap: 2024-01-13T07:36:21.067 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: epoch 0 2024-01-13T07:36:21.073 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 2024-01-13T07:36:21.073 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: last_changed 2024-01-13T07:36:19.727235+0000 2024-01-13T07:36:21.073 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: created 2024-01-13T07:36:19.727235+0000 2024-01-13T07:36:21.073 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: min_mon_release 0 (unknown) 2024-01-13T07:36:21.073 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: election_strategy: 1 2024-01-13T07:36:21.073 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: 0: [v2:172.21.15.39:3300/0,v1:172.21.15.39:6789/0] mon.smithi039 2024-01-13T07:36:21.073 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: 2024-01-13T07:36:21.073 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 0 /usr/bin/ceph-mon: set fsid to 5dfd6106-b1e6-11ee-95ac-87774f69a715 2024-01-13T07:36:21.073 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: RocksDB version: 6.8.1 2024-01-13T07:36:21.074 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: 2024-01-13T07:36:21.074 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-01-13T07:36:21.074 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Compile date Jan 12 2024 2024-01-13T07:36:21.074 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: DB SUMMARY 2024-01-13T07:36:21.074 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: 2024-01-13T07:36:21.074 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi039/store.db dir, Total Num: 0, files: 2024-01-13T07:36:21.074 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: 2024-01-13T07:36:21.074 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi039/store.db: 2024-01-13T07:36:21.074 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: 2024-01-13T07:36:21.074 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.error_if_exists: 0 2024-01-13T07:36:21.075 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.create_if_missing: 1 2024-01-13T07:36:21.075 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.paranoid_checks: 1 2024-01-13T07:36:21.075 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.env: 0x55b79099a080 2024-01-13T07:36:21.075 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.fs: Posix File System 2024-01-13T07:36:21.075 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.info_log: 0x55b791af5380 2024-01-13T07:36:21.075 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.max_file_opening_threads: 16 2024-01-13T07:36:21.075 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.statistics: (nil) 2024-01-13T07:36:21.075 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.use_fsync: 0 2024-01-13T07:36:21.075 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.max_log_file_size: 0 2024-01-13T07:36:21.075 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-01-13T07:36:21.075 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-01-13T07:36:21.075 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.keep_log_file_num: 1000 2024-01-13T07:36:21.076 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.recycle_log_file_num: 0 2024-01-13T07:36:21.076 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.allow_fallocate: 1 2024-01-13T07:36:21.076 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.allow_mmap_reads: 0 2024-01-13T07:36:21.076 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.allow_mmap_writes: 0 2024-01-13T07:36:21.076 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.use_direct_reads: 0 2024-01-13T07:36:21.076 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-01-13T07:36:21.076 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.create_missing_column_families: 0 2024-01-13T07:36:21.076 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.db_log_dir: 2024-01-13T07:36:21.076 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi039/store.db 2024-01-13T07:36:21.076 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-01-13T07:36:21.076 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.max_subcompactions: 1 2024-01-13T07:36:21.077 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.max_background_flushes: -1 2024-01-13T07:36:21.077 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-01-13T07:36:21.077 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-01-13T07:36:21.101 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-01-13T07:36:21.101 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-01-13T07:36:21.102 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-01-13T07:36:21.102 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.advise_random_on_open: 1 2024-01-13T07:36:21.102 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.db_write_buffer_size: 0 2024-01-13T07:36:21.102 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.write_buffer_manager: 0x55b791afb980 2024-01-13T07:36:21.102 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-01-13T07:36:21.102 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-01-13T07:36:21.102 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-01-13T07:36:21.102 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-01-13T07:36:21.102 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.rate_limiter: (nil) 2024-01-13T07:36:21.102 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-01-13T07:36:21.102 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.wal_recovery_mode: 2 2024-01-13T07:36:21.102 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.enable_thread_tracking: 0 2024-01-13T07:36:21.102 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.enable_pipelined_write: 0 2024-01-13T07:36:21.103 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.unordered_write: 0 2024-01-13T07:36:21.103 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-01-13T07:36:21.103 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-01-13T07:36:21.103 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-01-13T07:36:21.103 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-01-13T07:36:21.103 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.row_cache: None 2024-01-13T07:36:21.103 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.wal_filter: None 2024-01-13T07:36:21.103 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-01-13T07:36:21.103 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.allow_ingest_behind: 0 2024-01-13T07:36:21.103 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.preserve_deletes: 0 2024-01-13T07:36:21.103 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.two_write_queues: 0 2024-01-13T07:36:21.103 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.manual_wal_flush: 0 2024-01-13T07:36:21.103 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.atomic_flush: 0 2024-01-13T07:36:21.104 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-01-13T07:36:21.104 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-01-13T07:36:21.104 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-01-13T07:36:21.104 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.log_readahead_size: 0 2024-01-13T07:36:21.104 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-01-13T07:36:21.104 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.max_background_jobs: 2 2024-01-13T07:36:21.104 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.max_background_compactions: -1 2024-01-13T07:36:21.104 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-01-13T07:36:21.104 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-01-13T07:36:21.104 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-01-13T07:36:21.104 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.max_total_wal_size: 0 2024-01-13T07:36:21.104 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-01-13T07:36:21.104 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-01-13T07:36:21.104 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-01-13T07:36:21.104 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-01-13T07:36:21.105 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.max_open_files: -1 2024-01-13T07:36:21.105 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.bytes_per_sync: 0 2024-01-13T07:36:21.105 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-01-13T07:36:21.105 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-01-13T07:36:21.105 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Options.compaction_readahead_size: 0 2024-01-13T07:36:21.105 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Compression algorithms supported: 2024-01-13T07:36:21.105 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-01-13T07:36:21.105 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: kZSTD supported: 0 2024-01-13T07:36:21.105 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: kXpressCompression supported: 0 2024-01-13T07:36:21.105 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: kLZ4HCCompression supported: 1 2024-01-13T07:36:21.105 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: kLZ4Compression supported: 1 2024-01-13T07:36:21.105 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: kBZip2Compression supported: 0 2024-01-13T07:36:21.105 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: kZlibCompression supported: 1 2024-01-13T07:36:21.106 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: kSnappyCompression supported: 1 2024-01-13T07:36:21.106 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.061+0000 7fd153ee0880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-01-13T07:36:21.106 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: [db_impl/db_impl_open.cc:273] Creating manifest 1 2024-01-13T07:36:21.106 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: 2024-01-13T07:36:21.106 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi039/store.db/MANIFEST-000001 2024-01-13T07:36:21.106 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: 2024-01-13T07:36:21.106 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-01-13T07:36:21.106 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: 2024-01-13T07:36:21.106 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-01-13T07:36:21.106 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.merge_operator: 2024-01-13T07:36:21.106 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.compaction_filter: None 2024-01-13T07:36:21.106 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.compaction_filter_factory: None 2024-01-13T07:36:21.107 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-01-13T07:36:21.107 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-01-13T07:36:21.107 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55b791a09d30) 2024-01-13T07:36:21.107 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: cache_index_and_filter_blocks: 1 2024-01-13T07:36:21.107 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: cache_index_and_filter_blocks_with_high_priority: 0 2024-01-13T07:36:21.107 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: pin_l0_filter_and_index_blocks_in_cache: 0 2024-01-13T07:36:21.107 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: pin_top_level_index_and_filter: 1 2024-01-13T07:36:21.107 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: index_type: 0 2024-01-13T07:36:21.107 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: data_block_index_type: 0 2024-01-13T07:36:21.107 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: index_shortening: 1 2024-01-13T07:36:21.107 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: data_block_hash_table_util_ratio: 0.750000 2024-01-13T07:36:21.107 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: hash_index_allow_collision: 1 2024-01-13T07:36:21.107 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: checksum: 1 2024-01-13T07:36:21.107 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: no_block_cache: 0 2024-01-13T07:36:21.108 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: block_cache: 0x55b791a40d10 2024-01-13T07:36:21.108 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: block_cache_name: BinnedLRUCache 2024-01-13T07:36:21.108 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: block_cache_options: 2024-01-13T07:36:21.108 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: capacity : 536870912 2024-01-13T07:36:21.108 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: num_shard_bits : 4 2024-01-13T07:36:21.108 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: strict_capacity_limit : 0 2024-01-13T07:36:21.108 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: high_pri_pool_ratio: 0.000 2024-01-13T07:36:21.108 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: block_cache_compressed: (nil) 2024-01-13T07:36:21.108 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: persistent_cache: (nil) 2024-01-13T07:36:21.108 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: block_size: 4096 2024-01-13T07:36:21.108 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: block_size_deviation: 10 2024-01-13T07:36:21.108 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: block_restart_interval: 16 2024-01-13T07:36:21.108 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: index_block_restart_interval: 1 2024-01-13T07:36:21.109 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: metadata_block_size: 4096 2024-01-13T07:36:21.109 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: partition_filters: 0 2024-01-13T07:36:21.109 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: use_delta_encoding: 1 2024-01-13T07:36:21.109 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: filter_policy: rocksdb.BuiltinBloomFilter 2024-01-13T07:36:21.109 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: whole_key_filtering: 1 2024-01-13T07:36:21.109 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: verify_compression: 0 2024-01-13T07:36:21.109 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: read_amp_bytes_per_bit: 0 2024-01-13T07:36:21.109 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: format_version: 2 2024-01-13T07:36:21.109 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: enable_index_compression: 1 2024-01-13T07:36:21.109 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: block_align: 0 2024-01-13T07:36:21.109 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: 2024-01-13T07:36:21.109 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.write_buffer_size: 33554432 2024-01-13T07:36:21.109 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.max_write_buffer_number: 2 2024-01-13T07:36:21.110 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.compression: NoCompression 2024-01-13T07:36:21.110 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.bottommost_compression: Disabled 2024-01-13T07:36:21.110 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.prefix_extractor: nullptr 2024-01-13T07:36:21.110 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-01-13T07:36:21.110 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.num_levels: 7 2024-01-13T07:36:21.110 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-01-13T07:36:21.110 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-01-13T07:36:21.110 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-01-13T07:36:21.110 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-01-13T07:36:21.110 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-01-13T07:36:21.110 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-01-13T07:36:21.110 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-01-13T07:36:21.110 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-01-13T07:36:21.111 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-01-13T07:36:21.111 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-01-13T07:36:21.111 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.compression_opts.level: 32767 2024-01-13T07:36:21.111 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.compression_opts.strategy: 0 2024-01-13T07:36:21.111 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-01-13T07:36:21.111 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-01-13T07:36:21.111 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.compression_opts.enabled: false 2024-01-13T07:36:21.111 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-01-13T07:36:21.111 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-01-13T07:36:21.111 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-01-13T07:36:21.111 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.target_file_size_base: 67108864 2024-01-13T07:36:21.111 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-01-13T07:36:21.111 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-01-13T07:36:21.111 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-01-13T07:36:21.112 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-01-13T07:36:21.112 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-01-13T07:36:21.112 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-01-13T07:36:21.112 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-01-13T07:36:21.112 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-01-13T07:36:21.112 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-01-13T07:36:21.112 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-01-13T07:36:21.112 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-01-13T07:36:21.112 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-01-13T07:36:21.112 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-01-13T07:36:21.112 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.arena_block_size: 4194304 2024-01-13T07:36:21.112 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-01-13T07:36:21.112 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-01-13T07:36:21.113 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-01-13T07:36:21.113 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.disable_auto_compactions: 0 2024-01-13T07:36:21.113 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-01-13T07:36:21.113 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-01-13T07:36:21.113 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-01-13T07:36:21.113 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-01-13T07:36:21.113 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-01-13T07:36:21.113 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-01-13T07:36:21.113 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-01-13T07:36:21.113 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-01-13T07:36:21.113 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-01-13T07:36:21.113 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-01-13T07:36:21.114 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.table_properties_collectors: 2024-01-13T07:36:21.114 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.inplace_update_support: 0 2024-01-13T07:36:21.114 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-01-13T07:36:21.114 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-01-13T07:36:21.114 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-01-13T07:36:21.114 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-01-13T07:36:21.114 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.bloom_locality: 0 2024-01-13T07:36:21.114 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.max_successive_merges: 0 2024-01-13T07:36:21.114 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-01-13T07:36:21.114 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.paranoid_file_checks: 0 2024-01-13T07:36:21.114 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.force_consistency_checks: 0 2024-01-13T07:36:21.114 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.report_bg_io_stats: 0 2024-01-13T07:36:21.114 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.ttl: 2592000 2024-01-13T07:36:21.115 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-01-13T07:36:21.115 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi039/store.db/MANIFEST-000001 succeeded,manifest_file_number is 1, next_file_number is 3, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-01-13T07:36:21.115 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: 2024-01-13T07:36:21.115 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.069+0000 7fd153ee0880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 0 2024-01-13T07:36:21.115 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: 2024-01-13T07:36:21.115 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.073+0000 7fd153ee0880 4 rocksdb: DB pointer 0x55b791b09800 2024-01-13T07:36:21.115 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.073+0000 7fd13cd55700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-01-13T07:36:21.115 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.073+0000 7fd13cd55700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-01-13T07:36:21.115 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: ** DB Stats ** 2024-01-13T07:36:21.115 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-01-13T07:36:21.115 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-01-13T07:36:21.115 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-01-13T07:36:21.115 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-01-13T07:36:21.116 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-01-13T07:36:21.116 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-01-13T07:36:21.116 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-01-13T07:36:21.116 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: 2024-01-13T07:36:21.116 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-01-13T07:36:21.116 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-01-13T07:36:21.116 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-13T07:36:21.116 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2024-01-13T07:36:21.116 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2024-01-13T07:36:21.116 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: 2024-01-13T07:36:21.116 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-01-13T07:36:21.116 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-01-13T07:36:21.116 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-13T07:36:21.117 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-01-13T07:36:21.117 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: Flush(GB): cumulative 0.000, interval 0.000 2024-01-13T07:36:21.117 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: AddFile(GB): cumulative 0.000, interval 0.000 2024-01-13T07:36:21.117 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: AddFile(Total Files): cumulative 0, interval 0 2024-01-13T07:36:21.117 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: AddFile(L0 Files): cumulative 0, interval 0 2024-01-13T07:36:21.117 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: AddFile(Keys): cumulative 0, interval 0 2024-01-13T07:36:21.117 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-13T07:36:21.117 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-13T07:36:21.117 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-01-13T07:36:21.117 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: 2024-01-13T07:36:21.117 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: ** File Read Latency Histogram By Level [default] ** 2024-01-13T07:36:21.117 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: 2024-01-13T07:36:21.117 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-01-13T07:36:21.117 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-01-13T07:36:21.118 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-13T07:36:21.118 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2024-01-13T07:36:21.118 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2024-01-13T07:36:21.118 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: 2024-01-13T07:36:21.118 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-01-13T07:36:21.118 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-01-13T07:36:21.118 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-13T07:36:21.118 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-01-13T07:36:21.118 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: Flush(GB): cumulative 0.000, interval 0.000 2024-01-13T07:36:21.118 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: AddFile(GB): cumulative 0.000, interval 0.000 2024-01-13T07:36:21.118 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: AddFile(Total Files): cumulative 0, interval 0 2024-01-13T07:36:21.118 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: AddFile(L0 Files): cumulative 0, interval 0 2024-01-13T07:36:21.119 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: AddFile(Keys): cumulative 0, interval 0 2024-01-13T07:36:21.119 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-13T07:36:21.119 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-13T07:36:21.119 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-01-13T07:36:21.119 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: 2024-01-13T07:36:21.119 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: ** File Read Latency Histogram By Level [default] ** 2024-01-13T07:36:21.119 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: 2024-01-13T07:36:21.119 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.073+0000 7fd153ee0880 4 rocksdb: [db_impl/db_impl.cc:397] Shutdown: canceling all background work 2024-01-13T07:36:21.119 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.073+0000 7fd153ee0880 4 rocksdb: [db_impl/db_impl.cc:573] Shutdown complete 2024-01-13T07:36:21.119 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph-mon: debug 2024-01-13T07:36:21.073+0000 7fd153ee0880 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-smithi039 for mon.smithi039 2024-01-13T07:36:21.524 INFO:teuthology.orchestra.run.smithi039.stderr:create mon.smithi039 on 2024-01-13T07:36:21.646 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-01-13T07:36:21.767 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: Created symlink /etc/systemd/system/multi-user.target.wants/ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715.target -> /etc/systemd/system/ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715.target. 2024-01-13T07:36:21.767 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: Created symlink /etc/systemd/system/ceph.target.wants/ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715.target -> /etc/systemd/system/ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715.target. 2024-01-13T07:36:22.021 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: Failed to reset failed state of unit ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715@mon.smithi039.service: Unit ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715@mon.smithi039.service is not loaded. 2024-01-13T07:36:22.029 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: Created symlink /etc/systemd/system/ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715.target.wants/ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715@mon.smithi039.service -> /etc/systemd/system/ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715@.service. 2024-01-13T07:36:22.147 INFO:teuthology.orchestra.run.smithi039.stderr:firewalld does not appear to be present 2024-01-13T07:36:22.147 INFO:teuthology.orchestra.run.smithi039.stderr:Not possible to enable service . firewalld.service is not available 2024-01-13T07:36:22.147 INFO:teuthology.orchestra.run.smithi039.stderr:Waiting for mon to start... 2024-01-13T07:36:22.147 INFO:teuthology.orchestra.run.smithi039.stderr:Waiting for mon... 2024-01-13T07:36:22.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:22 smithi039 systemd[1]: Started Ceph mon.smithi039 for 5dfd6106-b1e6-11ee-95ac-87774f69a715. 2024-01-13T07:36:23.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:23 smithi039 bash[15556]: cluster 2024-01-13T07:36:23.542448+0000 mon.smithi039 (mon.0) 0 : [INF] mkfs 5dfd6106-b1e6-11ee-95ac-87774f69a715 2024-01-13T07:36:23.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:23 smithi039 bash[15556]: cluster 2024-01-13T07:36:23.533560+0000 mon.smithi039 (mon.0) 1 : cluster [INF] mon.smithi039 is new leader, mons smithi039 in quorum (ranks 0) 2024-01-13T07:36:23.858 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: cluster: 2024-01-13T07:36:23.858 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: id: 5dfd6106-b1e6-11ee-95ac-87774f69a715 2024-01-13T07:36:23.858 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: health: HEALTH_OK 2024-01-13T07:36:23.858 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: 2024-01-13T07:36:23.858 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: services: 2024-01-13T07:36:23.858 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: mon: 1 daemons, quorum smithi039 (age 0.315725s) 2024-01-13T07:36:23.858 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: mgr: no daemons active 2024-01-13T07:36:23.858 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: osd: 0 osds: 0 up, 0 in 2024-01-13T07:36:23.858 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: 2024-01-13T07:36:23.858 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: data: 2024-01-13T07:36:23.858 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: pools: 0 pools, 0 pgs 2024-01-13T07:36:23.858 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: objects: 0 objects, 0 B 2024-01-13T07:36:23.858 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: usage: 0 B used, 0 B / 0 B avail 2024-01-13T07:36:23.859 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: pgs: 2024-01-13T07:36:23.859 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: 2024-01-13T07:36:24.337 INFO:teuthology.orchestra.run.smithi039.stderr:mon is available 2024-01-13T07:36:24.337 INFO:teuthology.orchestra.run.smithi039.stderr:Assimilating anything we can from ceph.conf... 2024-01-13T07:36:24.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:24 smithi039 bash[15556]: cluster 2024-01-13T07:36:23.540083+0000 mon.smithi039 (mon.0) 2 : cluster [INF] mon.smithi039 is new leader, mons smithi039 in quorum (ranks 0) 2024-01-13T07:36:24.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:24 smithi039 bash[15556]: cluster 2024-01-13T07:36:23.540436+0000 mon.smithi039 (mon.0) 3 : cluster [DBG] monmap e1: 1 mons at {smithi039=[v2:172.21.15.39:3300/0,v1:172.21.15.39:6789/0]} removed_ranks: {} 2024-01-13T07:36:24.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:24 smithi039 bash[15556]: cluster 2024-01-13T07:36:23.547348+0000 mon.smithi039 (mon.0) 4 : cluster [DBG] fsmap 2024-01-13T07:36:24.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:24 smithi039 bash[15556]: cluster 2024-01-13T07:36:23.551647+0000 mon.smithi039 (mon.0) 5 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-01-13T07:36:24.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:24 smithi039 bash[15556]: cluster 2024-01-13T07:36:23.552690+0000 mon.smithi039 (mon.0) 6 : cluster [DBG] mgrmap e1: no daemons active 2024-01-13T07:36:24.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:24 smithi039 bash[15556]: audit 2024-01-13T07:36:23.855744+0000 mon.smithi039 (mon.0) 7 : audit [DBG] from='client.? 172.21.15.39:0/3793766944' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-01-13T07:36:25.540 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: 2024-01-13T07:36:25.540 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: [global] 2024-01-13T07:36:25.540 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: fsid = 5dfd6106-b1e6-11ee-95ac-87774f69a715 2024-01-13T07:36:25.540 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: mon_host = [v2:172.21.15.39:3300,v1:172.21.15.39:6789] 2024-01-13T07:36:25.540 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: mon_osd_allow_pg_remap = true 2024-01-13T07:36:25.542 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: mon_osd_allow_primary_affinity = true 2024-01-13T07:36:25.542 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: mon_warn_on_no_sortbitwise = false 2024-01-13T07:36:25.542 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: osd_crush_chooseleaf_type = 0 2024-01-13T07:36:25.542 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: 2024-01-13T07:36:25.542 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: [mgr] 2024-01-13T07:36:25.542 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: mgr/telemetry/nag = false 2024-01-13T07:36:25.542 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: 2024-01-13T07:36:25.542 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: [osd] 2024-01-13T07:36:25.542 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: osd_map_max_advance = 10 2024-01-13T07:36:25.542 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: osd_sloppy_crc = true 2024-01-13T07:36:25.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:25 smithi039 bash[15556]: audit 2024-01-13T07:36:25.532649+0000 mon.smithi039 (mon.0) 8 : audit [INF] from='client.? 172.21.15.39:0/2091033179' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-01-13T07:36:25.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:25 smithi039 bash[15556]: audit 2024-01-13T07:36:25.538531+0000 mon.smithi039 (mon.0) 9 : audit [INF] from='client.? 172.21.15.39:0/2091033179' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-01-13T07:36:26.012 INFO:teuthology.orchestra.run.smithi039.stderr:Generating new minimal ceph.conf... 2024-01-13T07:36:27.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:27 smithi039 bash[15556]: audit 2024-01-13T07:36:27.116886+0000 mon.smithi039 (mon.0) 10 : audit [DBG] from='client.? 172.21.15.39:0/822265934' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:36:27.601 INFO:teuthology.orchestra.run.smithi039.stderr:Restarting the monitor... 2024-01-13T07:36:27.874 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:27 smithi039 systemd[1]: Stopping Ceph mon.smithi039 for 5dfd6106-b1e6-11ee-95ac-87774f69a715... 2024-01-13T07:36:27.874 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:27 smithi039 bash[16082]: Error response from daemon: No such container: ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715-mon.smithi039 2024-01-13T07:36:27.874 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:27 smithi039 bash[15556]: debug 2024-01-13T07:36:27.785+0000 7f7c65b01700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi039 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-01-13T07:36:27.874 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:27 smithi039 bash[15556]: debug 2024-01-13T07:36:27.785+0000 7f7c65b01700 -1 mon.smithi039@0(leader) e1 *** Got Signal Terminated *** 2024-01-13T07:36:28.430 INFO:teuthology.orchestra.run.smithi039.stderr:Setting public_network to 172.21.0.0/20 in mon config section 2024-01-13T07:36:28.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:28 smithi039 bash[16082]: ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715-mon-smithi039 2024-01-13T07:36:28.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:28 smithi039 systemd[1]: Stopped Ceph mon.smithi039 for 5dfd6106-b1e6-11ee-95ac-87774f69a715. 2024-01-13T07:36:28.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:28 smithi039 systemd[1]: Started Ceph mon.smithi039 for 5dfd6106-b1e6-11ee-95ac-87774f69a715. 2024-01-13T07:36:29.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.661+0000 7f4ff09c6880 0 set uid:gid to 167:167 (ceph:ceph) 2024-01-13T07:36:29.994 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.661+0000 7f4ff09c6880 0 ceph version 16.2.14-456-g445562ab (445562ab4bc3ddfb386936119050695810860bcb) pacific (stable), process ceph-mon, pid 6 2024-01-13T07:36:29.994 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.661+0000 7f4ff09c6880 0 pidfile_write: ignore empty --pid-file 2024-01-13T07:36:29.994 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.665+0000 7f4ff09c6880 0 load: jerasure load: lrc load: isa 2024-01-13T07:36:29.994 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: RocksDB version: 6.8.1 2024-01-13T07:36:29.994 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-01-13T07:36:29.994 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Compile date Jan 12 2024 2024-01-13T07:36:29.994 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: DB SUMMARY 2024-01-13T07:36:29.994 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: CURRENT file: CURRENT 2024-01-13T07:36:29.994 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: IDENTITY file: IDENTITY 2024-01-13T07:36:29.994 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 131 Bytes 2024-01-13T07:36:29.994 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi039/store.db dir, Total Num: 1, files: 000004.sst 2024-01-13T07:36:29.994 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi039/store.db: 000006.log size: 86517 ; 2024-01-13T07:36:29.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.error_if_exists: 0 2024-01-13T07:36:29.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.create_if_missing: 0 2024-01-13T07:36:29.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.paranoid_checks: 1 2024-01-13T07:36:29.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.env: 0x55adb8f34080 2024-01-13T07:36:29.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.fs: Posix File System 2024-01-13T07:36:29.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.info_log: 0x55adba3fa520 2024-01-13T07:36:29.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.max_file_opening_threads: 16 2024-01-13T07:36:29.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.statistics: (nil) 2024-01-13T07:36:29.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.use_fsync: 0 2024-01-13T07:36:29.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.max_log_file_size: 0 2024-01-13T07:36:29.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-01-13T07:36:29.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-01-13T07:36:29.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.keep_log_file_num: 1000 2024-01-13T07:36:29.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.recycle_log_file_num: 0 2024-01-13T07:36:29.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.allow_fallocate: 1 2024-01-13T07:36:29.996 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.allow_mmap_reads: 0 2024-01-13T07:36:29.996 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.allow_mmap_writes: 0 2024-01-13T07:36:29.996 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.use_direct_reads: 0 2024-01-13T07:36:29.996 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-01-13T07:36:29.996 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.create_missing_column_families: 0 2024-01-13T07:36:29.996 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.db_log_dir: 2024-01-13T07:36:29.996 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi039/store.db 2024-01-13T07:36:29.996 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-01-13T07:36:29.996 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.max_subcompactions: 1 2024-01-13T07:36:29.996 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.max_background_flushes: -1 2024-01-13T07:36:29.996 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-01-13T07:36:29.996 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-01-13T07:36:29.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-01-13T07:36:29.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-01-13T07:36:29.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-01-13T07:36:29.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.advise_random_on_open: 1 2024-01-13T07:36:29.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.db_write_buffer_size: 0 2024-01-13T07:36:29.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.write_buffer_manager: 0x55adbb048480 2024-01-13T07:36:29.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-01-13T07:36:29.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-01-13T07:36:29.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-01-13T07:36:29.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-01-13T07:36:29.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.rate_limiter: (nil) 2024-01-13T07:36:29.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-01-13T07:36:29.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.wal_recovery_mode: 2 2024-01-13T07:36:29.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.enable_thread_tracking: 0 2024-01-13T07:36:29.999 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.enable_pipelined_write: 0 2024-01-13T07:36:29.999 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.unordered_write: 0 2024-01-13T07:36:29.999 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-01-13T07:36:29.999 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-01-13T07:36:29.999 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-01-13T07:36:29.999 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-01-13T07:36:29.999 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.row_cache: None 2024-01-13T07:36:29.999 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.wal_filter: None 2024-01-13T07:36:29.999 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-01-13T07:36:30.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.allow_ingest_behind: 0 2024-01-13T07:36:30.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.preserve_deletes: 0 2024-01-13T07:36:30.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.two_write_queues: 0 2024-01-13T07:36:30.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.manual_wal_flush: 0 2024-01-13T07:36:30.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.atomic_flush: 0 2024-01-13T07:36:30.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-01-13T07:36:30.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-01-13T07:36:30.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-01-13T07:36:30.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.log_readahead_size: 0 2024-01-13T07:36:30.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-01-13T07:36:30.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.max_background_jobs: 2 2024-01-13T07:36:30.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.max_background_compactions: -1 2024-01-13T07:36:30.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-01-13T07:36:30.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-01-13T07:36:30.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-01-13T07:36:30.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.max_total_wal_size: 0 2024-01-13T07:36:30.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-01-13T07:36:30.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-01-13T07:36:30.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-01-13T07:36:30.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-01-13T07:36:30.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.max_open_files: -1 2024-01-13T07:36:30.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.bytes_per_sync: 0 2024-01-13T07:36:30.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-01-13T07:36:30.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-01-13T07:36:30.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.compaction_readahead_size: 0 2024-01-13T07:36:30.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Compression algorithms supported: 2024-01-13T07:36:30.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-01-13T07:36:30.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: kZSTD supported: 0 2024-01-13T07:36:30.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: kXpressCompression supported: 0 2024-01-13T07:36:30.002 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: kLZ4HCCompression supported: 1 2024-01-13T07:36:30.002 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: kLZ4Compression supported: 1 2024-01-13T07:36:30.002 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: kBZip2Compression supported: 0 2024-01-13T07:36:30.002 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: kZlibCompression supported: 1 2024-01-13T07:36:30.002 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: kSnappyCompression supported: 1 2024-01-13T07:36:30.002 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-01-13T07:36:30.002 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi039/store.db/MANIFEST-000005 2024-01-13T07:36:30.002 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-01-13T07:36:30.002 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-01-13T07:36:30.002 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.merge_operator: 2024-01-13T07:36:30.002 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.compaction_filter: None 2024-01-13T07:36:30.002 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.compaction_filter_factory: None 2024-01-13T07:36:30.002 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-01-13T07:36:30.002 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-01-13T07:36:30.002 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55adba39dd28) 2024-01-13T07:36:30.003 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: cache_index_and_filter_blocks: 1 2024-01-13T07:36:30.003 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: cache_index_and_filter_blocks_with_high_priority: 0 2024-01-13T07:36:30.003 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-01-13T07:36:30.003 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: pin_top_level_index_and_filter: 1 2024-01-13T07:36:30.003 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: index_type: 0 2024-01-13T07:36:30.003 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: data_block_index_type: 0 2024-01-13T07:36:30.003 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: index_shortening: 1 2024-01-13T07:36:30.003 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: data_block_hash_table_util_ratio: 0.750000 2024-01-13T07:36:30.003 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: hash_index_allow_collision: 1 2024-01-13T07:36:30.003 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: checksum: 1 2024-01-13T07:36:30.003 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: no_block_cache: 0 2024-01-13T07:36:30.003 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: block_cache: 0x55adba3d4f10 2024-01-13T07:36:30.003 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: block_cache_name: BinnedLRUCache 2024-01-13T07:36:30.003 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: block_cache_options: 2024-01-13T07:36:30.003 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: capacity : 536870912 2024-01-13T07:36:30.004 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: num_shard_bits : 4 2024-01-13T07:36:30.004 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: strict_capacity_limit : 0 2024-01-13T07:36:30.004 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: high_pri_pool_ratio: 0.000 2024-01-13T07:36:30.004 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: block_cache_compressed: (nil) 2024-01-13T07:36:30.004 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: persistent_cache: (nil) 2024-01-13T07:36:30.004 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: block_size: 4096 2024-01-13T07:36:30.004 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: block_size_deviation: 10 2024-01-13T07:36:30.004 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: block_restart_interval: 16 2024-01-13T07:36:30.004 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: index_block_restart_interval: 1 2024-01-13T07:36:30.004 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: metadata_block_size: 4096 2024-01-13T07:36:30.004 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: partition_filters: 0 2024-01-13T07:36:30.004 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: use_delta_encoding: 1 2024-01-13T07:36:30.004 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: filter_policy: rocksdb.BuiltinBloomFilter 2024-01-13T07:36:30.004 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: whole_key_filtering: 1 2024-01-13T07:36:30.005 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: verify_compression: 0 2024-01-13T07:36:30.005 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: read_amp_bytes_per_bit: 0 2024-01-13T07:36:30.005 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: format_version: 2 2024-01-13T07:36:30.005 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: enable_index_compression: 1 2024-01-13T07:36:30.005 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: block_align: 0 2024-01-13T07:36:30.005 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.write_buffer_size: 33554432 2024-01-13T07:36:30.005 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.max_write_buffer_number: 2 2024-01-13T07:36:30.005 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.compression: NoCompression 2024-01-13T07:36:30.005 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.bottommost_compression: Disabled 2024-01-13T07:36:30.005 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.prefix_extractor: nullptr 2024-01-13T07:36:30.005 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-01-13T07:36:30.005 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.num_levels: 7 2024-01-13T07:36:30.005 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-01-13T07:36:30.005 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-01-13T07:36:30.005 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-01-13T07:36:30.006 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-01-13T07:36:30.006 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-01-13T07:36:30.006 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-01-13T07:36:30.006 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-01-13T07:36:30.006 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-01-13T07:36:30.006 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-01-13T07:36:30.006 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-01-13T07:36:30.006 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.compression_opts.level: 32767 2024-01-13T07:36:30.006 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.compression_opts.strategy: 0 2024-01-13T07:36:30.006 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-01-13T07:36:30.006 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-01-13T07:36:30.006 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.compression_opts.enabled: false 2024-01-13T07:36:30.006 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-01-13T07:36:30.006 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-01-13T07:36:30.006 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-01-13T07:36:30.006 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.target_file_size_base: 67108864 2024-01-13T07:36:30.007 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-01-13T07:36:30.007 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-01-13T07:36:30.007 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-01-13T07:36:30.007 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-01-13T07:36:30.007 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-01-13T07:36:30.007 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-01-13T07:36:30.007 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-01-13T07:36:30.007 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-01-13T07:36:30.007 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-01-13T07:36:30.007 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-01-13T07:36:30.007 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-01-13T07:36:30.007 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-01-13T07:36:30.007 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-01-13T07:36:30.007 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.arena_block_size: 4194304 2024-01-13T07:36:30.007 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-01-13T07:36:30.008 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-01-13T07:36:30.008 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-01-13T07:36:30.008 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.disable_auto_compactions: 0 2024-01-13T07:36:30.008 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-01-13T07:36:30.008 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-01-13T07:36:30.008 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-01-13T07:36:30.008 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-01-13T07:36:30.008 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-01-13T07:36:30.008 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-01-13T07:36:30.008 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-01-13T07:36:30.008 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-01-13T07:36:30.008 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-01-13T07:36:30.008 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-01-13T07:36:30.008 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.table_properties_collectors: 2024-01-13T07:36:30.009 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.inplace_update_support: 0 2024-01-13T07:36:30.009 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-01-13T07:36:30.009 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-01-13T07:36:30.009 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-01-13T07:36:30.009 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-01-13T07:36:30.009 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.bloom_locality: 0 2024-01-13T07:36:30.009 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.max_successive_merges: 0 2024-01-13T07:36:30.009 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-01-13T07:36:30.009 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.paranoid_file_checks: 0 2024-01-13T07:36:30.009 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.force_consistency_checks: 0 2024-01-13T07:36:30.009 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.report_bg_io_stats: 0 2024-01-13T07:36:30.009 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.ttl: 2592000 2024-01-13T07:36:30.009 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-01-13T07:36:30.009 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi039/store.db/MANIFEST-000005 succeeded,manifest_file_number is 5, next_file_number is 7, last_sequence is 5, log_number is 4,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-01-13T07:36:30.009 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 4 2024-01-13T07:36:30.010 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1705131389673420, "job": 1, "event": "recovery_started", "log_files": [6]} 2024-01-13T07:36:30.010 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: [db_impl/db_impl_open.cc:760] Recovering log #6 mode 2 2024-01-13T07:36:30.010 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 3 rocksdb: [le/block_based/filter_policy.cc:584] Using legacy Bloom filter with high (20) bits/key. Dramatic filter space and/or accuracy improvement is available with format_version>=5. 2024-01-13T07:36:30.010 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1705131389674681, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 7, "file_size": 83390, "table_properties": {"data_size": 81657, "index_size": 338, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 0, "index_value_is_delta_encoded": 0, "filter_size": 581, "raw_key_size": 9331, "raw_average_key_size": 47, "raw_value_size": 76169, "raw_average_value_size": 384, "num_data_blocks": 11, "num_entries": 198, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; ", "creation_time": 1705131389, "oldest_key_time": 3, "file_creation_time": 0}} 2024-01-13T07:36:30.010 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.669+0000 7f4ff09c6880 4 rocksdb: [version_set.cc:3826] Creating manifest 8 2024-01-13T07:36:30.010 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.673+0000 7f4ff09c6880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1705131389675616, "job": 1, "event": "recovery_finished"} 2024-01-13T07:36:30.010 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.673+0000 7f4ff09c6880 4 rocksdb: DB pointer 0x55adba49d800 2024-01-13T07:36:30.010 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.673+0000 7f4fd77ba700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-01-13T07:36:30.010 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.673+0000 7f4fd77ba700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-01-13T07:36:30.010 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: ** DB Stats ** 2024-01-13T07:36:30.010 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: Uptime(secs): 0.0 total, 0.0 interval 2024-01-13T07:36:30.010 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-01-13T07:36:30.010 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-01-13T07:36:30.010 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-01-13T07:36:30.010 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-01-13T07:36:30.011 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-01-13T07:36:30.011 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-01-13T07:36:30.011 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: ** Compaction Stats [default] ** 2024-01-13T07:36:30.011 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-01-13T07:36:30.011 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-13T07:36:30.011 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: L0 2/0 83.13 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 88.0 0.00 0.00 1 0.001 0 0 2024-01-13T07:36:30.011 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: Sum 2/0 83.13 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 88.0 0.00 0.00 1 0.001 0 0 2024-01-13T07:36:30.011 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 88.0 0.00 0.00 1 0.001 0 0 2024-01-13T07:36:30.011 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: ** Compaction Stats [default] ** 2024-01-13T07:36:30.011 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-01-13T07:36:30.011 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-13T07:36:30.011 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 88.0 0.00 0.00 1 0.001 0 0 2024-01-13T07:36:30.011 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: Uptime(secs): 0.0 total, 0.0 interval 2024-01-13T07:36:30.011 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: Flush(GB): cumulative 0.000, interval 0.000 2024-01-13T07:36:30.011 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: AddFile(GB): cumulative 0.000, interval 0.000 2024-01-13T07:36:30.011 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: AddFile(Total Files): cumulative 0, interval 0 2024-01-13T07:36:30.012 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: AddFile(L0 Files): cumulative 0, interval 0 2024-01-13T07:36:30.012 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: AddFile(Keys): cumulative 0, interval 0 2024-01-13T07:36:30.012 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: Cumulative compaction: 0.00 GB write, 12.45 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-13T07:36:30.012 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: Interval compaction: 0.00 GB write, 12.45 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-13T07:36:30.012 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-01-13T07:36:30.012 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: ** File Read Latency Histogram By Level [default] ** 2024-01-13T07:36:30.012 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: ** Compaction Stats [default] ** 2024-01-13T07:36:30.012 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-01-13T07:36:30.012 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-13T07:36:30.012 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: L0 2/0 83.13 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 88.0 0.00 0.00 1 0.001 0 0 2024-01-13T07:36:30.012 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: Sum 2/0 83.13 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 88.0 0.00 0.00 1 0.001 0 0 2024-01-13T07:36:30.012 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2024-01-13T07:36:30.012 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: ** Compaction Stats [default] ** 2024-01-13T07:36:30.012 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-01-13T07:36:30.013 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-13T07:36:30.013 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 88.0 0.00 0.00 1 0.001 0 0 2024-01-13T07:36:30.013 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: Uptime(secs): 0.0 total, 0.0 interval 2024-01-13T07:36:30.013 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: Flush(GB): cumulative 0.000, interval 0.000 2024-01-13T07:36:30.013 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: AddFile(GB): cumulative 0.000, interval 0.000 2024-01-13T07:36:30.013 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: AddFile(Total Files): cumulative 0, interval 0 2024-01-13T07:36:30.013 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: AddFile(L0 Files): cumulative 0, interval 0 2024-01-13T07:36:30.013 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: AddFile(Keys): cumulative 0, interval 0 2024-01-13T07:36:30.013 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: Cumulative compaction: 0.00 GB write, 12.19 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-13T07:36:30.013 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-13T07:36:30.013 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-01-13T07:36:30.013 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: ** File Read Latency Histogram By Level [default] ** 2024-01-13T07:36:30.013 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.677+0000 7f4ff09c6880 0 starting mon.smithi039 rank 0 at public addrs [v2:172.21.15.39:3300/0,v1:172.21.15.39:6789/0] at bind addrs [v2:172.21.15.39:3300/0,v1:172.21.15.39:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi039 fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 2024-01-13T07:36:30.013 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.677+0000 7f4ff09c6880 1 mon.smithi039@-1(???) e1 preinit fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 2024-01-13T07:36:30.013 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.677+0000 7f4ff09c6880 0 mon.smithi039@-1(???).mds e1 new map 2024-01-13T07:36:30.013 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.677+0000 7f4ff09c6880 0 mon.smithi039@-1(???).mds e1 print_map 2024-01-13T07:36:30.014 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: e1 2024-01-13T07:36:30.014 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: enable_multiple, ever_enabled_multiple: 1,1 2024-01-13T07:36:30.014 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2} 2024-01-13T07:36:30.014 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: legacy client fscid: -1 2024-01-13T07:36:30.014 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: 2024-01-13T07:36:30.014 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: No filesystems configured 2024-01-13T07:36:30.014 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.677+0000 7f4ff09c6880 0 mon.smithi039@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-01-13T07:36:30.014 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.677+0000 7f4ff09c6880 0 mon.smithi039@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-01-13T07:36:30.014 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: audit 2024-01-13T07:36:27.116886+0000 mon.smithi039 (mon.0) 10 : audit [DBG] from='client.? 172.21.15.39:0/822265934' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:36:30.014 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: debug 2024-01-13T07:36:29.677+0000 7f4ff09c6880 1 mon.smithi039@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-01-13T07:36:30.014 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: cluster 2024-01-13T07:36:29.686043+0000 mon.smithi039 (mon.0) 1 : cluster [INF] mon.smithi039 is new leader, mons smithi039 in quorum (ranks 0) 2024-01-13T07:36:30.014 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: cluster 2024-01-13T07:36:29.686114+0000 mon.smithi039 (mon.0) 2 : cluster [DBG] monmap e1: 1 mons at {smithi039=[v2:172.21.15.39:3300/0,v1:172.21.15.39:6789/0]} removed_ranks: {} 2024-01-13T07:36:30.014 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: cluster 2024-01-13T07:36:29.686607+0000 mon.smithi039 (mon.0) 3 : cluster [DBG] fsmap 2024-01-13T07:36:30.014 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: cluster 2024-01-13T07:36:29.686647+0000 mon.smithi039 (mon.0) 4 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-01-13T07:36:30.014 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:29 smithi039 bash[16208]: cluster 2024-01-13T07:36:29.687171+0000 mon.smithi039 (mon.0) 5 : cluster [DBG] mgrmap e1: no daemons active 2024-01-13T07:36:30.570 INFO:teuthology.orchestra.run.smithi039.stderr:Wrote config to /etc/ceph/ceph.conf 2024-01-13T07:36:30.571 INFO:teuthology.orchestra.run.smithi039.stderr:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-01-13T07:36:30.571 INFO:teuthology.orchestra.run.smithi039.stderr:Creating mgr... 2024-01-13T07:36:30.571 INFO:teuthology.orchestra.run.smithi039.stderr:Verifying port 9283 ... 2024-01-13T07:36:30.719 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: Failed to reset failed state of unit ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715@mgr.smithi039.fbdzkl.service: Unit ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715@mgr.smithi039.fbdzkl.service is not loaded. 2024-01-13T07:36:30.729 INFO:teuthology.orchestra.run.smithi039.stderr:systemctl: Created symlink /etc/systemd/system/ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715.target.wants/ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715@mgr.smithi039.fbdzkl.service -> /etc/systemd/system/ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715@.service. 2024-01-13T07:36:30.834 INFO:teuthology.orchestra.run.smithi039.stderr:firewalld does not appear to be present 2024-01-13T07:36:30.834 INFO:teuthology.orchestra.run.smithi039.stderr:Not possible to enable service . firewalld.service is not available 2024-01-13T07:36:30.835 INFO:teuthology.orchestra.run.smithi039.stderr:firewalld does not appear to be present 2024-01-13T07:36:30.835 INFO:teuthology.orchestra.run.smithi039.stderr:Not possible to open ports <[9283]>. firewalld.service is not available 2024-01-13T07:36:30.835 INFO:teuthology.orchestra.run.smithi039.stderr:Waiting for mgr to start... 2024-01-13T07:36:30.835 INFO:teuthology.orchestra.run.smithi039.stderr:Waiting for mgr... 2024-01-13T07:36:31.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:31 smithi039 bash[16208]: audit 2024-01-13T07:36:30.045398+0000 mon.smithi039 (mon.0) 6 : audit [INF] from='client.? 172.21.15.39:0/3286784794' entity='client.admin' 2024-01-13T07:36:32.493 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: 2024-01-13T07:36:32.493 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: { 2024-01-13T07:36:32.494 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "fsid": "5dfd6106-b1e6-11ee-95ac-87774f69a715", 2024-01-13T07:36:32.494 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "health": { 2024-01-13T07:36:32.494 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-01-13T07:36:32.494 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "checks": {}, 2024-01-13T07:36:32.494 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "mutes": [] 2024-01-13T07:36:32.494 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: }, 2024-01-13T07:36:32.495 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-01-13T07:36:32.495 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "quorum": [ 2024-01-13T07:36:32.495 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: 0 2024-01-13T07:36:32.497 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: ], 2024-01-13T07:36:32.497 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "quorum_names": [ 2024-01-13T07:36:32.497 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "smithi039" 2024-01-13T07:36:32.497 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: ], 2024-01-13T07:36:32.497 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "quorum_age": 2, 2024-01-13T07:36:32.497 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "monmap": { 2024-01-13T07:36:32.497 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-13T07:36:32.498 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-01-13T07:36:32.498 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_mons": 1 2024-01-13T07:36:32.498 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: }, 2024-01-13T07:36:32.498 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "osdmap": { 2024-01-13T07:36:32.498 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-13T07:36:32.498 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_osds": 0, 2024-01-13T07:36:32.499 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-01-13T07:36:32.499 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-01-13T07:36:32.499 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-01-13T07:36:32.499 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-01-13T07:36:32.499 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-01-13T07:36:32.499 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: }, 2024-01-13T07:36:32.500 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "pgmap": { 2024-01-13T07:36:32.500 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-01-13T07:36:32.500 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-01-13T07:36:32.500 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_pools": 0, 2024-01-13T07:36:32.503 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_objects": 0, 2024-01-13T07:36:32.503 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-01-13T07:36:32.503 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-01-13T07:36:32.503 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-01-13T07:36:32.503 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "bytes_total": 0 2024-01-13T07:36:32.503 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: }, 2024-01-13T07:36:32.503 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "fsmap": { 2024-01-13T07:36:32.503 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-13T07:36:32.503 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "by_rank": [], 2024-01-13T07:36:32.503 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "up:standby": 0 2024-01-13T07:36:32.503 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: }, 2024-01-13T07:36:32.503 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "mgrmap": { 2024-01-13T07:36:32.503 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "available": false, 2024-01-13T07:36:32.503 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-01-13T07:36:32.504 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "modules": [ 2024-01-13T07:36:32.504 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "iostat", 2024-01-13T07:36:32.504 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "nfs", 2024-01-13T07:36:32.504 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "restful" 2024-01-13T07:36:32.504 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: ], 2024-01-13T07:36:32.504 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "services": {} 2024-01-13T07:36:32.504 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: }, 2024-01-13T07:36:32.504 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "servicemap": { 2024-01-13T07:36:32.504 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-13T07:36:32.504 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "modified": "2024-01-13T07:36:23.543792+0000", 2024-01-13T07:36:32.504 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "services": {} 2024-01-13T07:36:32.504 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: }, 2024-01-13T07:36:32.504 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "progress_events": {} 2024-01-13T07:36:32.504 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: } 2024-01-13T07:36:32.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:32 smithi039 bash[16208]: audit 2024-01-13T07:36:32.491648+0000 mon.smithi039 (mon.0) 7 : audit [DBG] from='client.? 172.21.15.39:0/3462898350' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-01-13T07:36:33.012 INFO:teuthology.orchestra.run.smithi039.stderr:mgr not available, waiting (1/15)... 2024-01-13T07:36:36.194 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: 2024-01-13T07:36:36.194 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: { 2024-01-13T07:36:36.194 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "fsid": "5dfd6106-b1e6-11ee-95ac-87774f69a715", 2024-01-13T07:36:36.194 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "health": { 2024-01-13T07:36:36.194 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-01-13T07:36:36.194 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "checks": {}, 2024-01-13T07:36:36.194 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "mutes": [] 2024-01-13T07:36:36.194 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: }, 2024-01-13T07:36:36.194 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-01-13T07:36:36.195 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "quorum": [ 2024-01-13T07:36:36.195 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: 0 2024-01-13T07:36:36.195 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: ], 2024-01-13T07:36:36.195 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "quorum_names": [ 2024-01-13T07:36:36.195 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "smithi039" 2024-01-13T07:36:36.195 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: ], 2024-01-13T07:36:36.195 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "quorum_age": 6, 2024-01-13T07:36:36.195 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "monmap": { 2024-01-13T07:36:36.195 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-13T07:36:36.195 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-01-13T07:36:36.195 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_mons": 1 2024-01-13T07:36:36.195 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: }, 2024-01-13T07:36:36.195 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "osdmap": { 2024-01-13T07:36:36.196 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-13T07:36:36.196 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_osds": 0, 2024-01-13T07:36:36.196 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-01-13T07:36:36.196 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-01-13T07:36:36.196 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-01-13T07:36:36.196 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-01-13T07:36:36.196 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-01-13T07:36:36.196 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: }, 2024-01-13T07:36:36.196 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "pgmap": { 2024-01-13T07:36:36.196 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-01-13T07:36:36.197 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-01-13T07:36:36.197 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_pools": 0, 2024-01-13T07:36:36.197 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_objects": 0, 2024-01-13T07:36:36.197 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-01-13T07:36:36.197 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-01-13T07:36:36.197 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-01-13T07:36:36.197 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "bytes_total": 0 2024-01-13T07:36:36.197 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: }, 2024-01-13T07:36:36.197 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "fsmap": { 2024-01-13T07:36:36.197 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-13T07:36:36.197 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "by_rank": [], 2024-01-13T07:36:36.197 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "up:standby": 0 2024-01-13T07:36:36.197 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: }, 2024-01-13T07:36:36.197 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "mgrmap": { 2024-01-13T07:36:36.197 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "available": false, 2024-01-13T07:36:36.198 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-01-13T07:36:36.198 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "modules": [ 2024-01-13T07:36:36.198 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "iostat", 2024-01-13T07:36:36.198 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "nfs", 2024-01-13T07:36:36.198 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "restful" 2024-01-13T07:36:36.198 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: ], 2024-01-13T07:36:36.198 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "services": {} 2024-01-13T07:36:36.198 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: }, 2024-01-13T07:36:36.198 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "servicemap": { 2024-01-13T07:36:36.198 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-13T07:36:36.198 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "modified": "2024-01-13T07:36:23.543792+0000", 2024-01-13T07:36:36.198 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "services": {} 2024-01-13T07:36:36.198 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: }, 2024-01-13T07:36:36.198 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "progress_events": {} 2024-01-13T07:36:36.199 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: } 2024-01-13T07:36:36.333 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:36 smithi039 bash[16208]: audit 2024-01-13T07:36:36.184770+0000 mon.smithi039 (mon.0) 8 : audit [DBG] from='client.? 172.21.15.39:0/945631230' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-01-13T07:36:36.760 INFO:teuthology.orchestra.run.smithi039.stderr:mgr not available, waiting (2/15)... 2024-01-13T07:36:39.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:38 smithi039 bash[16208]: cluster 2024-01-13T07:36:38.832542+0000 mon.smithi039 (mon.0) 9 : cluster [INF] Activating manager daemon smithi039.fbdzkl 2024-01-13T07:36:39.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:38 smithi039 bash[16208]: cluster 2024-01-13T07:36:38.837838+0000 mon.smithi039 (mon.0) 10 : cluster [DBG] mgrmap e2: smithi039.fbdzkl(active, starting, since 0.0055524s) 2024-01-13T07:36:39.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:38 smithi039 bash[16208]: audit 2024-01-13T07:36:38.840292+0000 mon.smithi039 (mon.0) 11 : audit [DBG] from='mgr.14100 172.21.15.39:0/1048266747' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-01-13T07:36:39.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:38 smithi039 bash[16208]: audit 2024-01-13T07:36:38.840894+0000 mon.smithi039 (mon.0) 12 : audit [DBG] from='mgr.14100 172.21.15.39:0/1048266747' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-01-13T07:36:39.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:38 smithi039 bash[16208]: audit 2024-01-13T07:36:38.841281+0000 mon.smithi039 (mon.0) 13 : audit [DBG] from='mgr.14100 172.21.15.39:0/1048266747' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-01-13T07:36:39.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:38 smithi039 bash[16208]: audit 2024-01-13T07:36:38.841674+0000 mon.smithi039 (mon.0) 14 : audit [DBG] from='mgr.14100 172.21.15.39:0/1048266747' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mon metadata", "id": "smithi039"}]: dispatch 2024-01-13T07:36:39.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:38 smithi039 bash[16208]: audit 2024-01-13T07:36:38.842198+0000 mon.smithi039 (mon.0) 15 : audit [DBG] from='mgr.14100 172.21.15.39:0/1048266747' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mgr metadata", "who": "smithi039.fbdzkl", "id": "smithi039.fbdzkl"}]: dispatch 2024-01-13T07:36:39.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:38 smithi039 bash[16208]: cluster 2024-01-13T07:36:38.845539+0000 mon.smithi039 (mon.0) 16 : cluster [INF] Manager daemon smithi039.fbdzkl is now available 2024-01-13T07:36:39.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:38 smithi039 bash[16208]: audit 2024-01-13T07:36:38.868430+0000 mon.smithi039 (mon.0) 17 : audit [INF] from='mgr.14100 172.21.15.39:0/1048266747' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:36:39.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:38 smithi039 bash[16208]: audit 2024-01-13T07:36:38.876279+0000 mon.smithi039 (mon.0) 18 : audit [INF] from='mgr.14100 172.21.15.39:0/1048266747' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi039.fbdzkl/mirror_snapshot_schedule"}]: dispatch 2024-01-13T07:36:39.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:38 smithi039 bash[16208]: audit 2024-01-13T07:36:38.881262+0000 mon.smithi039 (mon.0) 19 : audit [INF] from='mgr.14100 172.21.15.39:0/1048266747' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi039.fbdzkl/trash_purge_schedule"}]: dispatch 2024-01-13T07:36:39.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:39 smithi039 bash[16208]: audit 2024-01-13T07:36:38.886064+0000 mon.smithi039 (mon.0) 20 : audit [INF] from='mgr.14100 172.21.15.39:0/1048266747' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:36:39.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:39 smithi039 bash[16208]: audit 2024-01-13T07:36:38.891965+0000 mon.smithi039 (mon.0) 21 : audit [INF] from='mgr.14100 172.21.15.39:0/1048266747' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:36:39.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:39 smithi039 bash[16208]: cluster 2024-01-13T07:36:39.845333+0000 mon.smithi039 (mon.0) 22 : cluster [DBG] mgrmap e3: smithi039.fbdzkl(active, since 1.01305s) 2024-01-13T07:36:40.458 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: 2024-01-13T07:36:40.458 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: { 2024-01-13T07:36:40.459 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "fsid": "5dfd6106-b1e6-11ee-95ac-87774f69a715", 2024-01-13T07:36:40.459 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "health": { 2024-01-13T07:36:40.459 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-01-13T07:36:40.459 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "checks": {}, 2024-01-13T07:36:40.461 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "mutes": [] 2024-01-13T07:36:40.461 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: }, 2024-01-13T07:36:40.462 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-01-13T07:36:40.462 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "quorum": [ 2024-01-13T07:36:40.462 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: 0 2024-01-13T07:36:40.462 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: ], 2024-01-13T07:36:40.462 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "quorum_names": [ 2024-01-13T07:36:40.462 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "smithi039" 2024-01-13T07:36:40.462 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: ], 2024-01-13T07:36:40.462 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "quorum_age": 10, 2024-01-13T07:36:40.462 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "monmap": { 2024-01-13T07:36:40.462 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-13T07:36:40.462 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-01-13T07:36:40.462 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_mons": 1 2024-01-13T07:36:40.462 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: }, 2024-01-13T07:36:40.462 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "osdmap": { 2024-01-13T07:36:40.462 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-13T07:36:40.463 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_osds": 0, 2024-01-13T07:36:40.463 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-01-13T07:36:40.463 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-01-13T07:36:40.463 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-01-13T07:36:40.463 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-01-13T07:36:40.463 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-01-13T07:36:40.464 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: }, 2024-01-13T07:36:40.464 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "pgmap": { 2024-01-13T07:36:40.464 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-01-13T07:36:40.464 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-01-13T07:36:40.464 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_pools": 0, 2024-01-13T07:36:40.464 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_objects": 0, 2024-01-13T07:36:40.464 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-01-13T07:36:40.465 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-01-13T07:36:40.465 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-01-13T07:36:40.465 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "bytes_total": 0 2024-01-13T07:36:40.467 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: }, 2024-01-13T07:36:40.467 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "fsmap": { 2024-01-13T07:36:40.467 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-13T07:36:40.467 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "by_rank": [], 2024-01-13T07:36:40.467 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "up:standby": 0 2024-01-13T07:36:40.467 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: }, 2024-01-13T07:36:40.467 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "mgrmap": { 2024-01-13T07:36:40.467 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "available": true, 2024-01-13T07:36:40.468 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-01-13T07:36:40.468 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "modules": [ 2024-01-13T07:36:40.468 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "iostat", 2024-01-13T07:36:40.468 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "nfs", 2024-01-13T07:36:40.468 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "restful" 2024-01-13T07:36:40.468 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: ], 2024-01-13T07:36:40.468 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "services": {} 2024-01-13T07:36:40.468 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: }, 2024-01-13T07:36:40.468 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "servicemap": { 2024-01-13T07:36:40.468 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "epoch": 1, 2024-01-13T07:36:40.468 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "modified": "2024-01-13T07:36:23.543792+0000", 2024-01-13T07:36:40.468 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "services": {} 2024-01-13T07:36:40.468 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: }, 2024-01-13T07:36:40.468 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "progress_events": {} 2024-01-13T07:36:40.468 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: } 2024-01-13T07:36:40.936 INFO:teuthology.orchestra.run.smithi039.stderr:mgr is available 2024-01-13T07:36:41.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:40 smithi039 bash[16208]: audit 2024-01-13T07:36:40.456650+0000 mon.smithi039 (mon.0) 23 : audit [DBG] from='client.? 172.21.15.39:0/974174622' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-01-13T07:36:42.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:41 smithi039 bash[16208]: cluster 2024-01-13T07:36:40.893474+0000 mon.smithi039 (mon.0) 24 : cluster [DBG] mgrmap e4: smithi039.fbdzkl(active, since 2s) 2024-01-13T07:36:42.322 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: 2024-01-13T07:36:42.322 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: [global] 2024-01-13T07:36:42.322 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: fsid = 5dfd6106-b1e6-11ee-95ac-87774f69a715 2024-01-13T07:36:42.322 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: mon_osd_allow_pg_remap = true 2024-01-13T07:36:42.322 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: mon_osd_allow_primary_affinity = true 2024-01-13T07:36:42.322 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: mon_warn_on_no_sortbitwise = false 2024-01-13T07:36:42.322 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: osd_crush_chooseleaf_type = 0 2024-01-13T07:36:42.322 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: 2024-01-13T07:36:42.322 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: [mgr] 2024-01-13T07:36:42.322 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: mgr/telemetry/nag = false 2024-01-13T07:36:42.323 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: 2024-01-13T07:36:42.323 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: [osd] 2024-01-13T07:36:42.323 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: osd_map_max_advance = 10 2024-01-13T07:36:42.323 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: osd_sloppy_crc = true 2024-01-13T07:36:42.833 INFO:teuthology.orchestra.run.smithi039.stderr:Enabling cephadm module... 2024-01-13T07:36:43.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:42 smithi039 bash[16208]: audit 2024-01-13T07:36:42.318761+0000 mon.smithi039 (mon.0) 25 : audit [INF] from='client.? 172.21.15.39:0/731176679' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-01-13T07:36:44.738 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:44 smithi039 bash[16208]: audit 2024-01-13T07:36:44.391977+0000 mon.smithi039 (mon.0) 26 : audit [INF] from='client.? 172.21.15.39:0/29659341' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-01-13T07:36:45.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:45 smithi039 bash[16208]: audit 2024-01-13T07:36:44.448316+0000 mon.smithi039 (mon.0) 27 : audit [INF] from='client.? 172.21.15.39:0/29659341' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-01-13T07:36:45.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:45 smithi039 bash[16208]: cluster 2024-01-13T07:36:44.448463+0000 mon.smithi039 (mon.0) 28 : cluster [DBG] mgrmap e5: smithi039.fbdzkl(active, since 5s) 2024-01-13T07:36:46.551 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: { 2024-01-13T07:36:46.551 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "epoch": 5, 2024-01-13T07:36:46.551 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "available": true, 2024-01-13T07:36:46.552 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "active_name": "smithi039.fbdzkl", 2024-01-13T07:36:46.552 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_standby": 0 2024-01-13T07:36:46.552 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: } 2024-01-13T07:36:46.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:46 smithi039 bash[16208]: audit 2024-01-13T07:36:46.549799+0000 mon.smithi039 (mon.0) 29 : audit [DBG] from='client.? 172.21.15.39:0/3812438869' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-01-13T07:36:47.053 INFO:teuthology.orchestra.run.smithi039.stderr:Waiting for the mgr to restart... 2024-01-13T07:36:47.053 INFO:teuthology.orchestra.run.smithi039.stderr:Waiting for mgr epoch 5... 2024-01-13T07:36:51.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:51 smithi039 bash[16208]: cluster 2024-01-13T07:36:51.053326+0000 mon.smithi039 (mon.0) 30 : cluster [INF] Active manager daemon smithi039.fbdzkl restarted 2024-01-13T07:36:51.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:51 smithi039 bash[16208]: cluster 2024-01-13T07:36:51.053703+0000 mon.smithi039 (mon.0) 31 : cluster [INF] Activating manager daemon smithi039.fbdzkl 2024-01-13T07:36:51.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:51 smithi039 bash[16208]: cluster 2024-01-13T07:36:51.063962+0000 mon.smithi039 (mon.0) 32 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-01-13T07:36:51.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:51 smithi039 bash[16208]: cluster 2024-01-13T07:36:51.064214+0000 mon.smithi039 (mon.0) 33 : cluster [DBG] mgrmap e6: smithi039.fbdzkl(active, starting, since 0.0106426s) 2024-01-13T07:36:51.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:51 smithi039 bash[16208]: audit 2024-01-13T07:36:51.066033+0000 mon.smithi039 (mon.0) 34 : audit [DBG] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mon metadata", "id": "smithi039"}]: dispatch 2024-01-13T07:36:51.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:51 smithi039 bash[16208]: audit 2024-01-13T07:36:51.067733+0000 mon.smithi039 (mon.0) 35 : audit [DBG] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mgr metadata", "who": "smithi039.fbdzkl", "id": "smithi039.fbdzkl"}]: dispatch 2024-01-13T07:36:51.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:51 smithi039 bash[16208]: audit 2024-01-13T07:36:51.069109+0000 mon.smithi039 (mon.0) 36 : audit [DBG] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-01-13T07:36:51.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:51 smithi039 bash[16208]: audit 2024-01-13T07:36:51.069464+0000 mon.smithi039 (mon.0) 37 : audit [DBG] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-01-13T07:36:51.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:51 smithi039 bash[16208]: audit 2024-01-13T07:36:51.069786+0000 mon.smithi039 (mon.0) 38 : audit [DBG] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-01-13T07:36:51.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:51 smithi039 bash[16208]: cluster 2024-01-13T07:36:51.075428+0000 mon.smithi039 (mon.0) 39 : cluster [INF] Manager daemon smithi039.fbdzkl is now available 2024-01-13T07:36:51.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:51 smithi039 bash[16208]: audit 2024-01-13T07:36:51.100043+0000 mon.smithi039 (mon.0) 40 : audit [INF] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:36:52.084 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: { 2024-01-13T07:36:52.085 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "mgrmap_epoch": 7, 2024-01-13T07:36:52.085 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "initialized": true 2024-01-13T07:36:52.085 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: } 2024-01-13T07:36:52.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:52 smithi039 bash[16208]: cephadm 2024-01-13T07:36:51.093526+0000 mgr.smithi039.fbdzkl (mgr.14116) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-01-13T07:36:52.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:52 smithi039 bash[16208]: audit 2024-01-13T07:36:51.230148+0000 mon.smithi039 (mon.0) 41 : audit [INF] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:36:52.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:52 smithi039 bash[16208]: audit 2024-01-13T07:36:51.232182+0000 mon.smithi039 (mon.0) 42 : audit [DBG] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:36:52.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:52 smithi039 bash[16208]: audit 2024-01-13T07:36:51.235262+0000 mon.smithi039 (mon.0) 43 : audit [DBG] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:36:52.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:52 smithi039 bash[16208]: audit 2024-01-13T07:36:51.239430+0000 mon.smithi039 (mon.0) 44 : audit [DBG] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:36:52.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:52 smithi039 bash[16208]: audit 2024-01-13T07:36:51.270209+0000 mon.smithi039 (mon.0) 45 : audit [INF] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi039.fbdzkl/mirror_snapshot_schedule"}]: dispatch 2024-01-13T07:36:52.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:52 smithi039 bash[16208]: audit 2024-01-13T07:36:51.274723+0000 mon.smithi039 (mon.0) 46 : audit [INF] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi039.fbdzkl/trash_purge_schedule"}]: dispatch 2024-01-13T07:36:52.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:52 smithi039 bash[16208]: cluster 2024-01-13T07:36:52.068151+0000 mon.smithi039 (mon.0) 47 : cluster [DBG] mgrmap e7: smithi039.fbdzkl(active, since 1.01458s) 2024-01-13T07:36:52.675 INFO:teuthology.orchestra.run.smithi039.stderr:mgr epoch 5 is available 2024-01-13T07:36:52.676 INFO:teuthology.orchestra.run.smithi039.stderr:Setting orchestrator backend to cephadm... 2024-01-13T07:36:53.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:53 smithi039 bash[16208]: audit 2024-01-13T07:36:52.067119+0000 mgr.smithi039.fbdzkl (mgr.14116) 2 : audit [DBG] from='client.14120 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-01-13T07:36:53.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:53 smithi039 bash[16208]: audit 2024-01-13T07:36:52.083727+0000 mgr.smithi039.fbdzkl (mgr.14116) 3 : audit [DBG] from='client.14120 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-01-13T07:36:54.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:54 smithi039 bash[16208]: cluster 2024-01-13T07:36:53.243702+0000 mon.smithi039 (mon.0) 48 : cluster [DBG] mgrmap e8: smithi039.fbdzkl(active, since 2s) 2024-01-13T07:36:54.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:54 smithi039 bash[16208]: audit 2024-01-13T07:36:54.013516+0000 mon.smithi039 (mon.0) 49 : audit [INF] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:36:54.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:54 smithi039 bash[16208]: audit 2024-01-13T07:36:54.076296+0000 mon.smithi039 (mon.0) 50 : audit [DBG] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:36:55.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:55 smithi039 bash[16208]: audit 2024-01-13T07:36:53.998806+0000 mgr.smithi039.fbdzkl (mgr.14116) 4 : audit [DBG] from='client.14126 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-01-13T07:36:55.965 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: value unchanged 2024-01-13T07:36:56.507 INFO:teuthology.orchestra.run.smithi039.stderr:Generating ssh key... 2024-01-13T07:36:56.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:56 smithi039 bash[16208]: audit 2024-01-13T07:36:55.963934+0000 mgr.smithi039.fbdzkl (mgr.14116) 5 : audit [DBG] from='client.14128 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-01-13T07:36:59.699 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:59 smithi039 bash[16208]: audit 2024-01-13T07:36:57.892686+0000 mgr.smithi039.fbdzkl (mgr.14116) 6 : audit [DBG] from='client.14130 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-01-13T07:36:59.700 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:59 smithi039 bash[16208]: cephadm 2024-01-13T07:36:57.893097+0000 mgr.smithi039.fbdzkl (mgr.14116) 7 : cephadm [INF] Generating ssh key... 2024-01-13T07:36:59.700 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:59 smithi039 bash[16208]: audit 2024-01-13T07:36:58.445395+0000 mon.smithi039 (mon.0) 51 : audit [INF] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:36:59.700 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:36:59 smithi039 bash[16208]: audit 2024-01-13T07:36:58.449960+0000 mon.smithi039 (mon.0) 52 : audit [INF] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:37:00.287 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCbM+JcdQXvcY7c0s2Kjvmo47SsoH/O1e8L05GR6l0Yta2+zyPvLySXYwyxJT/wz7B+Ep/O+RUjpbqyxkctJMLpkEfkRoImqCLwG5juMeYZ9g9DosFNRQG+UIiNE1CVCFEKsXw5YuHos2j5lBTBUsh4oos2RuZraKoo3mYyhnDqKyvsGvXNLXopIzK7Cp4gHeVnRfk/orXjH49qPnhLtyJ1C7h7d2pUlkdS8SWaeQi0eY+WJsMhHVMbF083k9Le4OTjZgvne9C+Z0od23OHmMqw+dNDrvSBfym7stDbeSg2lvhU2FlMN0XbESMcTVcyp7F9gXX083I5XcOxd716hP2WQJp8bww9IltUNrJpHQDbP2n1K0OsUTmQLs/WKoVuB4otmapabo5mYRBSZB5bQzySKg69oK1QzMq0k5oINR3fudyy3VewXfBcrHCRveHiqHwtDRAyydjeFHTWtyWgEv/BgtGZdv7XyjCa0fQcYmYZ61Rfij3JzOT2HFayeUkQLCU= ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715 2024-01-13T07:37:00.817 INFO:teuthology.orchestra.run.smithi039.stderr:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-01-13T07:37:00.817 INFO:teuthology.orchestra.run.smithi039.stderr:Adding key to root@localhost authorized_keys... 2024-01-13T07:37:00.818 INFO:teuthology.orchestra.run.smithi039.stderr:Adding host smithi039... 2024-01-13T07:37:00.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:00 smithi039 bash[16208]: audit 2024-01-13T07:37:00.285666+0000 mgr.smithi039.fbdzkl (mgr.14116) 8 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-01-13T07:37:02.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:02 smithi039 bash[16208]: audit 2024-01-13T07:37:02.234616+0000 mgr.smithi039.fbdzkl (mgr.14116) 9 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi039", "addr": "172.21.15.39", "target": ["mon-mgr", ""]}]: dispatch 2024-01-13T07:37:03.042 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: Added host 'smithi039' with addr '172.21.15.39' 2024-01-13T07:37:03.714 INFO:teuthology.orchestra.run.smithi039.stderr:Deploying mon service with default placement... 2024-01-13T07:37:04.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:04 smithi039 bash[16208]: audit 2024-01-13T07:37:03.040245+0000 mon.smithi039 (mon.0) 53 : audit [INF] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:37:04.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:04 smithi039 bash[16208]: cephadm 2024-01-13T07:37:03.040950+0000 mgr.smithi039.fbdzkl (mgr.14116) 10 : cephadm [INF] Added host smithi039 2024-01-13T07:37:04.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:04 smithi039 bash[16208]: audit 2024-01-13T07:37:03.071747+0000 mon.smithi039 (mon.0) 54 : audit [DBG] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:37:05.710 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: Scheduled mon update... 2024-01-13T07:37:06.308 INFO:teuthology.orchestra.run.smithi039.stderr:Deploying mgr service with default placement... 2024-01-13T07:37:06.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:06 smithi039 bash[16208]: audit 2024-01-13T07:37:05.700163+0000 mgr.smithi039.fbdzkl (mgr.14116) 11 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-01-13T07:37:06.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:06 smithi039 bash[16208]: cephadm 2024-01-13T07:37:05.701567+0000 mgr.smithi039.fbdzkl (mgr.14116) 12 : cephadm [INF] Saving service mon spec with placement count:5 2024-01-13T07:37:06.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:06 smithi039 bash[16208]: audit 2024-01-13T07:37:05.708655+0000 mon.smithi039 (mon.0) 55 : audit [INF] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:37:06.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:06 smithi039 bash[16208]: audit 2024-01-13T07:37:05.915379+0000 mon.smithi039 (mon.0) 56 : audit [INF] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:37:06.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:06 smithi039 bash[16208]: audit 2024-01-13T07:37:06.202802+0000 mon.smithi039 (mon.0) 57 : audit [INF] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:37:07.707 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: Scheduled mgr update... 2024-01-13T07:37:08.274 INFO:teuthology.orchestra.run.smithi039.stderr:Deploying crash service with default placement... 2024-01-13T07:37:08.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:08 smithi039 bash[16208]: audit 2024-01-13T07:37:07.695329+0000 mgr.smithi039.fbdzkl (mgr.14116) 13 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-01-13T07:37:08.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:08 smithi039 bash[16208]: cephadm 2024-01-13T07:37:07.697648+0000 mgr.smithi039.fbdzkl (mgr.14116) 14 : cephadm [INF] Saving service mgr spec with placement count:2 2024-01-13T07:37:08.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:08 smithi039 bash[16208]: audit 2024-01-13T07:37:07.705814+0000 mon.smithi039 (mon.0) 58 : audit [INF] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:37:09.670 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: Scheduled crash update... 2024-01-13T07:37:10.204 INFO:teuthology.orchestra.run.smithi039.stderr:Deploying prometheus service with default placement... 2024-01-13T07:37:10.991 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:10 smithi039 bash[16208]: audit 2024-01-13T07:37:09.663660+0000 mgr.smithi039.fbdzkl (mgr.14116) 15 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-01-13T07:37:10.992 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:10 smithi039 bash[16208]: cephadm 2024-01-13T07:37:09.666055+0000 mgr.smithi039.fbdzkl (mgr.14116) 16 : cephadm [INF] Saving service crash spec with placement * 2024-01-13T07:37:10.992 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:10 smithi039 bash[16208]: audit 2024-01-13T07:37:09.669045+0000 mon.smithi039 (mon.0) 59 : audit [INF] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:37:11.605 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: Scheduled prometheus update... 2024-01-13T07:37:12.135 INFO:teuthology.orchestra.run.smithi039.stderr:Deploying grafana service with default placement... 2024-01-13T07:37:12.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:12 smithi039 bash[16208]: cluster 2024-01-13T07:37:11.070795+0000 mgr.smithi039.fbdzkl (mgr.14116) 17 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:37:12.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:12 smithi039 bash[16208]: audit 2024-01-13T07:37:11.343951+0000 mon.smithi039 (mon.0) 60 : audit [INF] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:37:12.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:12 smithi039 bash[16208]: audit 2024-01-13T07:37:11.604269+0000 mon.smithi039 (mon.0) 61 : audit [INF] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:37:13.598 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: Scheduled grafana update... 2024-01-13T07:37:13.670 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:13 smithi039 bash[16208]: audit 2024-01-13T07:37:11.594284+0000 mgr.smithi039.fbdzkl (mgr.14116) 18 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-01-13T07:37:13.670 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:13 smithi039 bash[16208]: cephadm 2024-01-13T07:37:11.595344+0000 mgr.smithi039.fbdzkl (mgr.14116) 19 : cephadm [INF] Saving service prometheus spec with placement count:1 2024-01-13T07:37:14.116 INFO:teuthology.orchestra.run.smithi039.stderr:Deploying node-exporter service with default placement... 2024-01-13T07:37:14.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:14 smithi039 bash[16208]: cluster 2024-01-13T07:37:13.071176+0000 mgr.smithi039.fbdzkl (mgr.14116) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:37:14.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:14 smithi039 bash[16208]: audit 2024-01-13T07:37:13.596134+0000 mon.smithi039 (mon.0) 62 : audit [INF] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:37:15.476 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: Scheduled node-exporter update... 2024-01-13T07:37:15.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:15 smithi039 bash[16208]: audit 2024-01-13T07:37:13.584529+0000 mgr.smithi039.fbdzkl (mgr.14116) 21 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-01-13T07:37:15.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:15 smithi039 bash[16208]: cephadm 2024-01-13T07:37:13.586654+0000 mgr.smithi039.fbdzkl (mgr.14116) 22 : cephadm [INF] Saving service grafana spec with placement count:1 2024-01-13T07:37:16.047 INFO:teuthology.orchestra.run.smithi039.stderr:Deploying alertmanager service with default placement... 2024-01-13T07:37:16.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:16 smithi039 bash[16208]: cluster 2024-01-13T07:37:15.071536+0000 mgr.smithi039.fbdzkl (mgr.14116) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:37:16.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:16 smithi039 bash[16208]: audit 2024-01-13T07:37:15.467709+0000 mgr.smithi039.fbdzkl (mgr.14116) 24 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-01-13T07:37:16.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:16 smithi039 bash[16208]: cephadm 2024-01-13T07:37:15.469916+0000 mgr.smithi039.fbdzkl (mgr.14116) 25 : cephadm [INF] Saving service node-exporter spec with placement * 2024-01-13T07:37:16.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:16 smithi039 bash[16208]: audit 2024-01-13T07:37:15.474919+0000 mon.smithi039 (mon.0) 63 : audit [INF] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:37:17.458 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: Scheduled alertmanager update... 2024-01-13T07:37:18.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:18 smithi039 bash[16208]: cluster 2024-01-13T07:37:17.071850+0000 mgr.smithi039.fbdzkl (mgr.14116) 26 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:37:18.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:18 smithi039 bash[16208]: audit 2024-01-13T07:37:17.450453+0000 mgr.smithi039.fbdzkl (mgr.14116) 27 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-01-13T07:37:18.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:18 smithi039 bash[16208]: cephadm 2024-01-13T07:37:17.451827+0000 mgr.smithi039.fbdzkl (mgr.14116) 28 : cephadm [INF] Saving service alertmanager spec with placement count:1 2024-01-13T07:37:18.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:18 smithi039 bash[16208]: audit 2024-01-13T07:37:17.456611+0000 mon.smithi039 (mon.0) 64 : audit [INF] from='mgr.14116 172.21.15.39:0/2628133647' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:37:20.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:20 smithi039 bash[16208]: cluster 2024-01-13T07:37:19.072155+0000 mgr.smithi039.fbdzkl (mgr.14116) 29 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:37:20.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:20 smithi039 bash[16208]: audit 2024-01-13T07:37:19.686173+0000 mon.smithi039 (mon.0) 65 : audit [INF] from='client.? 172.21.15.39:0/3825792667' entity='client.admin' 2024-01-13T07:37:22.354 INFO:teuthology.orchestra.run.smithi039.stderr:Enabling the dashboard module... 2024-01-13T07:37:22.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:22 smithi039 bash[16208]: cluster 2024-01-13T07:37:21.072551+0000 mgr.smithi039.fbdzkl (mgr.14116) 30 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:37:22.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:22 smithi039 bash[16208]: audit 2024-01-13T07:37:21.814549+0000 mon.smithi039 (mon.0) 66 : audit [INF] from='client.? 172.21.15.39:0/3116803711' entity='client.admin' 2024-01-13T07:37:24.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:24 smithi039 bash[16208]: cluster 2024-01-13T07:37:23.072915+0000 mgr.smithi039.fbdzkl (mgr.14116) 31 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:37:24.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:24 smithi039 bash[16208]: audit 2024-01-13T07:37:23.866009+0000 mon.smithi039 (mon.0) 67 : audit [INF] from='client.? 172.21.15.39:0/2694965419' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-01-13T07:37:25.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:25 smithi039 bash[16208]: audit 2024-01-13T07:37:24.477441+0000 mon.smithi039 (mon.0) 68 : audit [INF] from='client.? 172.21.15.39:0/2694965419' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-01-13T07:37:25.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:25 smithi039 bash[16208]: cluster 2024-01-13T07:37:24.477583+0000 mon.smithi039 (mon.0) 69 : cluster [DBG] mgrmap e9: smithi039.fbdzkl(active, since 33s) 2024-01-13T07:37:26.646 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: { 2024-01-13T07:37:26.646 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "epoch": 9, 2024-01-13T07:37:26.646 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "available": true, 2024-01-13T07:37:26.647 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "active_name": "smithi039.fbdzkl", 2024-01-13T07:37:26.647 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "num_standby": 0 2024-01-13T07:37:26.647 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: } 2024-01-13T07:37:26.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:26 smithi039 bash[16208]: audit 2024-01-13T07:37:26.644749+0000 mon.smithi039 (mon.0) 70 : audit [DBG] from='client.? 172.21.15.39:0/3377878997' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-01-13T07:37:27.148 INFO:teuthology.orchestra.run.smithi039.stderr:Waiting for the mgr to restart... 2024-01-13T07:37:27.148 INFO:teuthology.orchestra.run.smithi039.stderr:Waiting for mgr epoch 9... 2024-01-13T07:37:31.344 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:31 smithi039 bash[16208]: cluster 2024-01-13T07:37:31.108951+0000 mon.smithi039 (mon.0) 71 : cluster [INF] Active manager daemon smithi039.fbdzkl restarted 2024-01-13T07:37:31.344 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:31 smithi039 bash[16208]: cluster 2024-01-13T07:37:31.109221+0000 mon.smithi039 (mon.0) 72 : cluster [INF] Activating manager daemon smithi039.fbdzkl 2024-01-13T07:37:31.344 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:31 smithi039 bash[16208]: cluster 2024-01-13T07:37:31.118874+0000 mon.smithi039 (mon.0) 73 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-01-13T07:37:31.344 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:31 smithi039 bash[16208]: cluster 2024-01-13T07:37:31.119142+0000 mon.smithi039 (mon.0) 74 : cluster [DBG] mgrmap e10: smithi039.fbdzkl(active, starting, since 0.0100232s) 2024-01-13T07:37:31.344 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:31 smithi039 bash[16208]: audit 2024-01-13T07:37:31.121735+0000 mon.smithi039 (mon.0) 75 : audit [DBG] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mon metadata", "id": "smithi039"}]: dispatch 2024-01-13T07:37:31.344 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:31 smithi039 bash[16208]: audit 2024-01-13T07:37:31.123826+0000 mon.smithi039 (mon.0) 76 : audit [DBG] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mgr metadata", "who": "smithi039.fbdzkl", "id": "smithi039.fbdzkl"}]: dispatch 2024-01-13T07:37:31.345 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:31 smithi039 bash[16208]: audit 2024-01-13T07:37:31.125213+0000 mon.smithi039 (mon.0) 77 : audit [DBG] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-01-13T07:37:31.345 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:31 smithi039 bash[16208]: audit 2024-01-13T07:37:31.125616+0000 mon.smithi039 (mon.0) 78 : audit [DBG] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-01-13T07:37:31.345 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:31 smithi039 bash[16208]: audit 2024-01-13T07:37:31.125994+0000 mon.smithi039 (mon.0) 79 : audit [DBG] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-01-13T07:37:31.345 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:31 smithi039 bash[16208]: cluster 2024-01-13T07:37:31.130502+0000 mon.smithi039 (mon.0) 80 : cluster [INF] Manager daemon smithi039.fbdzkl is now available 2024-01-13T07:37:32.140 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: { 2024-01-13T07:37:32.141 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "mgrmap_epoch": 11, 2024-01-13T07:37:32.141 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: "initialized": true 2024-01-13T07:37:32.141 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: } 2024-01-13T07:37:32.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:32 smithi039 bash[16208]: audit 2024-01-13T07:37:31.279135+0000 mon.smithi039 (mon.0) 81 : audit [DBG] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:37:32.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:32 smithi039 bash[16208]: audit 2024-01-13T07:37:31.282353+0000 mon.smithi039 (mon.0) 82 : audit [DBG] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:37:32.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:32 smithi039 bash[16208]: audit 2024-01-13T07:37:31.333365+0000 mon.smithi039 (mon.0) 83 : audit [INF] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi039.fbdzkl/mirror_snapshot_schedule"}]: dispatch 2024-01-13T07:37:32.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:32 smithi039 bash[16208]: audit 2024-01-13T07:37:31.339352+0000 mon.smithi039 (mon.0) 84 : audit [INF] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi039.fbdzkl/trash_purge_schedule"}]: dispatch 2024-01-13T07:37:32.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:32 smithi039 bash[16208]: cluster 2024-01-13T07:37:32.122935+0000 mon.smithi039 (mon.0) 85 : cluster [DBG] mgrmap e11: smithi039.fbdzkl(active, since 1.01381s) 2024-01-13T07:37:32.804 INFO:teuthology.orchestra.run.smithi039.stderr:mgr epoch 9 is available 2024-01-13T07:37:32.804 INFO:teuthology.orchestra.run.smithi039.stderr:Generating a dashboard self-signed certificate... 2024-01-13T07:37:33.451 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:33 smithi039 bash[16208]: audit 2024-01-13T07:37:32.122803+0000 mgr.smithi039.fbdzkl (mgr.14156) 1 : audit [DBG] from='client.14160 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-01-13T07:37:33.451 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:33 smithi039 bash[16208]: audit 2024-01-13T07:37:32.139545+0000 mgr.smithi039.fbdzkl (mgr.14156) 2 : audit [DBG] from='client.14160 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-01-13T07:37:34.195 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: Self-signed certificate created 2024-01-13T07:37:34.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:34 smithi039 bash[16208]: cluster 2024-01-13T07:37:33.175808+0000 mon.smithi039 (mon.0) 86 : cluster [DBG] mgrmap e12: smithi039.fbdzkl(active, since 2s) 2024-01-13T07:37:34.735 INFO:teuthology.orchestra.run.smithi039.stderr:Creating initial admin user... 2024-01-13T07:37:35.492 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:35 smithi039 bash[16208]: audit 2024-01-13T07:37:34.145827+0000 mgr.smithi039.fbdzkl (mgr.14156) 3 : audit [DBG] from='client.14166 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-01-13T07:37:35.492 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:35 smithi039 bash[16208]: audit 2024-01-13T07:37:34.187487+0000 mon.smithi039 (mon.0) 87 : audit [INF] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:37:35.492 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:35 smithi039 bash[16208]: audit 2024-01-13T07:37:34.194005+0000 mon.smithi039 (mon.0) 88 : audit [INF] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:37:36.407 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: {"username": "admin", "password": "$2b$12$4nMTpA3DiyDFCAaOUXe2MuEGvvloPEvcOXdqOJLz6NKkAKRtM89XG", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1705131456, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-01-13T07:37:36.917 INFO:teuthology.orchestra.run.smithi039.stderr:Fetching dashboard port number... 2024-01-13T07:37:37.695 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:37 smithi039 bash[16208]: audit 2024-01-13T07:37:36.137280+0000 mgr.smithi039.fbdzkl (mgr.14156) 4 : audit [DBG] from='client.14168 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2024-01-13T07:37:37.696 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:37 smithi039 bash[16208]: audit 2024-01-13T07:37:36.400156+0000 mon.smithi039 (mon.0) 89 : audit [INF] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:37:38.359 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: 8443 2024-01-13T07:37:38.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:38 smithi039 bash[16208]: cluster 2024-01-13T07:37:37.409596+0000 mon.smithi039 (mon.0) 90 : cluster [DBG] mgrmap e13: smithi039.fbdzkl(active, since 6s) 2024-01-13T07:37:38.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:38 smithi039 bash[16208]: audit 2024-01-13T07:37:38.073052+0000 mon.smithi039 (mon.0) 91 : audit [INF] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:37:38.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:38 smithi039 bash[16208]: audit 2024-01-13T07:37:38.358248+0000 mon.smithi039 (mon.0) 92 : audit [DBG] from='client.? 172.21.15.39:0/2155306726' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-01-13T07:37:38.906 INFO:teuthology.orchestra.run.smithi039.stderr:firewalld does not appear to be present 2024-01-13T07:37:38.906 INFO:teuthology.orchestra.run.smithi039.stderr:Not possible to open ports <[8443]>. firewalld.service is not available 2024-01-13T07:37:38.910 INFO:teuthology.orchestra.run.smithi039.stderr:Ceph Dashboard is now available at: 2024-01-13T07:37:38.910 INFO:teuthology.orchestra.run.smithi039.stderr: 2024-01-13T07:37:38.910 INFO:teuthology.orchestra.run.smithi039.stderr: URL: https://smithi039.front.sepia.ceph.com:8443/ 2024-01-13T07:37:38.910 INFO:teuthology.orchestra.run.smithi039.stderr: User: admin 2024-01-13T07:37:38.910 INFO:teuthology.orchestra.run.smithi039.stderr: Password: jnryojoasi 2024-01-13T07:37:38.910 INFO:teuthology.orchestra.run.smithi039.stderr: 2024-01-13T07:37:38.910 INFO:teuthology.orchestra.run.smithi039.stderr:Enabling autotune for osd_memory_target 2024-01-13T07:37:42.357 INFO:teuthology.orchestra.run.smithi039.stderr:/usr/bin/ceph: set mgr/dashboard/cluster/status 2024-01-13T07:37:42.834 INFO:teuthology.orchestra.run.smithi039.stderr:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-01-13T07:37:42.835 INFO:teuthology.orchestra.run.smithi039.stderr: 2024-01-13T07:37:42.835 INFO:teuthology.orchestra.run.smithi039.stderr: sudo /home/ubuntu/cephtest/cephadm shell --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-01-13T07:37:42.835 INFO:teuthology.orchestra.run.smithi039.stderr: 2024-01-13T07:37:42.835 INFO:teuthology.orchestra.run.smithi039.stderr:Or, if you are only running a single cluster on this host: 2024-01-13T07:37:42.835 INFO:teuthology.orchestra.run.smithi039.stderr: 2024-01-13T07:37:42.835 INFO:teuthology.orchestra.run.smithi039.stderr: sudo /home/ubuntu/cephtest/cephadm shell 2024-01-13T07:37:42.835 INFO:teuthology.orchestra.run.smithi039.stderr: 2024-01-13T07:37:42.835 INFO:teuthology.orchestra.run.smithi039.stderr:Please consider enabling telemetry to help improve Ceph: 2024-01-13T07:37:42.835 INFO:teuthology.orchestra.run.smithi039.stderr: 2024-01-13T07:37:42.835 INFO:teuthology.orchestra.run.smithi039.stderr: ceph telemetry on 2024-01-13T07:37:42.835 INFO:teuthology.orchestra.run.smithi039.stderr: 2024-01-13T07:37:42.835 INFO:teuthology.orchestra.run.smithi039.stderr:For more information see: 2024-01-13T07:37:42.836 INFO:teuthology.orchestra.run.smithi039.stderr: 2024-01-13T07:37:42.836 INFO:teuthology.orchestra.run.smithi039.stderr: https://docs.ceph.com/en/pacific/mgr/telemetry/ 2024-01-13T07:37:42.836 INFO:teuthology.orchestra.run.smithi039.stderr: 2024-01-13T07:37:42.836 INFO:teuthology.orchestra.run.smithi039.stderr:Bootstrap complete. 2024-01-13T07:37:42.868 INFO:tasks.cephadm:Fetching config... 2024-01-13T07:37:42.868 DEBUG:teuthology.orchestra.run.smithi039:> set -ex 2024-01-13T07:37:42.868 DEBUG:teuthology.orchestra.run.smithi039:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-01-13T07:37:42.873 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-01-13T07:37:42.874 DEBUG:teuthology.orchestra.run.smithi039:> set -ex 2024-01-13T07:37:42.874 DEBUG:teuthology.orchestra.run.smithi039:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-01-13T07:37:42.920 INFO:tasks.cephadm:Fetching mon keyring... 2024-01-13T07:37:42.920 DEBUG:teuthology.orchestra.run.smithi039:> set -ex 2024-01-13T07:37:42.920 DEBUG:teuthology.orchestra.run.smithi039:> sudo dd if=/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi039/keyring of=/dev/stdout 2024-01-13T07:37:42.976 INFO:tasks.cephadm:Fetching pub ssh key... 2024-01-13T07:37:42.976 DEBUG:teuthology.orchestra.run.smithi039:> set -ex 2024-01-13T07:37:42.976 DEBUG:teuthology.orchestra.run.smithi039:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-01-13T07:37:43.025 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-01-13T07:37:43.025 DEBUG:teuthology.orchestra.run.smithi039:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCbM+JcdQXvcY7c0s2Kjvmo47SsoH/O1e8L05GR6l0Yta2+zyPvLySXYwyxJT/wz7B+Ep/O+RUjpbqyxkctJMLpkEfkRoImqCLwG5juMeYZ9g9DosFNRQG+UIiNE1CVCFEKsXw5YuHos2j5lBTBUsh4oos2RuZraKoo3mYyhnDqKyvsGvXNLXopIzK7Cp4gHeVnRfk/orXjH49qPnhLtyJ1C7h7d2pUlkdS8SWaeQi0eY+WJsMhHVMbF083k9Le4OTjZgvne9C+Z0od23OHmMqw+dNDrvSBfym7stDbeSg2lvhU2FlMN0XbESMcTVcyp7F9gXX083I5XcOxd716hP2WQJp8bww9IltUNrJpHQDbP2n1K0OsUTmQLs/WKoVuB4otmapabo5mYRBSZB5bQzySKg69oK1QzMq0k5oINR3fudyy3VewXfBcrHCRveHiqHwtDRAyydjeFHTWtyWgEv/BgtGZdv7XyjCa0fQcYmYZ61Rfij3JzOT2HFayeUkQLCU= ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-01-13T07:37:43.087 INFO:teuthology.orchestra.run.smithi039.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCbM+JcdQXvcY7c0s2Kjvmo47SsoH/O1e8L05GR6l0Yta2+zyPvLySXYwyxJT/wz7B+Ep/O+RUjpbqyxkctJMLpkEfkRoImqCLwG5juMeYZ9g9DosFNRQG+UIiNE1CVCFEKsXw5YuHos2j5lBTBUsh4oos2RuZraKoo3mYyhnDqKyvsGvXNLXopIzK7Cp4gHeVnRfk/orXjH49qPnhLtyJ1C7h7d2pUlkdS8SWaeQi0eY+WJsMhHVMbF083k9Le4OTjZgvne9C+Z0od23OHmMqw+dNDrvSBfym7stDbeSg2lvhU2FlMN0XbESMcTVcyp7F9gXX083I5XcOxd716hP2WQJp8bww9IltUNrJpHQDbP2n1K0OsUTmQLs/WKoVuB4otmapabo5mYRBSZB5bQzySKg69oK1QzMq0k5oINR3fudyy3VewXfBcrHCRveHiqHwtDRAyydjeFHTWtyWgEv/BgtGZdv7XyjCa0fQcYmYZ61Rfij3JzOT2HFayeUkQLCU= ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715 2024-01-13T07:37:43.098 DEBUG:teuthology.orchestra.run.smithi100:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCbM+JcdQXvcY7c0s2Kjvmo47SsoH/O1e8L05GR6l0Yta2+zyPvLySXYwyxJT/wz7B+Ep/O+RUjpbqyxkctJMLpkEfkRoImqCLwG5juMeYZ9g9DosFNRQG+UIiNE1CVCFEKsXw5YuHos2j5lBTBUsh4oos2RuZraKoo3mYyhnDqKyvsGvXNLXopIzK7Cp4gHeVnRfk/orXjH49qPnhLtyJ1C7h7d2pUlkdS8SWaeQi0eY+WJsMhHVMbF083k9Le4OTjZgvne9C+Z0od23OHmMqw+dNDrvSBfym7stDbeSg2lvhU2FlMN0XbESMcTVcyp7F9gXX083I5XcOxd716hP2WQJp8bww9IltUNrJpHQDbP2n1K0OsUTmQLs/WKoVuB4otmapabo5mYRBSZB5bQzySKg69oK1QzMq0k5oINR3fudyy3VewXfBcrHCRveHiqHwtDRAyydjeFHTWtyWgEv/BgtGZdv7XyjCa0fQcYmYZ61Rfij3JzOT2HFayeUkQLCU= ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-01-13T07:37:43.120 INFO:teuthology.orchestra.run.smithi100.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCbM+JcdQXvcY7c0s2Kjvmo47SsoH/O1e8L05GR6l0Yta2+zyPvLySXYwyxJT/wz7B+Ep/O+RUjpbqyxkctJMLpkEfkRoImqCLwG5juMeYZ9g9DosFNRQG+UIiNE1CVCFEKsXw5YuHos2j5lBTBUsh4oos2RuZraKoo3mYyhnDqKyvsGvXNLXopIzK7Cp4gHeVnRfk/orXjH49qPnhLtyJ1C7h7d2pUlkdS8SWaeQi0eY+WJsMhHVMbF083k9Le4OTjZgvne9C+Z0od23OHmMqw+dNDrvSBfym7stDbeSg2lvhU2FlMN0XbESMcTVcyp7F9gXX083I5XcOxd716hP2WQJp8bww9IltUNrJpHQDbP2n1K0OsUTmQLs/WKoVuB4otmapabo5mYRBSZB5bQzySKg69oK1QzMq0k5oINR3fudyy3VewXfBcrHCRveHiqHwtDRAyydjeFHTWtyWgEv/BgtGZdv7XyjCa0fQcYmYZ61Rfij3JzOT2HFayeUkQLCU= ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715 2024-01-13T07:37:43.130 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-01-13T07:37:43.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:43 smithi039 bash[16208]: audit 2024-01-13T07:37:42.352565+0000 mon.smithi039 (mon.0) 93 : audit [INF] from='client.? 172.21.15.39:0/3495630681' entity='client.admin' 2024-01-13T07:37:48.039 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-01-13T07:37:48.039 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-01-13T07:37:48.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:48 smithi039 bash[16208]: audit 2024-01-13T07:37:47.291075+0000 mon.smithi039 (mon.0) 94 : audit [INF] from='client.? 172.21.15.39:0/2865573920' entity='client.admin' 2024-01-13T07:37:52.015 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi100 2024-01-13T07:37:52.015 DEBUG:teuthology.orchestra.run.smithi100:> set -ex 2024-01-13T07:37:52.015 DEBUG:teuthology.orchestra.run.smithi100:> dd of=/etc/ceph/ceph.conf 2024-01-13T07:37:52.022 DEBUG:teuthology.orchestra.run.smithi100:> set -ex 2024-01-13T07:37:52.022 DEBUG:teuthology.orchestra.run.smithi100:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-01-13T07:37:52.070 INFO:tasks.cephadm:Adding host smithi100 to orchestrator... 2024-01-13T07:37:52.071 DEBUG:teuthology.orchestra.run.smithi100:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph orch host add smithi100 2024-01-13T07:37:52.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:51 smithi039 bash[16208]: audit 2024-01-13T07:37:50.834066+0000 mon.smithi039 (mon.0) 95 : audit [INF] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:37:52.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:51 smithi039 bash[16208]: audit 2024-01-13T07:37:51.142572+0000 mon.smithi039 (mon.0) 96 : audit [INF] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config rm", "who": "osd/host:smithi039", "name": "osd_memory_target"}]: dispatch 2024-01-13T07:37:52.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:51 smithi039 bash[16208]: audit 2024-01-13T07:37:51.153488+0000 mon.smithi039 (mon.0) 97 : audit [INF] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:37:52.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:51 smithi039 bash[16208]: cephadm 2024-01-13T07:37:51.169629+0000 mgr.smithi039.fbdzkl (mgr.14156) 6 : cephadm [INF] Deploying daemon alertmanager.smithi039 on smithi039 2024-01-13T07:37:52.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:51 smithi039 bash[16208]: audit 2024-01-13T07:37:51.322851+0000 mgr.smithi039.fbdzkl (mgr.14156) 7 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-01-13T07:37:52.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:51 smithi039 bash[16208]: audit 2024-01-13T07:37:51.331667+0000 mon.smithi039 (mon.0) 98 : audit [INF] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:37:54.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:54 smithi039 bash[16208]: cluster 2024-01-13T07:37:53.127255+0000 mgr.smithi039.fbdzkl (mgr.14156) 8 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:37:55.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:55 smithi039 bash[16208]: cluster 2024-01-13T07:37:55.127824+0000 mgr.smithi039.fbdzkl (mgr.14156) 9 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:37:58.440 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:58 smithi039 bash[16208]: cluster 2024-01-13T07:37:57.128379+0000 mgr.smithi039.fbdzkl (mgr.14156) 10 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:37:59.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:59 smithi039 bash[16208]: audit 2024-01-13T07:37:58.481753+0000 mon.smithi039 (mon.0) 99 : audit [INF] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:37:59.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:59 smithi039 bash[16208]: audit 2024-01-13T07:37:58.484788+0000 mon.smithi039 (mon.0) 100 : audit [INF] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi039", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-01-13T07:37:59.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:59 smithi039 bash[16208]: audit 2024-01-13T07:37:58.489567+0000 mon.smithi039 (mon.0) 101 : audit [INF] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi039", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-01-13T07:37:59.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:59 smithi039 bash[16208]: audit 2024-01-13T07:37:58.490800+0000 mon.smithi039 (mon.0) 102 : audit [DBG] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:37:59.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:37:59 smithi039 bash[16208]: cephadm 2024-01-13T07:37:58.491685+0000 mgr.smithi039.fbdzkl (mgr.14156) 11 : cephadm [INF] Deploying daemon crash.smithi039 on smithi039 2024-01-13T07:38:00.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:00 smithi039 bash[16208]: cluster 2024-01-13T07:37:59.128889+0000 mgr.smithi039.fbdzkl (mgr.14156) 12 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:38:01.856 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:01 smithi039 bash[16208]: audit 2024-01-13T07:38:00.773187+0000 mon.smithi039 (mon.0) 103 : audit [INF] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:38:01.856 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:01 smithi039 bash[16208]: audit 2024-01-13T07:38:00.874042+0000 mon.smithi039 (mon.0) 104 : audit [INF] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:38:01.857 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:01 smithi039 bash[16208]: audit 2024-01-13T07:38:00.879084+0000 mon.smithi039 (mon.0) 105 : audit [INF] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:38:01.857 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:01 smithi039 bash[16208]: audit 2024-01-13T07:38:00.882389+0000 mon.smithi039 (mon.0) 106 : audit [INF] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-01-13T07:38:01.857 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:01 smithi039 bash[16208]: audit 2024-01-13T07:38:00.882979+0000 mgr.smithi039.fbdzkl (mgr.14156) 13 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-01-13T07:38:01.857 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:01 smithi039 bash[16208]: audit 2024-01-13T07:38:00.888839+0000 mon.smithi039 (mon.0) 107 : audit [INF] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:38:01.857 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:01 smithi039 bash[16208]: cephadm 2024-01-13T07:38:00.908751+0000 mgr.smithi039.fbdzkl (mgr.14156) 14 : cephadm [INF] Deploying daemon grafana.smithi039 on smithi039 2024-01-13T07:38:01.857 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:01 smithi039 bash[16208]: cluster 2024-01-13T07:38:01.129201+0000 mgr.smithi039.fbdzkl (mgr.14156) 15 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:38:01.857 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:01 smithi039 bash[16208]: audit 2024-01-13T07:38:01.326019+0000 mon.smithi039 (mon.0) 108 : audit [INF] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:38:04.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:04 smithi039 bash[16208]: cluster 2024-01-13T07:38:03.129595+0000 mgr.smithi039.fbdzkl (mgr.14156) 16 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:38:05.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:05 smithi039 bash[16208]: cluster 2024-01-13T07:38:05.129967+0000 mgr.smithi039.fbdzkl (mgr.14156) 17 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:38:08.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:08 smithi039 bash[16208]: cluster 2024-01-13T07:38:07.130383+0000 mgr.smithi039.fbdzkl (mgr.14156) 18 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:38:10.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:10 smithi039 bash[16208]: cluster 2024-01-13T07:38:09.130706+0000 mgr.smithi039.fbdzkl (mgr.14156) 19 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:38:12.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:12 smithi039 bash[16208]: cluster 2024-01-13T07:38:11.131111+0000 mgr.smithi039.fbdzkl (mgr.14156) 20 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:38:14.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:14 smithi039 bash[16208]: cluster 2024-01-13T07:38:13.131547+0000 mgr.smithi039.fbdzkl (mgr.14156) 21 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:38:15.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:15 smithi039 bash[16208]: cluster 2024-01-13T07:38:15.132072+0000 mgr.smithi039.fbdzkl (mgr.14156) 22 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:38:18.091 INFO:teuthology.orchestra.run.smithi100.stdout:Added host 'smithi100' with addr '172.21.15.100' 2024-01-13T07:38:18.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:18 smithi039 bash[16208]: cluster 2024-01-13T07:38:17.132550+0000 mgr.smithi039.fbdzkl (mgr.14156) 23 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:38:18.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:18 smithi039 bash[16208]: audit 2024-01-13T07:38:17.255765+0000 mgr.smithi039.fbdzkl (mgr.14156) 24 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi100", "target": ["mon-mgr", ""]}]: dispatch 2024-01-13T07:38:18.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:18 smithi039 bash[16208]: audit 2024-01-13T07:38:18.089036+0000 mon.smithi039 (mon.0) 109 : audit [INF] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:38:18.742 DEBUG:teuthology.orchestra.run.smithi100:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph orch host ls --format=json 2024-01-13T07:38:19.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:19 smithi039 bash[16208]: cephadm 2024-01-13T07:38:18.090013+0000 mgr.smithi039.fbdzkl (mgr.14156) 25 : cephadm [INF] Added host smithi100 2024-01-13T07:38:20.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:20 smithi039 bash[16208]: cluster 2024-01-13T07:38:19.133101+0000 mgr.smithi039.fbdzkl (mgr.14156) 26 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:38:21.370 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-01-13T07:38:21.370 INFO:teuthology.orchestra.run.smithi100.stdout:[{"addr": "172.21.15.39", "hostname": "smithi039", "labels": [], "status": ""}, {"addr": "172.21.15.100", "hostname": "smithi100", "labels": [], "status": ""}] 2024-01-13T07:38:21.913 INFO:tasks.cephadm:Setting crush tunables to default 2024-01-13T07:38:21.913 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd crush tunables default 2024-01-13T07:38:22.411 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:22 smithi039 bash[16208]: cluster 2024-01-13T07:38:21.133448+0000 mgr.smithi039.fbdzkl (mgr.14156) 27 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:38:22.411 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:22 smithi039 bash[16208]: audit 2024-01-13T07:38:21.368713+0000 mgr.smithi039.fbdzkl (mgr.14156) 28 : audit [DBG] from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-01-13T07:38:22.411 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:22 smithi039 bash[16208]: audit 2024-01-13T07:38:21.899930+0000 mon.smithi039 (mon.0) 110 : audit [INF] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:38:23.713 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:23 smithi039 bash[16208]: cephadm 2024-01-13T07:38:21.903741+0000 mgr.smithi039.fbdzkl (mgr.14156) 29 : cephadm [INF] Deploying daemon node-exporter.smithi039 on smithi039 2024-01-13T07:38:23.713 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:23 smithi039 bash[16208]: audit 2024-01-13T07:38:22.454723+0000 mon.smithi039 (mon.0) 111 : audit [INF] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:38:23.713 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:23 smithi039 bash[16208]: audit 2024-01-13T07:38:22.459110+0000 mon.smithi039 (mon.0) 112 : audit [INF] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-01-13T07:38:24.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:24 smithi039 bash[16208]: audit 2024-01-13T07:38:23.457560+0000 mon.smithi039 (mon.0) 113 : audit [INF] from='mgr.14156 172.21.15.39:0/3348921642' entity='mgr.smithi039.fbdzkl' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-01-13T07:38:24.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:24 smithi039 bash[16208]: cluster 2024-01-13T07:38:23.457637+0000 mon.smithi039 (mon.0) 114 : cluster [DBG] mgrmap e14: smithi039.fbdzkl(active, since 52s) 2024-01-13T07:38:26.902 INFO:teuthology.orchestra.run.smithi039.stderr:adjusted tunables profile to default 2024-01-13T07:38:26.934 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:26 smithi039 bash[16208]: audit 2024-01-13T07:38:26.837810+0000 mon.smithi039 (mon.0) 115 : audit [INF] from='client.? 172.21.15.39:0/2231723391' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-01-13T07:38:27.738 INFO:tasks.cephadm:Adding mon.smithi039 on smithi039 2024-01-13T07:38:27.739 INFO:tasks.cephadm:Adding mon.smithi100 on smithi100 2024-01-13T07:38:27.739 DEBUG:teuthology.orchestra.run.smithi100:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph orch apply mon '2;smithi039:172.21.15.39=smithi039;smithi100:172.21.15.100=smithi100' 2024-01-13T07:38:28.054 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:27 smithi039 bash[16208]: audit 2024-01-13T07:38:26.896682+0000 mon.smithi039 (mon.0) 116 : audit [INF] from='client.? 172.21.15.39:0/2231723391' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-01-13T07:38:28.054 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:27 smithi039 bash[16208]: cluster 2024-01-13T07:38:26.896846+0000 mon.smithi039 (mon.0) 117 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-01-13T07:38:30.938 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:30 smithi039 bash[16208]: cluster 2024-01-13T07:38:30.165412+0000 mon.smithi039 (mon.0) 118 : cluster [INF] Active manager daemon smithi039.fbdzkl restarted 2024-01-13T07:38:30.938 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:30 smithi039 bash[16208]: cluster 2024-01-13T07:38:30.165888+0000 mon.smithi039 (mon.0) 119 : cluster [INF] Activating manager daemon smithi039.fbdzkl 2024-01-13T07:38:30.938 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:30 smithi039 bash[16208]: cluster 2024-01-13T07:38:30.170505+0000 mon.smithi039 (mon.0) 120 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-01-13T07:38:30.939 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:30 smithi039 bash[16208]: cluster 2024-01-13T07:38:30.170802+0000 mon.smithi039 (mon.0) 121 : cluster [DBG] mgrmap e15: smithi039.fbdzkl(active, starting, since 0.00507821s) 2024-01-13T07:38:30.939 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:30 smithi039 bash[16208]: audit 2024-01-13T07:38:30.172985+0000 mon.smithi039 (mon.0) 122 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mon metadata", "id": "smithi039"}]: dispatch 2024-01-13T07:38:30.939 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:30 smithi039 bash[16208]: audit 2024-01-13T07:38:30.173952+0000 mon.smithi039 (mon.0) 123 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mgr metadata", "who": "smithi039.fbdzkl", "id": "smithi039.fbdzkl"}]: dispatch 2024-01-13T07:38:30.939 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:30 smithi039 bash[16208]: audit 2024-01-13T07:38:30.174717+0000 mon.smithi039 (mon.0) 124 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-01-13T07:38:30.939 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:30 smithi039 bash[16208]: audit 2024-01-13T07:38:30.175129+0000 mon.smithi039 (mon.0) 125 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-01-13T07:38:30.939 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:30 smithi039 bash[16208]: audit 2024-01-13T07:38:30.175546+0000 mon.smithi039 (mon.0) 126 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-01-13T07:38:30.939 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:30 smithi039 bash[16208]: cluster 2024-01-13T07:38:30.178622+0000 mon.smithi039 (mon.0) 127 : cluster [INF] Manager daemon smithi039.fbdzkl is now available 2024-01-13T07:38:30.939 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:30 smithi039 bash[16208]: audit 2024-01-13T07:38:30.312538+0000 mon.smithi039 (mon.0) 128 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:38:30.939 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:30 smithi039 bash[16208]: audit 2024-01-13T07:38:30.316251+0000 mon.smithi039 (mon.0) 129 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:38:30.939 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:30 smithi039 bash[16208]: audit 2024-01-13T07:38:30.336203+0000 mon.smithi039 (mon.0) 130 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:38:30.939 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:30 smithi039 bash[16208]: audit 2024-01-13T07:38:30.365407+0000 mon.smithi039 (mon.0) 131 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi039.fbdzkl/mirror_snapshot_schedule"}]: dispatch 2024-01-13T07:38:30.939 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:30 smithi039 bash[16208]: audit 2024-01-13T07:38:30.387712+0000 mon.smithi039 (mon.0) 132 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi039.fbdzkl/trash_purge_schedule"}]: dispatch 2024-01-13T07:38:31.188 INFO:teuthology.orchestra.run.smithi100.stdout:Scheduled mon update... 2024-01-13T07:38:31.801 DEBUG:teuthology.orchestra.run.smithi100:mon.smithi100> sudo journalctl -f -n 0 -u ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715@mon.smithi100.service 2024-01-13T07:38:31.803 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-01-13T07:38:31.803 DEBUG:teuthology.orchestra.run.smithi100:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph mon dump -f json 2024-01-13T07:38:32.055 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:-- Logs begin at Sun 2022-10-16 12:17:23 UTC. -- 2024-01-13T07:38:32.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:32 smithi039 bash[16208]: audit 2024-01-13T07:38:31.010945+0000 mon.smithi039 (mon.0) 133 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:38:32.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:32 smithi039 bash[16208]: cluster 2024-01-13T07:38:31.176283+0000 mon.smithi039 (mon.0) 134 : cluster [DBG] mgrmap e16: smithi039.fbdzkl(active, since 1.01056s) 2024-01-13T07:38:32.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:32 smithi039 bash[16208]: cephadm 2024-01-13T07:38:31.183084+0000 mgr.smithi039.fbdzkl (mgr.14184) 2 : cephadm [INF] Saving service mon spec with placement smithi039:172.21.15.39=smithi039;smithi100:172.21.15.100=smithi100;count:2 2024-01-13T07:38:32.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:32 smithi039 bash[16208]: audit 2024-01-13T07:38:31.187097+0000 mon.smithi039 (mon.0) 135 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:38:34.075 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:33 smithi039 bash[16208]: audit 2024-01-13T07:38:32.833874+0000 mon.smithi039 (mon.0) 136 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:38:34.075 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:33 smithi039 bash[16208]: cluster 2024-01-13T07:38:33.015965+0000 mon.smithi039 (mon.0) 137 : cluster [DBG] mgrmap e17: smithi039.fbdzkl(active, since 2s) 2024-01-13T07:38:34.536 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-01-13T07:38:34.536 INFO:teuthology.orchestra.run.smithi100.stdout:{"epoch":1,"fsid":"5dfd6106-b1e6-11ee-95ac-87774f69a715","modified":"2024-01-13T07:36:19.727235Z","created":"2024-01-13T07:36:19.727235Z","min_mon_release":16,"min_mon_release_name":"pacific","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging"],"optional":[]},"mons":[{"rank":0,"name":"smithi039","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.39:3300","nonce":0},{"type":"v1","addr":"172.21.15.39:6789","nonce":0}]},"addr":"172.21.15.39:6789/0","public_addr":"172.21.15.39:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-01-13T07:38:34.539 INFO:teuthology.orchestra.run.smithi100.stderr:dumped monmap epoch 1 2024-01-13T07:38:34.883 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:34 smithi039 bash[16208]: audit 2024-01-13T07:38:34.534921+0000 mon.smithi039 (mon.0) 138 : audit [DBG] from='client.? 172.21.15.100:0/554229268' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-01-13T07:38:36.309 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-01-13T07:38:36.309 DEBUG:teuthology.orchestra.run.smithi100:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph mon dump -f json 2024-01-13T07:38:37.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:37 smithi039 bash[16208]: audit 2024-01-13T07:38:36.403348+0000 mon.smithi039 (mon.0) 139 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:38:37.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:37 smithi039 bash[16208]: audit 2024-01-13T07:38:36.696399+0000 mon.smithi039 (mon.0) 140 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config rm", "who": "osd/host:smithi039", "name": "osd_memory_target"}]: dispatch 2024-01-13T07:38:39.587 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-01-13T07:38:39.587 INFO:teuthology.orchestra.run.smithi100.stdout:{"epoch":1,"fsid":"5dfd6106-b1e6-11ee-95ac-87774f69a715","modified":"2024-01-13T07:36:19.727235Z","created":"2024-01-13T07:36:19.727235Z","min_mon_release":16,"min_mon_release_name":"pacific","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging"],"optional":[]},"mons":[{"rank":0,"name":"smithi039","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.39:3300","nonce":0},{"type":"v1","addr":"172.21.15.39:6789","nonce":0}]},"addr":"172.21.15.39:6789/0","public_addr":"172.21.15.39:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-01-13T07:38:39.591 INFO:teuthology.orchestra.run.smithi100.stderr:dumped monmap epoch 1 2024-01-13T07:38:40.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:40 smithi039 bash[16208]: audit 2024-01-13T07:38:39.363012+0000 mon.smithi039 (mon.0) 141 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:38:40.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:40 smithi039 bash[16208]: audit 2024-01-13T07:38:39.586442+0000 mon.smithi039 (mon.0) 142 : audit [DBG] from='client.? 172.21.15.100:0/1790139007' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-01-13T07:38:40.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:40 smithi039 bash[16208]: audit 2024-01-13T07:38:39.689385+0000 mon.smithi039 (mon.0) 143 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:38:40.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:40 smithi039 bash[16208]: audit 2024-01-13T07:38:39.691028+0000 mon.smithi039 (mon.0) 144 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config rm", "who": "osd/host:smithi100", "name": "osd_memory_target"}]: dispatch 2024-01-13T07:38:40.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:40 smithi039 bash[16208]: audit 2024-01-13T07:38:39.693025+0000 mon.smithi039 (mon.0) 145 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:38:40.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:40 smithi039 bash[16208]: audit 2024-01-13T07:38:39.694523+0000 mon.smithi039 (mon.0) 146 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-13T07:38:40.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:40 smithi039 bash[16208]: audit 2024-01-13T07:38:39.745470+0000 mon.smithi039 (mon.0) 147 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:38:40.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:40 smithi039 bash[16208]: audit 2024-01-13T07:38:39.763699+0000 mon.smithi039 (mon.0) 148 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:38:40.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:40 smithi039 bash[16208]: audit 2024-01-13T07:38:39.769363+0000 mon.smithi039 (mon.0) 149 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:38:40.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:40 smithi039 bash[16208]: audit 2024-01-13T07:38:39.773458+0000 mon.smithi039 (mon.0) 150 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi100", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-01-13T07:38:40.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:40 smithi039 bash[16208]: audit 2024-01-13T07:38:39.777765+0000 mon.smithi039 (mon.0) 151 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi100", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-01-13T07:38:40.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:40 smithi039 bash[16208]: audit 2024-01-13T07:38:39.779419+0000 mon.smithi039 (mon.0) 152 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:38:41.317 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-01-13T07:38:41.318 DEBUG:teuthology.orchestra.run.smithi100:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph mon dump -f json 2024-01-13T07:38:41.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:41 smithi039 bash[16208]: cephadm 2024-01-13T07:38:39.697300+0000 mgr.smithi039.fbdzkl (mgr.14184) 3 : cephadm [INF] Updating smithi039:/etc/ceph/ceph.conf 2024-01-13T07:38:41.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:41 smithi039 bash[16208]: cephadm 2024-01-13T07:38:39.697868+0000 mgr.smithi039.fbdzkl (mgr.14184) 4 : cephadm [INF] Updating smithi100:/etc/ceph/ceph.conf 2024-01-13T07:38:41.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:41 smithi039 bash[16208]: cephadm 2024-01-13T07:38:39.713369+0000 mgr.smithi039.fbdzkl (mgr.14184) 5 : cephadm [INF] Updating smithi039:/etc/ceph/ceph.client.admin.keyring 2024-01-13T07:38:41.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:41 smithi039 bash[16208]: cephadm 2024-01-13T07:38:39.724770+0000 mgr.smithi039.fbdzkl (mgr.14184) 6 : cephadm [INF] Updating smithi100:/etc/ceph/ceph.client.admin.keyring 2024-01-13T07:38:41.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:41 smithi039 bash[16208]: cephadm 2024-01-13T07:38:39.780908+0000 mgr.smithi039.fbdzkl (mgr.14184) 7 : cephadm [INF] Deploying daemon crash.smithi100 on smithi100 2024-01-13T07:38:43.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:43 smithi039 bash[16208]: audit 2024-01-13T07:38:42.270540+0000 mon.smithi039 (mon.0) 153 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:38:43.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:43 smithi039 bash[16208]: audit 2024-01-13T07:38:42.275818+0000 mon.smithi039 (mon.0) 154 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi100.mvjdpm", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-01-13T07:38:43.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:43 smithi039 bash[16208]: audit 2024-01-13T07:38:42.280625+0000 mon.smithi039 (mon.0) 155 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi100.mvjdpm", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-01-13T07:38:43.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:43 smithi039 bash[16208]: audit 2024-01-13T07:38:42.282306+0000 mon.smithi039 (mon.0) 156 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mgr services"}]: dispatch 2024-01-13T07:38:43.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:43 smithi039 bash[16208]: audit 2024-01-13T07:38:42.284168+0000 mon.smithi039 (mon.0) 157 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:38:43.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:43 smithi039 bash[16208]: cephadm 2024-01-13T07:38:42.285786+0000 mgr.smithi039.fbdzkl (mgr.14184) 8 : cephadm [INF] Deploying daemon mgr.smithi100.mvjdpm on smithi100 2024-01-13T07:38:45.573 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-01-13T07:38:45.573 INFO:teuthology.orchestra.run.smithi100.stdout:{"epoch":1,"fsid":"5dfd6106-b1e6-11ee-95ac-87774f69a715","modified":"2024-01-13T07:36:19.727235Z","created":"2024-01-13T07:36:19.727235Z","min_mon_release":16,"min_mon_release_name":"pacific","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging"],"optional":[]},"mons":[{"rank":0,"name":"smithi039","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.39:3300","nonce":0},{"type":"v1","addr":"172.21.15.39:6789","nonce":0}]},"addr":"172.21.15.39:6789/0","public_addr":"172.21.15.39:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-01-13T07:38:45.576 INFO:teuthology.orchestra.run.smithi100.stderr:dumped monmap epoch 1 2024-01-13T07:38:46.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:46 smithi039 bash[16208]: audit 2024-01-13T07:38:45.310606+0000 mon.smithi039 (mon.0) 158 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:38:46.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:46 smithi039 bash[16208]: audit 2024-01-13T07:38:45.315360+0000 mon.smithi039 (mon.0) 159 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-01-13T07:38:46.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:46 smithi039 bash[16208]: audit 2024-01-13T07:38:45.316775+0000 mon.smithi039 (mon.0) 160 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:38:46.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:46 smithi039 bash[16208]: cephadm 2024-01-13T07:38:45.318107+0000 mgr.smithi039.fbdzkl (mgr.14184) 9 : cephadm [INF] Deploying daemon mon.smithi100 on smithi100 2024-01-13T07:38:46.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:46 smithi039 bash[16208]: audit 2024-01-13T07:38:45.341323+0000 mon.smithi039 (mon.0) 161 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:38:46.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:46 smithi039 bash[16208]: audit 2024-01-13T07:38:45.572444+0000 mon.smithi039 (mon.0) 162 : audit [DBG] from='client.? 172.21.15.100:0/3978890167' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-01-13T07:38:47.458 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-01-13T07:38:47.458 DEBUG:teuthology.orchestra.run.smithi100:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph mon dump -f json 2024-01-13T07:38:50.152 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:49 smithi100 systemd[1]: Started Ceph mon.smithi100 for 5dfd6106-b1e6-11ee-95ac-87774f69a715. 2024-01-13T07:38:51.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:51 smithi039 bash[16208]: audit 2024-01-13T07:38:50.024914+0000 mon.smithi039 (mon.0) 163 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:38:51.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:51 smithi039 bash[16208]: cephadm 2024-01-13T07:38:50.028580+0000 mgr.smithi039.fbdzkl (mgr.14184) 10 : cephadm [INF] Deploying daemon node-exporter.smithi100 on smithi100 2024-01-13T07:38:51.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:51 smithi039 bash[16208]: cluster 2024-01-13T07:38:50.176486+0000 mgr.smithi039.fbdzkl (mgr.14184) 11 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:38:51.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:51 smithi039 bash[16208]: audit 2024-01-13T07:38:50.352609+0000 mon.smithi039 (mon.0) 164 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:38:51.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:51 smithi039 bash[16208]: audit 2024-01-13T07:38:50.617890+0000 mon.smithi039 (mon.0) 165 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:38:52.123 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.018+0000 7ff806a44880 0 set uid:gid to 167:167 (ceph:ceph) 2024-01-13T07:38:52.123 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.018+0000 7ff806a44880 0 ceph version 16.2.14-456-g445562ab (445562ab4bc3ddfb386936119050695810860bcb) pacific (stable), process ceph-mon, pid 8 2024-01-13T07:38:52.123 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.018+0000 7ff806a44880 0 pidfile_write: ignore empty --pid-file 2024-01-13T07:38:52.123 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.022+0000 7ff806a44880 0 load: jerasure load: lrc load: isa 2024-01-13T07:38:52.123 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.022+0000 7ff806a44880 4 rocksdb: RocksDB version: 6.8.1 2024-01-13T07:38:52.123 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.022+0000 7ff806a44880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-01-13T07:38:52.123 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.022+0000 7ff806a44880 4 rocksdb: Compile date Jan 12 2024 2024-01-13T07:38:52.123 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.022+0000 7ff806a44880 4 rocksdb: DB SUMMARY 2024-01-13T07:38:52.124 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: CURRENT file: CURRENT 2024-01-13T07:38:52.124 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: IDENTITY file: IDENTITY 2024-01-13T07:38:52.124 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: MANIFEST file: MANIFEST-000001 size: 13 Bytes 2024-01-13T07:38:52.124 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi100/store.db dir, Total Num: 0, files: 2024-01-13T07:38:52.124 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi100/store.db: 000003.log size: 511 ; 2024-01-13T07:38:52.124 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.error_if_exists: 0 2024-01-13T07:38:52.124 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.create_if_missing: 0 2024-01-13T07:38:52.124 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.paranoid_checks: 1 2024-01-13T07:38:52.124 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.env: 0x555b27a16080 2024-01-13T07:38:52.124 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.fs: Posix File System 2024-01-13T07:38:52.124 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.info_log: 0x555b28992520 2024-01-13T07:38:52.124 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.max_file_opening_threads: 16 2024-01-13T07:38:52.125 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.statistics: (nil) 2024-01-13T07:38:52.125 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.use_fsync: 0 2024-01-13T07:38:52.125 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.max_log_file_size: 0 2024-01-13T07:38:52.125 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-01-13T07:38:52.125 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-01-13T07:38:52.125 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.keep_log_file_num: 1000 2024-01-13T07:38:52.125 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.recycle_log_file_num: 0 2024-01-13T07:38:52.126 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.allow_fallocate: 1 2024-01-13T07:38:52.127 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.allow_mmap_reads: 0 2024-01-13T07:38:52.127 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.allow_mmap_writes: 0 2024-01-13T07:38:52.127 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.use_direct_reads: 0 2024-01-13T07:38:52.127 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-01-13T07:38:52.127 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.create_missing_column_families: 0 2024-01-13T07:38:52.127 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.db_log_dir: 2024-01-13T07:38:52.127 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi100/store.db 2024-01-13T07:38:52.127 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-01-13T07:38:52.127 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.max_subcompactions: 1 2024-01-13T07:38:52.127 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.max_background_flushes: -1 2024-01-13T07:38:52.127 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-01-13T07:38:52.127 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-01-13T07:38:52.127 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-01-13T07:38:52.127 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-01-13T07:38:52.128 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-01-13T07:38:52.128 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.advise_random_on_open: 1 2024-01-13T07:38:52.128 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.db_write_buffer_size: 0 2024-01-13T07:38:52.128 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.write_buffer_manager: 0x555b295e0480 2024-01-13T07:38:52.128 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-01-13T07:38:52.128 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-01-13T07:38:52.128 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-01-13T07:38:52.128 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-01-13T07:38:52.128 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.rate_limiter: (nil) 2024-01-13T07:38:52.128 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-01-13T07:38:52.128 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.wal_recovery_mode: 2 2024-01-13T07:38:52.128 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.enable_thread_tracking: 0 2024-01-13T07:38:52.128 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.enable_pipelined_write: 0 2024-01-13T07:38:52.128 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.unordered_write: 0 2024-01-13T07:38:52.129 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-01-13T07:38:52.129 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-01-13T07:38:52.129 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-01-13T07:38:52.129 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-01-13T07:38:52.129 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.row_cache: None 2024-01-13T07:38:52.129 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.wal_filter: None 2024-01-13T07:38:52.129 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-01-13T07:38:52.129 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.allow_ingest_behind: 0 2024-01-13T07:38:52.129 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.preserve_deletes: 0 2024-01-13T07:38:52.129 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.two_write_queues: 0 2024-01-13T07:38:52.129 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.manual_wal_flush: 0 2024-01-13T07:38:52.129 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.atomic_flush: 0 2024-01-13T07:38:52.129 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-01-13T07:38:52.130 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-01-13T07:38:52.130 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-01-13T07:38:52.130 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.log_readahead_size: 0 2024-01-13T07:38:52.130 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-01-13T07:38:52.130 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.max_background_jobs: 2 2024-01-13T07:38:52.130 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.max_background_compactions: -1 2024-01-13T07:38:52.130 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-01-13T07:38:52.130 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-01-13T07:38:52.130 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-01-13T07:38:52.130 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.max_total_wal_size: 0 2024-01-13T07:38:52.130 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-01-13T07:38:52.130 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-01-13T07:38:52.130 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-01-13T07:38:52.130 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-01-13T07:38:52.131 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.max_open_files: -1 2024-01-13T07:38:52.131 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.bytes_per_sync: 0 2024-01-13T07:38:52.131 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-01-13T07:38:52.131 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-01-13T07:38:52.131 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.compaction_readahead_size: 0 2024-01-13T07:38:52.131 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Compression algorithms supported: 2024-01-13T07:38:52.131 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-01-13T07:38:52.131 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: kZSTD supported: 0 2024-01-13T07:38:52.131 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: kXpressCompression supported: 0 2024-01-13T07:38:52.131 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: kLZ4HCCompression supported: 1 2024-01-13T07:38:52.131 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: kLZ4Compression supported: 1 2024-01-13T07:38:52.131 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: kBZip2Compression supported: 0 2024-01-13T07:38:52.131 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: kZlibCompression supported: 1 2024-01-13T07:38:52.131 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: kSnappyCompression supported: 1 2024-01-13T07:38:52.131 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-01-13T07:38:52.132 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi100/store.db/MANIFEST-000001 2024-01-13T07:38:52.132 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-01-13T07:38:52.132 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-01-13T07:38:52.132 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.merge_operator: 2024-01-13T07:38:52.132 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.compaction_filter: None 2024-01-13T07:38:52.132 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.compaction_filter_factory: None 2024-01-13T07:38:52.132 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-01-13T07:38:52.132 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-01-13T07:38:52.132 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x555b28935d28) 2024-01-13T07:38:52.132 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: cache_index_and_filter_blocks: 1 2024-01-13T07:38:52.132 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: cache_index_and_filter_blocks_with_high_priority: 0 2024-01-13T07:38:52.132 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-01-13T07:38:52.132 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: pin_top_level_index_and_filter: 1 2024-01-13T07:38:52.132 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: index_type: 0 2024-01-13T07:38:52.132 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: data_block_index_type: 0 2024-01-13T07:38:52.133 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: index_shortening: 1 2024-01-13T07:38:52.133 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: data_block_hash_table_util_ratio: 0.750000 2024-01-13T07:38:52.133 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: hash_index_allow_collision: 1 2024-01-13T07:38:52.133 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: checksum: 1 2024-01-13T07:38:52.133 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: no_block_cache: 0 2024-01-13T07:38:52.133 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: block_cache: 0x555b2896cf10 2024-01-13T07:38:52.133 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: block_cache_name: BinnedLRUCache 2024-01-13T07:38:52.133 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: block_cache_options: 2024-01-13T07:38:52.133 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: capacity : 536870912 2024-01-13T07:38:52.133 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: num_shard_bits : 4 2024-01-13T07:38:52.133 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: strict_capacity_limit : 0 2024-01-13T07:38:52.133 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: high_pri_pool_ratio: 0.000 2024-01-13T07:38:52.134 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: block_cache_compressed: (nil) 2024-01-13T07:38:52.134 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: persistent_cache: (nil) 2024-01-13T07:38:52.134 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: block_size: 4096 2024-01-13T07:38:52.134 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: block_size_deviation: 10 2024-01-13T07:38:52.134 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: block_restart_interval: 16 2024-01-13T07:38:52.134 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: index_block_restart_interval: 1 2024-01-13T07:38:52.134 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: metadata_block_size: 4096 2024-01-13T07:38:52.134 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: partition_filters: 0 2024-01-13T07:38:52.134 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: use_delta_encoding: 1 2024-01-13T07:38:52.134 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: filter_policy: rocksdb.BuiltinBloomFilter 2024-01-13T07:38:52.134 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: whole_key_filtering: 1 2024-01-13T07:38:52.134 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: verify_compression: 0 2024-01-13T07:38:52.134 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: read_amp_bytes_per_bit: 0 2024-01-13T07:38:52.134 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: format_version: 2 2024-01-13T07:38:52.134 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: enable_index_compression: 1 2024-01-13T07:38:52.135 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: block_align: 0 2024-01-13T07:38:52.135 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.write_buffer_size: 33554432 2024-01-13T07:38:52.135 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.max_write_buffer_number: 2 2024-01-13T07:38:52.135 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.compression: NoCompression 2024-01-13T07:38:52.135 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.bottommost_compression: Disabled 2024-01-13T07:38:52.135 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.prefix_extractor: nullptr 2024-01-13T07:38:52.135 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-01-13T07:38:52.135 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.num_levels: 7 2024-01-13T07:38:52.135 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-01-13T07:38:52.135 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-01-13T07:38:52.135 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-01-13T07:38:52.135 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-01-13T07:38:52.135 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-01-13T07:38:52.135 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-01-13T07:38:52.135 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-01-13T07:38:52.135 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-01-13T07:38:52.136 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-01-13T07:38:52.136 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-01-13T07:38:52.136 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.compression_opts.level: 32767 2024-01-13T07:38:52.136 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.compression_opts.strategy: 0 2024-01-13T07:38:52.136 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-01-13T07:38:52.136 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-01-13T07:38:52.136 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.compression_opts.enabled: false 2024-01-13T07:38:52.136 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-01-13T07:38:52.136 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-01-13T07:38:52.136 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-01-13T07:38:52.136 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.target_file_size_base: 67108864 2024-01-13T07:38:52.136 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-01-13T07:38:52.136 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-01-13T07:38:52.136 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-01-13T07:38:52.137 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-01-13T07:38:52.137 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-01-13T07:38:52.137 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-01-13T07:38:52.137 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-01-13T07:38:52.137 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-01-13T07:38:52.137 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-01-13T07:38:52.137 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-01-13T07:38:52.137 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-01-13T07:38:52.137 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-01-13T07:38:52.137 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-01-13T07:38:52.137 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.arena_block_size: 4194304 2024-01-13T07:38:52.137 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-01-13T07:38:52.137 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-01-13T07:38:52.137 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-01-13T07:38:52.137 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.disable_auto_compactions: 0 2024-01-13T07:38:52.137 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-01-13T07:38:52.138 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-01-13T07:38:52.138 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-01-13T07:38:52.138 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-01-13T07:38:52.138 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-01-13T07:38:52.138 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-01-13T07:38:52.138 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-01-13T07:38:52.138 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-01-13T07:38:52.138 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-01-13T07:38:52.138 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-01-13T07:38:52.138 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.table_properties_collectors: 2024-01-13T07:38:52.138 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.inplace_update_support: 0 2024-01-13T07:38:52.138 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-01-13T07:38:52.138 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-01-13T07:38:52.138 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-01-13T07:38:52.138 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-01-13T07:38:52.138 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.bloom_locality: 0 2024-01-13T07:38:52.138 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.max_successive_merges: 0 2024-01-13T07:38:52.139 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-01-13T07:38:52.139 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.paranoid_file_checks: 0 2024-01-13T07:38:52.139 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.force_consistency_checks: 0 2024-01-13T07:38:52.139 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.report_bg_io_stats: 0 2024-01-13T07:38:52.139 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.ttl: 2592000 2024-01-13T07:38:52.139 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-01-13T07:38:52.139 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi100/store.db/MANIFEST-000001 succeeded,manifest_file_number is 1, next_file_number is 3, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-01-13T07:38:52.139 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 0 2024-01-13T07:38:52.139 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1705131532030392, "job": 1, "event": "recovery_started", "log_files": [3]} 2024-01-13T07:38:52.139 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: [db_impl/db_impl_open.cc:760] Recovering log #3 mode 2 2024-01-13T07:38:52.139 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 3 rocksdb: [le/block_based/filter_policy.cc:584] Using legacy Bloom filter with high (20) bits/key. Dramatic filter space and/or accuracy improvement is available with format_version>=5. 2024-01-13T07:38:52.139 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1705131532030992, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 4, "file_size": 1437, "table_properties": {"data_size": 523, "index_size": 40, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 0, "index_value_is_delta_encoded": 0, "filter_size": 69, "raw_key_size": 115, "raw_average_key_size": 23, "raw_value_size": 401, "raw_average_value_size": 80, "num_data_blocks": 1, "num_entries": 5, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; ", "creation_time": 1705131532, "oldest_key_time": 3, "file_creation_time": 0}} 2024-01-13T07:38:52.139 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: [version_set.cc:3826] Creating manifest 5 2024-01-13T07:38:52.140 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1705131532031578, "job": 1, "event": "recovery_finished"} 2024-01-13T07:38:52.140 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 4 rocksdb: DB pointer 0x555b28a35800 2024-01-13T07:38:52.140 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff7ed838700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-01-13T07:38:52.140 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 0 mon.smithi100 does not exist in monmap, will attempt to join an existing cluster 2024-01-13T07:38:52.140 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff806a44880 0 using public_addr v2:172.21.15.100:0/0 -> [v2:172.21.15.100:3300/0,v1:172.21.15.100:6789/0] 2024-01-13T07:38:52.140 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.026+0000 7ff7ed838700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-01-13T07:38:52.140 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: ** DB Stats ** 2024-01-13T07:38:52.140 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: Uptime(secs): 0.0 total, 0.0 interval 2024-01-13T07:38:52.140 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-01-13T07:38:52.140 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-01-13T07:38:52.140 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-01-13T07:38:52.140 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-01-13T07:38:52.140 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-01-13T07:38:52.140 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-01-13T07:38:52.141 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: ** Compaction Stats [default] ** 2024-01-13T07:38:52.141 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-01-13T07:38:52.141 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-13T07:38:52.141 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: L0 1/0 1.40 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.5 0.00 0.00 1 0.001 0 0 2024-01-13T07:38:52.141 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: Sum 1/0 1.40 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.5 0.00 0.00 1 0.001 0 0 2024-01-13T07:38:52.141 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.5 0.00 0.00 1 0.001 0 0 2024-01-13T07:38:52.141 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: ** Compaction Stats [default] ** 2024-01-13T07:38:52.141 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-01-13T07:38:52.141 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-13T07:38:52.141 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.5 0.00 0.00 1 0.001 0 0 2024-01-13T07:38:52.141 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: Uptime(secs): 0.0 total, 0.0 interval 2024-01-13T07:38:52.141 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: Flush(GB): cumulative 0.000, interval 0.000 2024-01-13T07:38:52.141 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: AddFile(GB): cumulative 0.000, interval 0.000 2024-01-13T07:38:52.141 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: AddFile(Total Files): cumulative 0, interval 0 2024-01-13T07:38:52.141 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: AddFile(L0 Files): cumulative 0, interval 0 2024-01-13T07:38:52.142 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: AddFile(Keys): cumulative 0, interval 0 2024-01-13T07:38:52.142 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: Cumulative compaction: 0.00 GB write, 0.45 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-13T07:38:52.142 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: Interval compaction: 0.00 GB write, 0.45 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-13T07:38:52.142 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-01-13T07:38:52.142 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: ** File Read Latency Histogram By Level [default] ** 2024-01-13T07:38:52.142 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: ** Compaction Stats [default] ** 2024-01-13T07:38:52.142 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-01-13T07:38:52.142 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-13T07:38:52.142 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: L0 1/0 1.40 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.5 0.00 0.00 1 0.001 0 0 2024-01-13T07:38:52.143 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: Sum 1/0 1.40 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.5 0.00 0.00 1 0.001 0 0 2024-01-13T07:38:52.143 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 2024-01-13T07:38:52.143 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: ** Compaction Stats [default] ** 2024-01-13T07:38:52.143 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop 2024-01-13T07:38:52.143 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-01-13T07:38:52.143 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.5 0.00 0.00 1 0.001 0 0 2024-01-13T07:38:52.143 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: Uptime(secs): 0.0 total, 0.0 interval 2024-01-13T07:38:52.143 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: Flush(GB): cumulative 0.000, interval 0.000 2024-01-13T07:38:52.143 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: AddFile(GB): cumulative 0.000, interval 0.000 2024-01-13T07:38:52.143 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: AddFile(Total Files): cumulative 0, interval 0 2024-01-13T07:38:52.143 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: AddFile(L0 Files): cumulative 0, interval 0 2024-01-13T07:38:52.143 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: AddFile(Keys): cumulative 0, interval 0 2024-01-13T07:38:52.143 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: Cumulative compaction: 0.00 GB write, 0.45 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-13T07:38:52.143 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-01-13T07:38:52.144 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-01-13T07:38:52.144 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: ** File Read Latency Histogram By Level [default] ** 2024-01-13T07:38:52.144 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.030+0000 7ff806a44880 0 starting mon.smithi100 rank -1 at public addrs [v2:172.21.15.100:3300/0,v1:172.21.15.100:6789/0] at bind addrs [v2:172.21.15.100:3300/0,v1:172.21.15.100:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi100 fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 2024-01-13T07:38:52.144 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.030+0000 7ff806a44880 1 mon.smithi100@-1(???) e0 preinit fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 2024-01-13T07:38:52.144 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.070+0000 7ff7f003d700 0 mon.smithi100@-1(synchronizing).mds e1 new map 2024-01-13T07:38:52.144 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.070+0000 7ff7f003d700 0 mon.smithi100@-1(synchronizing).mds e1 print_map 2024-01-13T07:38:52.144 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: e1 2024-01-13T07:38:52.144 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: enable_multiple, ever_enabled_multiple: 1,1 2024-01-13T07:38:52.144 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2} 2024-01-13T07:38:52.144 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: legacy client fscid: -1 2024-01-13T07:38:52.144 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: 2024-01-13T07:38:52.144 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: No filesystems configured 2024-01-13T07:38:52.144 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.070+0000 7ff7f003d700 1 mon.smithi100@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-01-13T07:38:52.144 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.070+0000 7ff7f003d700 1 mon.smithi100@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-01-13T07:38:52.144 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.070+0000 7ff7f003d700 1 mon.smithi100@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-01-13T07:38:52.145 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.070+0000 7ff7f003d700 1 mon.smithi100@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-01-13T07:38:52.145 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.070+0000 7ff7f003d700 1 mon.smithi100@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-01-13T07:38:52.145 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.070+0000 7ff7f003d700 1 mon.smithi100@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-01-13T07:38:52.145 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.070+0000 7ff7f003d700 1 mon.smithi100@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2024-01-13T07:38:52.145 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.070+0000 7ff7f003d700 0 mon.smithi100@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2024-01-13T07:38:52.145 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.070+0000 7ff7f003d700 0 mon.smithi100@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-01-13T07:38:52.145 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: cephadm 2024-01-13T07:38:50.641182+0000 mgr.smithi039.fbdzkl (mgr.14184) 12 : cephadm [INF] Deploying daemon prometheus.smithi100 on smithi100 2024-01-13T07:38:52.145 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.070+0000 7ff7f003d700 1 mon.smithi100@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-01-13T07:38:52.145 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:52 smithi100 bash[20091]: debug 2024-01-13T07:38:52.074+0000 7ff7f003d700 10 mon.smithi100@-1(synchronizing) e1 handle_conf_change mon_allow_pool_delete 2024-01-13T07:38:52.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:52 smithi039 bash[16208]: cephadm 2024-01-13T07:38:50.641182+0000 mgr.smithi039.fbdzkl (mgr.14184) 12 : cephadm [INF] Deploying daemon prometheus.smithi100 on smithi100 2024-01-13T07:38:57.148 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-01-13T07:38:57.148 INFO:teuthology.orchestra.run.smithi100.stdout:{"epoch":2,"fsid":"5dfd6106-b1e6-11ee-95ac-87774f69a715","modified":"2024-01-13T07:38:52.081863Z","created":"2024-01-13T07:36:19.727235Z","min_mon_release":16,"min_mon_release_name":"pacific","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging"],"optional":[]},"mons":[{"rank":0,"name":"smithi039","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.39:3300","nonce":0},{"type":"v1","addr":"172.21.15.39:6789","nonce":0}]},"addr":"172.21.15.39:6789/0","public_addr":"172.21.15.39:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi100","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.100:3300","nonce":0},{"type":"v1","addr":"172.21.15.100:6789","nonce":0}]},"addr":"172.21.15.100:6789/0","public_addr":"172.21.15.100:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-01-13T07:38:57.153 INFO:teuthology.orchestra.run.smithi100.stderr:dumped monmap epoch 2 2024-01-13T07:38:57.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:57 smithi039 bash[16208]: audit 2024-01-13T07:38:52.087471+0000 mon.smithi039 (mon.0) 167 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mon metadata", "id": "smithi039"}]: dispatch 2024-01-13T07:38:57.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:57 smithi039 bash[16208]: cluster 2024-01-13T07:38:52.087986+0000 mon.smithi039 (mon.0) 168 : cluster [INF] mon.smithi039 calling monitor election 2024-01-13T07:38:57.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:57 smithi039 bash[16208]: audit 2024-01-13T07:38:52.108649+0000 mon.smithi039 (mon.0) 169 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mon metadata", "id": "smithi100"}]: dispatch 2024-01-13T07:38:57.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:57 smithi039 bash[16208]: cluster 2024-01-13T07:38:52.176908+0000 mgr.smithi039.fbdzkl (mgr.14184) 13 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:38:57.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:57 smithi039 bash[16208]: audit 2024-01-13T07:38:52.469528+0000 mon.smithi039 (mon.0) 170 : audit [DBG] from='client.? 172.21.15.100:0/819516060' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-01-13T07:38:57.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:57 smithi039 bash[16208]: audit 2024-01-13T07:38:53.080614+0000 mon.smithi039 (mon.0) 171 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mon metadata", "id": "smithi100"}]: dispatch 2024-01-13T07:38:57.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:57 smithi039 bash[16208]: audit 2024-01-13T07:38:53.818895+0000 mon.smithi039 (mon.0) 172 : audit [DBG] from='mgr.? 172.21.15.100:0/845955364' entity='mgr.smithi100.mvjdpm' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi100.mvjdpm/crt"}]: dispatch 2024-01-13T07:38:57.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:57 smithi039 bash[16208]: audit 2024-01-13T07:38:54.080977+0000 mon.smithi039 (mon.0) 173 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mon metadata", "id": "smithi100"}]: dispatch 2024-01-13T07:38:57.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:57 smithi039 bash[16208]: cluster 2024-01-13T07:38:54.083959+0000 mon.smithi100 (mon.1) 1 : cluster [INF] mon.smithi100 calling monitor election 2024-01-13T07:38:57.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:57 smithi039 bash[16208]: cluster 2024-01-13T07:38:54.177366+0000 mgr.smithi039.fbdzkl (mgr.14184) 14 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:38:57.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:57 smithi039 bash[16208]: audit 2024-01-13T07:38:55.081118+0000 mon.smithi039 (mon.0) 174 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mon metadata", "id": "smithi100"}]: dispatch 2024-01-13T07:38:57.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:57 smithi039 bash[16208]: audit 2024-01-13T07:38:56.081104+0000 mon.smithi039 (mon.0) 175 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mon metadata", "id": "smithi100"}]: dispatch 2024-01-13T07:38:57.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:57 smithi039 bash[16208]: cluster 2024-01-13T07:38:56.177783+0000 mgr.smithi039.fbdzkl (mgr.14184) 15 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:38:57.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:57 smithi039 bash[16208]: audit 2024-01-13T07:38:57.081421+0000 mon.smithi039 (mon.0) 176 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mon metadata", "id": "smithi100"}]: dispatch 2024-01-13T07:38:57.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:57 smithi039 bash[16208]: cluster 2024-01-13T07:38:57.134987+0000 mon.smithi039 (mon.0) 177 : cluster [INF] mon.smithi039 is new leader, mons smithi039,smithi100 in quorum (ranks 0,1) 2024-01-13T07:38:57.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:57 smithi039 bash[16208]: cluster 2024-01-13T07:38:57.144197+0000 mon.smithi039 (mon.0) 178 : cluster [DBG] monmap e2: 2 mons at {smithi039=[v2:172.21.15.39:3300/0,v1:172.21.15.39:6789/0],smithi100=[v2:172.21.15.100:3300/0,v1:172.21.15.100:6789/0]} removed_ranks: {} 2024-01-13T07:38:57.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:57 smithi039 bash[16208]: cluster 2024-01-13T07:38:57.145121+0000 mon.smithi039 (mon.0) 179 : cluster [DBG] fsmap 2024-01-13T07:38:57.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:57 smithi039 bash[16208]: cluster 2024-01-13T07:38:57.145174+0000 mon.smithi039 (mon.0) 180 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-01-13T07:38:57.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:57 smithi039 bash[16208]: cluster 2024-01-13T07:38:57.145506+0000 mon.smithi039 (mon.0) 181 : cluster [DBG] mgrmap e17: smithi039.fbdzkl(active, since 26s) 2024-01-13T07:38:57.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:57 smithi039 bash[16208]: cluster 2024-01-13T07:38:57.147508+0000 mon.smithi039 (mon.0) 182 : cluster [DBG] Standby manager daemon smithi100.mvjdpm started 2024-01-13T07:38:57.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:57 smithi039 bash[16208]: audit 2024-01-13T07:38:57.150446+0000 mon.smithi039 (mon.0) 183 : audit [DBG] from='mgr.? 172.21.15.100:0/845955364' entity='mgr.smithi100.mvjdpm' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-01-13T07:38:57.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:57 smithi039 bash[16208]: cluster 2024-01-13T07:38:57.154474+0000 mon.smithi039 (mon.0) 184 : cluster [INF] overall HEALTH_OK 2024-01-13T07:38:57.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:57 smithi039 bash[16208]: audit 2024-01-13T07:38:57.155557+0000 mon.smithi039 (mon.0) 185 : audit [DBG] from='mgr.? 172.21.15.100:0/845955364' entity='mgr.smithi100.mvjdpm' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi100.mvjdpm/key"}]: dispatch 2024-01-13T07:38:57.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:57 smithi039 bash[16208]: audit 2024-01-13T07:38:57.158690+0000 mon.smithi039 (mon.0) 186 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:38:57.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:57 smithi039 bash[16208]: audit 2024-01-13T07:38:57.159031+0000 mon.smithi039 (mon.0) 187 : audit [DBG] from='mgr.? 172.21.15.100:0/845955364' entity='mgr.smithi100.mvjdpm' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-01-13T07:38:57.496 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:57 smithi100 bash[20091]: audit 2024-01-13T07:38:52.087471+0000 mon.smithi039 (mon.0) 167 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mon metadata", "id": "smithi039"}]: dispatch 2024-01-13T07:38:57.496 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:57 smithi100 bash[20091]: cluster 2024-01-13T07:38:52.087986+0000 mon.smithi039 (mon.0) 168 : cluster [INF] mon.smithi039 calling monitor election 2024-01-13T07:38:57.496 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:57 smithi100 bash[20091]: audit 2024-01-13T07:38:52.108649+0000 mon.smithi039 (mon.0) 169 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mon metadata", "id": "smithi100"}]: dispatch 2024-01-13T07:38:57.496 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:57 smithi100 bash[20091]: cluster 2024-01-13T07:38:52.176908+0000 mgr.smithi039.fbdzkl (mgr.14184) 13 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:38:57.496 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:57 smithi100 bash[20091]: audit 2024-01-13T07:38:52.469528+0000 mon.smithi039 (mon.0) 170 : audit [DBG] from='client.? 172.21.15.100:0/819516060' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-01-13T07:38:57.496 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:57 smithi100 bash[20091]: audit 2024-01-13T07:38:53.080614+0000 mon.smithi039 (mon.0) 171 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mon metadata", "id": "smithi100"}]: dispatch 2024-01-13T07:38:57.496 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:57 smithi100 bash[20091]: audit 2024-01-13T07:38:53.818895+0000 mon.smithi039 (mon.0) 172 : audit [DBG] from='mgr.? 172.21.15.100:0/845955364' entity='mgr.smithi100.mvjdpm' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi100.mvjdpm/crt"}]: dispatch 2024-01-13T07:38:57.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:57 smithi100 bash[20091]: audit 2024-01-13T07:38:54.080977+0000 mon.smithi039 (mon.0) 173 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mon metadata", "id": "smithi100"}]: dispatch 2024-01-13T07:38:57.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:57 smithi100 bash[20091]: cluster 2024-01-13T07:38:54.083959+0000 mon.smithi100 (mon.1) 1 : cluster [INF] mon.smithi100 calling monitor election 2024-01-13T07:38:57.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:57 smithi100 bash[20091]: cluster 2024-01-13T07:38:54.177366+0000 mgr.smithi039.fbdzkl (mgr.14184) 14 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:38:57.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:57 smithi100 bash[20091]: audit 2024-01-13T07:38:55.081118+0000 mon.smithi039 (mon.0) 174 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mon metadata", "id": "smithi100"}]: dispatch 2024-01-13T07:38:57.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:57 smithi100 bash[20091]: audit 2024-01-13T07:38:56.081104+0000 mon.smithi039 (mon.0) 175 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mon metadata", "id": "smithi100"}]: dispatch 2024-01-13T07:38:57.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:57 smithi100 bash[20091]: cluster 2024-01-13T07:38:56.177783+0000 mgr.smithi039.fbdzkl (mgr.14184) 15 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:38:57.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:57 smithi100 bash[20091]: audit 2024-01-13T07:38:57.081421+0000 mon.smithi039 (mon.0) 176 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mon metadata", "id": "smithi100"}]: dispatch 2024-01-13T07:38:57.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:57 smithi100 bash[20091]: cluster 2024-01-13T07:38:57.134987+0000 mon.smithi039 (mon.0) 177 : cluster [INF] mon.smithi039 is new leader, mons smithi039,smithi100 in quorum (ranks 0,1) 2024-01-13T07:38:57.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:57 smithi100 bash[20091]: cluster 2024-01-13T07:38:57.144197+0000 mon.smithi039 (mon.0) 178 : cluster [DBG] monmap e2: 2 mons at {smithi039=[v2:172.21.15.39:3300/0,v1:172.21.15.39:6789/0],smithi100=[v2:172.21.15.100:3300/0,v1:172.21.15.100:6789/0]} removed_ranks: {} 2024-01-13T07:38:57.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:57 smithi100 bash[20091]: cluster 2024-01-13T07:38:57.145121+0000 mon.smithi039 (mon.0) 179 : cluster [DBG] fsmap 2024-01-13T07:38:57.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:57 smithi100 bash[20091]: cluster 2024-01-13T07:38:57.145174+0000 mon.smithi039 (mon.0) 180 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-01-13T07:38:57.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:57 smithi100 bash[20091]: cluster 2024-01-13T07:38:57.145506+0000 mon.smithi039 (mon.0) 181 : cluster [DBG] mgrmap e17: smithi039.fbdzkl(active, since 26s) 2024-01-13T07:38:57.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:57 smithi100 bash[20091]: cluster 2024-01-13T07:38:57.147508+0000 mon.smithi039 (mon.0) 182 : cluster [DBG] Standby manager daemon smithi100.mvjdpm started 2024-01-13T07:38:57.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:57 smithi100 bash[20091]: audit 2024-01-13T07:38:57.150446+0000 mon.smithi039 (mon.0) 183 : audit [DBG] from='mgr.? 172.21.15.100:0/845955364' entity='mgr.smithi100.mvjdpm' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-01-13T07:38:57.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:57 smithi100 bash[20091]: cluster 2024-01-13T07:38:57.154474+0000 mon.smithi039 (mon.0) 184 : cluster [INF] overall HEALTH_OK 2024-01-13T07:38:57.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:57 smithi100 bash[20091]: audit 2024-01-13T07:38:57.155557+0000 mon.smithi039 (mon.0) 185 : audit [DBG] from='mgr.? 172.21.15.100:0/845955364' entity='mgr.smithi100.mvjdpm' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi100.mvjdpm/key"}]: dispatch 2024-01-13T07:38:57.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:57 smithi100 bash[20091]: audit 2024-01-13T07:38:57.158690+0000 mon.smithi039 (mon.0) 186 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:38:57.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:57 smithi100 bash[20091]: audit 2024-01-13T07:38:57.159031+0000 mon.smithi039 (mon.0) 187 : audit [DBG] from='mgr.? 172.21.15.100:0/845955364' entity='mgr.smithi100.mvjdpm' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-01-13T07:38:58.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:58 smithi100 bash[20091]: cluster 2024-01-13T07:38:57.213348+0000 mon.smithi039 (mon.0) 188 : cluster [DBG] mgrmap e18: smithi039.fbdzkl(active, since 27s), standbys: smithi100.mvjdpm 2024-01-13T07:38:58.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:58 smithi100 bash[20091]: audit 2024-01-13T07:38:57.214741+0000 mon.smithi039 (mon.0) 189 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mgr metadata", "who": "smithi100.mvjdpm", "id": "smithi100.mvjdpm"}]: dispatch 2024-01-13T07:38:58.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:58 smithi100 bash[20091]: audit 2024-01-13T07:38:58.081531+0000 mon.smithi039 (mon.0) 190 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mon metadata", "id": "smithi100"}]: dispatch 2024-01-13T07:38:58.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:58 smithi039 bash[16208]: cluster 2024-01-13T07:38:57.213348+0000 mon.smithi039 (mon.0) 188 : cluster [DBG] mgrmap e18: smithi039.fbdzkl(active, since 27s), standbys: smithi100.mvjdpm 2024-01-13T07:38:58.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:58 smithi039 bash[16208]: audit 2024-01-13T07:38:57.214741+0000 mon.smithi039 (mon.0) 189 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mgr metadata", "who": "smithi100.mvjdpm", "id": "smithi100.mvjdpm"}]: dispatch 2024-01-13T07:38:58.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:58 smithi039 bash[16208]: audit 2024-01-13T07:38:58.081531+0000 mon.smithi039 (mon.0) 190 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mon metadata", "id": "smithi100"}]: dispatch 2024-01-13T07:38:58.678 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-01-13T07:38:58.679 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph config generate-minimal-conf 2024-01-13T07:38:59.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:38:59 smithi039 bash[16208]: cluster 2024-01-13T07:38:58.178150+0000 mgr.smithi039.fbdzkl (mgr.14184) 16 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:38:59.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:38:59 smithi100 bash[20091]: cluster 2024-01-13T07:38:58.178150+0000 mgr.smithi039.fbdzkl (mgr.14184) 16 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:00.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:00 smithi039 bash[16208]: cluster 2024-01-13T07:39:00.178600+0000 mgr.smithi039.fbdzkl (mgr.14184) 17 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:00.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:00 smithi100 bash[20091]: cluster 2024-01-13T07:39:00.178600+0000 mgr.smithi039.fbdzkl (mgr.14184) 17 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:01.768 INFO:teuthology.orchestra.run.smithi039.stdout:# minimal ceph.conf for 5dfd6106-b1e6-11ee-95ac-87774f69a715 2024-01-13T07:39:01.768 INFO:teuthology.orchestra.run.smithi039.stdout:[global] 2024-01-13T07:39:01.768 INFO:teuthology.orchestra.run.smithi039.stdout: fsid = 5dfd6106-b1e6-11ee-95ac-87774f69a715 2024-01-13T07:39:01.768 INFO:teuthology.orchestra.run.smithi039.stdout: mon_host = [v2:172.21.15.39:3300/0,v1:172.21.15.39:6789/0] [v2:172.21.15.100:3300/0,v1:172.21.15.100:6789/0] 2024-01-13T07:39:02.176 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:01 smithi100 bash[20091]: audit 2024-01-13T07:39:01.767319+0000 mon.smithi039 (mon.0) 191 : audit [DBG] from='client.? 172.21.15.39:0/791947631' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:39:02.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:01 smithi039 bash[16208]: audit 2024-01-13T07:39:01.767319+0000 mon.smithi039 (mon.0) 191 : audit [DBG] from='client.? 172.21.15.39:0/791947631' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:39:02.382 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-01-13T07:39:02.382 DEBUG:teuthology.orchestra.run.smithi039:> set -ex 2024-01-13T07:39:02.382 DEBUG:teuthology.orchestra.run.smithi039:> sudo dd of=/etc/ceph/ceph.conf 2024-01-13T07:39:02.391 DEBUG:teuthology.orchestra.run.smithi039:> set -ex 2024-01-13T07:39:02.391 DEBUG:teuthology.orchestra.run.smithi039:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-01-13T07:39:02.448 DEBUG:teuthology.orchestra.run.smithi100:> set -ex 2024-01-13T07:39:02.448 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd of=/etc/ceph/ceph.conf 2024-01-13T07:39:02.463 DEBUG:teuthology.orchestra.run.smithi100:> set -ex 2024-01-13T07:39:02.463 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-01-13T07:39:02.517 INFO:tasks.cephadm:Deploying OSDs... 2024-01-13T07:39:02.518 DEBUG:teuthology.orchestra.run.smithi039:> set -ex 2024-01-13T07:39:02.518 DEBUG:teuthology.orchestra.run.smithi039:> dd if=/scratch_devs of=/dev/stdout 2024-01-13T07:39:02.527 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-01-13T07:39:02.527 DEBUG:teuthology.orchestra.run.smithi039:> stat /dev/nvme1n1 2024-01-13T07:39:02.578 INFO:teuthology.orchestra.run.smithi039.stdout: File: /dev/nvme1n1 2024-01-13T07:39:02.578 INFO:teuthology.orchestra.run.smithi039.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-13T07:39:02.578 INFO:teuthology.orchestra.run.smithi039.stdout:Device: 6h/6d Inode: 473 Links: 1 Device type: 103,2 2024-01-13T07:39:02.578 INFO:teuthology.orchestra.run.smithi039.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-13T07:39:02.578 INFO:teuthology.orchestra.run.smithi039.stdout:Access: 2024-01-13 07:37:45.095338299 +0000 2024-01-13T07:39:02.578 INFO:teuthology.orchestra.run.smithi039.stdout:Modify: 2024-01-13 07:35:45.345866574 +0000 2024-01-13T07:39:02.578 INFO:teuthology.orchestra.run.smithi039.stdout:Change: 2024-01-13 07:35:45.345866574 +0000 2024-01-13T07:39:02.578 INFO:teuthology.orchestra.run.smithi039.stdout: Birth: - 2024-01-13T07:39:02.578 DEBUG:teuthology.orchestra.run.smithi039:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-01-13T07:39:02.633 INFO:teuthology.orchestra.run.smithi039.stderr:1+0 records in 2024-01-13T07:39:02.633 INFO:teuthology.orchestra.run.smithi039.stderr:1+0 records out 2024-01-13T07:39:02.633 INFO:teuthology.orchestra.run.smithi039.stderr:512 bytes copied, 0.000564314 s, 907 kB/s 2024-01-13T07:39:02.634 DEBUG:teuthology.orchestra.run.smithi039:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-01-13T07:39:02.683 DEBUG:teuthology.orchestra.run.smithi039:> stat /dev/nvme2n1 2024-01-13T07:39:02.734 INFO:teuthology.orchestra.run.smithi039.stdout: File: /dev/nvme2n1 2024-01-13T07:39:02.734 INFO:teuthology.orchestra.run.smithi039.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-13T07:39:02.734 INFO:teuthology.orchestra.run.smithi039.stdout:Device: 6h/6d Inode: 479 Links: 1 Device type: 103,4 2024-01-13T07:39:02.734 INFO:teuthology.orchestra.run.smithi039.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-13T07:39:02.734 INFO:teuthology.orchestra.run.smithi039.stdout:Access: 2024-01-13 07:37:45.115337822 +0000 2024-01-13T07:39:02.734 INFO:teuthology.orchestra.run.smithi039.stdout:Modify: 2024-01-13 07:35:45.461920632 +0000 2024-01-13T07:39:02.734 INFO:teuthology.orchestra.run.smithi039.stdout:Change: 2024-01-13 07:35:45.461920632 +0000 2024-01-13T07:39:02.734 INFO:teuthology.orchestra.run.smithi039.stdout: Birth: - 2024-01-13T07:39:02.734 DEBUG:teuthology.orchestra.run.smithi039:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-01-13T07:39:02.789 INFO:teuthology.orchestra.run.smithi039.stderr:1+0 records in 2024-01-13T07:39:02.789 INFO:teuthology.orchestra.run.smithi039.stderr:1+0 records out 2024-01-13T07:39:02.789 INFO:teuthology.orchestra.run.smithi039.stderr:512 bytes copied, 0.000440173 s, 1.2 MB/s 2024-01-13T07:39:02.790 DEBUG:teuthology.orchestra.run.smithi039:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-01-13T07:39:02.839 DEBUG:teuthology.orchestra.run.smithi039:> stat /dev/nvme3n1 2024-01-13T07:39:02.890 INFO:teuthology.orchestra.run.smithi039.stdout: File: /dev/nvme3n1 2024-01-13T07:39:02.890 INFO:teuthology.orchestra.run.smithi039.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-13T07:39:02.890 INFO:teuthology.orchestra.run.smithi039.stdout:Device: 6h/6d Inode: 485 Links: 1 Device type: 103,6 2024-01-13T07:39:02.890 INFO:teuthology.orchestra.run.smithi039.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-13T07:39:02.890 INFO:teuthology.orchestra.run.smithi039.stdout:Access: 2024-01-13 07:37:45.131337441 +0000 2024-01-13T07:39:02.890 INFO:teuthology.orchestra.run.smithi039.stdout:Modify: 2024-01-13 07:35:45.573972826 +0000 2024-01-13T07:39:02.890 INFO:teuthology.orchestra.run.smithi039.stdout:Change: 2024-01-13 07:35:45.573972826 +0000 2024-01-13T07:39:02.890 INFO:teuthology.orchestra.run.smithi039.stdout: Birth: - 2024-01-13T07:39:02.891 DEBUG:teuthology.orchestra.run.smithi039:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-01-13T07:39:02.945 INFO:teuthology.orchestra.run.smithi039.stderr:1+0 records in 2024-01-13T07:39:02.945 INFO:teuthology.orchestra.run.smithi039.stderr:1+0 records out 2024-01-13T07:39:02.945 INFO:teuthology.orchestra.run.smithi039.stderr:512 bytes copied, 0.000527919 s, 970 kB/s 2024-01-13T07:39:02.946 DEBUG:teuthology.orchestra.run.smithi039:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-01-13T07:39:02.995 DEBUG:teuthology.orchestra.run.smithi039:> stat /dev/nvme4n1 2024-01-13T07:39:03.050 INFO:teuthology.orchestra.run.smithi039.stdout: File: /dev/nvme4n1 2024-01-13T07:39:03.050 INFO:teuthology.orchestra.run.smithi039.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-13T07:39:03.050 INFO:teuthology.orchestra.run.smithi039.stdout:Device: 6h/6d Inode: 491 Links: 1 Device type: 103,8 2024-01-13T07:39:03.050 INFO:teuthology.orchestra.run.smithi039.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-13T07:39:03.051 INFO:teuthology.orchestra.run.smithi039.stdout:Access: 2024-01-13 07:37:45.147337060 +0000 2024-01-13T07:39:03.051 INFO:teuthology.orchestra.run.smithi039.stdout:Modify: 2024-01-13 07:35:45.690026885 +0000 2024-01-13T07:39:03.051 INFO:teuthology.orchestra.run.smithi039.stdout:Change: 2024-01-13 07:35:45.690026885 +0000 2024-01-13T07:39:03.051 INFO:teuthology.orchestra.run.smithi039.stdout: Birth: - 2024-01-13T07:39:03.051 DEBUG:teuthology.orchestra.run.smithi039:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-01-13T07:39:03.104 INFO:teuthology.orchestra.run.smithi039.stderr:1+0 records in 2024-01-13T07:39:03.104 INFO:teuthology.orchestra.run.smithi039.stderr:1+0 records out 2024-01-13T07:39:03.104 INFO:teuthology.orchestra.run.smithi039.stderr:512 bytes copied, 0.000444057 s, 1.2 MB/s 2024-01-13T07:39:03.105 DEBUG:teuthology.orchestra.run.smithi039:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-01-13T07:39:03.155 DEBUG:teuthology.orchestra.run.smithi100:> set -ex 2024-01-13T07:39:03.155 DEBUG:teuthology.orchestra.run.smithi100:> dd if=/scratch_devs of=/dev/stdout 2024-01-13T07:39:03.162 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-01-13T07:39:03.162 DEBUG:teuthology.orchestra.run.smithi100:> stat /dev/nvme1n1 2024-01-13T07:39:03.212 INFO:teuthology.orchestra.run.smithi100.stdout: File: /dev/nvme1n1 2024-01-13T07:39:03.212 INFO:teuthology.orchestra.run.smithi100.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-13T07:39:03.212 INFO:teuthology.orchestra.run.smithi100.stdout:Device: 6h/6d Inode: 473 Links: 1 Device type: 103,2 2024-01-13T07:39:03.212 INFO:teuthology.orchestra.run.smithi100.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-13T07:39:03.212 INFO:teuthology.orchestra.run.smithi100.stdout:Access: 2024-01-13 07:38:37.678795260 +0000 2024-01-13T07:39:03.212 INFO:teuthology.orchestra.run.smithi100.stdout:Modify: 2024-01-13 07:35:46.686860671 +0000 2024-01-13T07:39:03.212 INFO:teuthology.orchestra.run.smithi100.stdout:Change: 2024-01-13 07:35:46.686860671 +0000 2024-01-13T07:39:03.212 INFO:teuthology.orchestra.run.smithi100.stdout: Birth: - 2024-01-13T07:39:03.212 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-01-13T07:39:03.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:03 smithi039 bash[16208]: cluster 2024-01-13T07:39:02.178907+0000 mgr.smithi039.fbdzkl (mgr.14184) 18 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:03.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:03 smithi039 bash[16208]: audit 2024-01-13T07:39:03.001321+0000 mon.smithi039 (mon.0) 192 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:03.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:03 smithi039 bash[16208]: audit 2024-01-13T07:39:03.004187+0000 mon.smithi039 (mon.0) 193 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:39:03.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:03 smithi100 bash[20091]: cluster 2024-01-13T07:39:02.178907+0000 mgr.smithi039.fbdzkl (mgr.14184) 18 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:03.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:03 smithi100 bash[20091]: audit 2024-01-13T07:39:03.001321+0000 mon.smithi039 (mon.0) 192 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:03.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:03 smithi100 bash[20091]: audit 2024-01-13T07:39:03.004187+0000 mon.smithi039 (mon.0) 193 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:39:03.256 INFO:teuthology.orchestra.run.smithi100.stderr:1+0 records in 2024-01-13T07:39:03.256 INFO:teuthology.orchestra.run.smithi100.stderr:1+0 records out 2024-01-13T07:39:03.257 INFO:teuthology.orchestra.run.smithi100.stderr:512 bytes copied, 0.000436993 s, 1.2 MB/s 2024-01-13T07:39:03.257 DEBUG:teuthology.orchestra.run.smithi100:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-01-13T07:39:03.309 DEBUG:teuthology.orchestra.run.smithi100:> stat /dev/nvme2n1 2024-01-13T07:39:03.360 INFO:teuthology.orchestra.run.smithi100.stdout: File: /dev/nvme2n1 2024-01-13T07:39:03.360 INFO:teuthology.orchestra.run.smithi100.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-13T07:39:03.360 INFO:teuthology.orchestra.run.smithi100.stdout:Device: 6h/6d Inode: 479 Links: 1 Device type: 103,4 2024-01-13T07:39:03.360 INFO:teuthology.orchestra.run.smithi100.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-13T07:39:03.360 INFO:teuthology.orchestra.run.smithi100.stdout:Access: 2024-01-13 07:38:37.694794879 +0000 2024-01-13T07:39:03.360 INFO:teuthology.orchestra.run.smithi100.stdout:Modify: 2024-01-13 07:35:46.790858218 +0000 2024-01-13T07:39:03.360 INFO:teuthology.orchestra.run.smithi100.stdout:Change: 2024-01-13 07:35:46.790858218 +0000 2024-01-13T07:39:03.360 INFO:teuthology.orchestra.run.smithi100.stdout: Birth: - 2024-01-13T07:39:03.361 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-01-13T07:39:03.414 INFO:teuthology.orchestra.run.smithi100.stderr:1+0 records in 2024-01-13T07:39:03.414 INFO:teuthology.orchestra.run.smithi100.stderr:1+0 records out 2024-01-13T07:39:03.414 INFO:teuthology.orchestra.run.smithi100.stderr:512 bytes copied, 0.000448623 s, 1.1 MB/s 2024-01-13T07:39:03.416 DEBUG:teuthology.orchestra.run.smithi100:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-01-13T07:39:03.465 DEBUG:teuthology.orchestra.run.smithi100:> stat /dev/nvme3n1 2024-01-13T07:39:03.516 INFO:teuthology.orchestra.run.smithi100.stdout: File: /dev/nvme3n1 2024-01-13T07:39:03.516 INFO:teuthology.orchestra.run.smithi100.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-13T07:39:03.516 INFO:teuthology.orchestra.run.smithi100.stdout:Device: 6h/6d Inode: 485 Links: 1 Device type: 103,6 2024-01-13T07:39:03.517 INFO:teuthology.orchestra.run.smithi100.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-13T07:39:03.517 INFO:teuthology.orchestra.run.smithi100.stdout:Access: 2024-01-13 07:38:37.710794499 +0000 2024-01-13T07:39:03.517 INFO:teuthology.orchestra.run.smithi100.stdout:Modify: 2024-01-13 07:35:46.910855388 +0000 2024-01-13T07:39:03.517 INFO:teuthology.orchestra.run.smithi100.stdout:Change: 2024-01-13 07:35:46.910855388 +0000 2024-01-13T07:39:03.517 INFO:teuthology.orchestra.run.smithi100.stdout: Birth: - 2024-01-13T07:39:03.518 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-01-13T07:39:03.570 INFO:teuthology.orchestra.run.smithi100.stderr:1+0 records in 2024-01-13T07:39:03.571 INFO:teuthology.orchestra.run.smithi100.stderr:1+0 records out 2024-01-13T07:39:03.571 INFO:teuthology.orchestra.run.smithi100.stderr:512 bytes copied, 0.000481242 s, 1.1 MB/s 2024-01-13T07:39:03.571 DEBUG:teuthology.orchestra.run.smithi100:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-01-13T07:39:03.620 DEBUG:teuthology.orchestra.run.smithi100:> stat /dev/nvme4n1 2024-01-13T07:39:03.671 INFO:teuthology.orchestra.run.smithi100.stdout: File: /dev/nvme4n1 2024-01-13T07:39:03.671 INFO:teuthology.orchestra.run.smithi100.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-01-13T07:39:03.671 INFO:teuthology.orchestra.run.smithi100.stdout:Device: 6h/6d Inode: 491 Links: 1 Device type: 103,8 2024-01-13T07:39:03.671 INFO:teuthology.orchestra.run.smithi100.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-01-13T07:39:03.672 INFO:teuthology.orchestra.run.smithi100.stdout:Access: 2024-01-13 07:38:37.722794213 +0000 2024-01-13T07:39:03.672 INFO:teuthology.orchestra.run.smithi100.stdout:Modify: 2024-01-13 07:35:47.018852840 +0000 2024-01-13T07:39:03.672 INFO:teuthology.orchestra.run.smithi100.stdout:Change: 2024-01-13 07:35:47.018852840 +0000 2024-01-13T07:39:03.672 INFO:teuthology.orchestra.run.smithi100.stdout: Birth: - 2024-01-13T07:39:03.672 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-01-13T07:39:03.726 INFO:teuthology.orchestra.run.smithi100.stderr:1+0 records in 2024-01-13T07:39:03.726 INFO:teuthology.orchestra.run.smithi100.stderr:1+0 records out 2024-01-13T07:39:03.726 INFO:teuthology.orchestra.run.smithi100.stderr:512 bytes copied, 0.000418027 s, 1.2 MB/s 2024-01-13T07:39:03.726 DEBUG:teuthology.orchestra.run.smithi100:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-01-13T07:39:03.777 DEBUG:teuthology.orchestra.run.smithi100:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph orch apply osd --all-available-devices 2024-01-13T07:39:05.264 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:05 smithi100 bash[20091]: cluster 2024-01-13T07:39:04.179293+0000 mgr.smithi039.fbdzkl (mgr.14184) 19 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:05.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:05 smithi039 bash[16208]: cluster 2024-01-13T07:39:04.179293+0000 mgr.smithi039.fbdzkl (mgr.14184) 19 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:06.930 INFO:teuthology.orchestra.run.smithi100.stdout:Scheduled osd.all-available-devices update... 2024-01-13T07:39:07.501 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-01-13T07:39:07.502 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:39:07.515 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:07 smithi039 bash[16208]: cluster 2024-01-13T07:39:06.179712+0000 mgr.smithi039.fbdzkl (mgr.14184) 20 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:07.515 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:07 smithi039 bash[16208]: audit 2024-01-13T07:39:06.928777+0000 mon.smithi039 (mon.0) 194 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:07.515 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:07 smithi039 bash[16208]: audit 2024-01-13T07:39:07.169268+0000 mon.smithi039 (mon.0) 195 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:07.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:07 smithi100 bash[20091]: cluster 2024-01-13T07:39:06.179712+0000 mgr.smithi039.fbdzkl (mgr.14184) 20 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:07.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:07 smithi100 bash[20091]: audit 2024-01-13T07:39:06.928777+0000 mon.smithi039 (mon.0) 194 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:07.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:07 smithi100 bash[20091]: audit 2024-01-13T07:39:07.169268+0000 mon.smithi039 (mon.0) 195 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:08.542 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:08 smithi039 bash[16208]: audit 2024-01-13T07:39:06.916197+0000 mgr.smithi039.fbdzkl (mgr.14184) 21 : audit [DBG] from='client.24101 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-01-13T07:39:08.543 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:08 smithi039 bash[16208]: cephadm 2024-01-13T07:39:06.920638+0000 mgr.smithi039.fbdzkl (mgr.14184) 22 : cephadm [INF] Marking host: smithi039 for OSDSpec preview refresh. 2024-01-13T07:39:08.543 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:08 smithi039 bash[16208]: cephadm 2024-01-13T07:39:06.920954+0000 mgr.smithi039.fbdzkl (mgr.14184) 23 : cephadm [INF] Marking host: smithi100 for OSDSpec preview refresh. 2024-01-13T07:39:08.543 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:08 smithi039 bash[16208]: cephadm 2024-01-13T07:39:06.921742+0000 mgr.smithi039.fbdzkl (mgr.14184) 24 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-01-13T07:39:08.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:08 smithi100 bash[20091]: audit 2024-01-13T07:39:06.916197+0000 mgr.smithi039.fbdzkl (mgr.14184) 21 : audit [DBG] from='client.24101 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-01-13T07:39:08.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:08 smithi100 bash[20091]: cephadm 2024-01-13T07:39:06.920638+0000 mgr.smithi039.fbdzkl (mgr.14184) 22 : cephadm [INF] Marking host: smithi039 for OSDSpec preview refresh. 2024-01-13T07:39:08.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:08 smithi100 bash[20091]: cephadm 2024-01-13T07:39:06.920954+0000 mgr.smithi039.fbdzkl (mgr.14184) 23 : cephadm [INF] Marking host: smithi100 for OSDSpec preview refresh. 2024-01-13T07:39:08.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:08 smithi100 bash[20091]: cephadm 2024-01-13T07:39:06.921742+0000 mgr.smithi039.fbdzkl (mgr.14184) 24 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-01-13T07:39:09.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:09 smithi039 bash[16208]: cluster 2024-01-13T07:39:08.180176+0000 mgr.smithi039.fbdzkl (mgr.14184) 25 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:09.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:09 smithi100 bash[20091]: cluster 2024-01-13T07:39:08.180176+0000 mgr.smithi039.fbdzkl (mgr.14184) 25 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:10.399 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:39:10.975 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-01-13T07:39:11.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:10 smithi039 bash[16208]: audit 2024-01-13T07:39:09.806921+0000 mon.smithi039 (mon.0) 196 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:11.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:10 smithi039 bash[16208]: audit 2024-01-13T07:39:09.818577+0000 mon.smithi039 (mon.0) 197 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:11.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:10 smithi039 bash[16208]: audit 2024-01-13T07:39:09.820416+0000 mon.smithi039 (mon.0) 198 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:39:11.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:10 smithi039 bash[16208]: audit 2024-01-13T07:39:09.821963+0000 mon.smithi039 (mon.0) 199 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-13T07:39:11.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:10 smithi039 bash[16208]: cephadm 2024-01-13T07:39:09.824055+0000 mgr.smithi039.fbdzkl (mgr.14184) 26 : cephadm [INF] Updating smithi039:/etc/ceph/ceph.conf 2024-01-13T07:39:11.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:10 smithi039 bash[16208]: cephadm 2024-01-13T07:39:09.824750+0000 mgr.smithi039.fbdzkl (mgr.14184) 27 : cephadm [INF] Updating smithi100:/etc/ceph/ceph.conf 2024-01-13T07:39:11.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:10 smithi039 bash[16208]: audit 2024-01-13T07:39:09.857159+0000 mon.smithi039 (mon.0) 200 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:11.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:10 smithi039 bash[16208]: audit 2024-01-13T07:39:09.870710+0000 mon.smithi039 (mon.0) 201 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:11.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:10 smithi039 bash[16208]: audit 2024-01-13T07:39:09.878619+0000 mon.smithi039 (mon.0) 202 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:11.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:10 smithi039 bash[16208]: audit 2024-01-13T07:39:09.887510+0000 mon.smithi039 (mon.0) 203 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-13T07:39:11.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:10 smithi039 bash[16208]: audit 2024-01-13T07:39:09.894574+0000 mon.smithi039 (mon.0) 204 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:39:11.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:10 smithi039 bash[16208]: audit 2024-01-13T07:39:09.898450+0000 mon.smithi039 (mon.0) 205 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:39:11.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:10 smithi039 bash[16208]: audit 2024-01-13T07:39:09.898931+0000 mon.smithi039 (mon.0) 206 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:39:11.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:10 smithi039 bash[16208]: audit 2024-01-13T07:39:09.900176+0000 mon.smithi039 (mon.0) 207 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:39:11.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:10 smithi039 bash[16208]: cluster 2024-01-13T07:39:10.180564+0000 mgr.smithi039.fbdzkl (mgr.14184) 28 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:11.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:10 smithi039 bash[16208]: audit 2024-01-13T07:39:10.397960+0000 mon.smithi039 (mon.0) 208 : audit [DBG] from='client.? 172.21.15.39:0/1732894328' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:39:11.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:10 smithi100 bash[20091]: audit 2024-01-13T07:39:09.806921+0000 mon.smithi039 (mon.0) 196 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:11.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:10 smithi100 bash[20091]: audit 2024-01-13T07:39:09.818577+0000 mon.smithi039 (mon.0) 197 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:11.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:10 smithi100 bash[20091]: audit 2024-01-13T07:39:09.820416+0000 mon.smithi039 (mon.0) 198 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:39:11.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:10 smithi100 bash[20091]: audit 2024-01-13T07:39:09.821963+0000 mon.smithi039 (mon.0) 199 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-13T07:39:11.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:10 smithi100 bash[20091]: cephadm 2024-01-13T07:39:09.824055+0000 mgr.smithi039.fbdzkl (mgr.14184) 26 : cephadm [INF] Updating smithi039:/etc/ceph/ceph.conf 2024-01-13T07:39:11.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:10 smithi100 bash[20091]: cephadm 2024-01-13T07:39:09.824750+0000 mgr.smithi039.fbdzkl (mgr.14184) 27 : cephadm [INF] Updating smithi100:/etc/ceph/ceph.conf 2024-01-13T07:39:11.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:10 smithi100 bash[20091]: audit 2024-01-13T07:39:09.857159+0000 mon.smithi039 (mon.0) 200 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:11.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:10 smithi100 bash[20091]: audit 2024-01-13T07:39:09.870710+0000 mon.smithi039 (mon.0) 201 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:11.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:10 smithi100 bash[20091]: audit 2024-01-13T07:39:09.878619+0000 mon.smithi039 (mon.0) 202 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:11.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:10 smithi100 bash[20091]: audit 2024-01-13T07:39:09.887510+0000 mon.smithi039 (mon.0) 203 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-13T07:39:11.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:10 smithi100 bash[20091]: audit 2024-01-13T07:39:09.894574+0000 mon.smithi039 (mon.0) 204 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:39:11.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:10 smithi100 bash[20091]: audit 2024-01-13T07:39:09.898450+0000 mon.smithi039 (mon.0) 205 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:39:11.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:10 smithi100 bash[20091]: audit 2024-01-13T07:39:09.898931+0000 mon.smithi039 (mon.0) 206 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:39:11.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:10 smithi100 bash[20091]: audit 2024-01-13T07:39:09.900176+0000 mon.smithi039 (mon.0) 207 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:39:11.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:10 smithi100 bash[20091]: cluster 2024-01-13T07:39:10.180564+0000 mgr.smithi039.fbdzkl (mgr.14184) 28 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:11.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:10 smithi100 bash[20091]: audit 2024-01-13T07:39:10.397960+0000 mon.smithi039 (mon.0) 208 : audit [DBG] from='client.? 172.21.15.39:0/1732894328' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:39:11.977 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:39:13.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:13 smithi039 bash[16208]: cluster 2024-01-13T07:39:12.180999+0000 mgr.smithi039.fbdzkl (mgr.14184) 29 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:13.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:13 smithi100 bash[20091]: cluster 2024-01-13T07:39:12.180999+0000 mgr.smithi039.fbdzkl (mgr.14184) 29 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:14.862 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:39:15.517 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:15 smithi100 bash[20091]: cluster 2024-01-13T07:39:14.181450+0000 mgr.smithi039.fbdzkl (mgr.14184) 30 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:15.517 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:15 smithi100 bash[20091]: audit 2024-01-13T07:39:14.861204+0000 mon.smithi039 (mon.0) 209 : audit [DBG] from='client.? 172.21.15.39:0/1100861761' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:39:15.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:15 smithi039 bash[16208]: cluster 2024-01-13T07:39:14.181450+0000 mgr.smithi039.fbdzkl (mgr.14184) 30 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:15.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:15 smithi039 bash[16208]: audit 2024-01-13T07:39:14.861204+0000 mon.smithi039 (mon.0) 209 : audit [DBG] from='client.? 172.21.15.39:0/1100861761' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:39:15.816 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-01-13T07:39:16.817 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:39:17.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:17 smithi039 bash[16208]: cluster 2024-01-13T07:39:16.181883+0000 mgr.smithi039.fbdzkl (mgr.14184) 31 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:17.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:17 smithi100 bash[20091]: cluster 2024-01-13T07:39:16.181883+0000 mgr.smithi039.fbdzkl (mgr.14184) 31 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:18.701 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:18 smithi100 bash[20091]: audit 2024-01-13T07:39:18.190692+0000 mon.smithi100 (mon.1) 2 : audit [INF] from='client.? 172.21.15.100:0/1470094420' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "2cf297d3-0e0c-4424-a4cb-e96d6513f8da"}]: dispatch 2024-01-13T07:39:18.701 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:18 smithi100 bash[20091]: audit 2024-01-13T07:39:18.191492+0000 mon.smithi039 (mon.0) 210 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "2cf297d3-0e0c-4424-a4cb-e96d6513f8da"}]: dispatch 2024-01-13T07:39:18.701 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:18 smithi100 bash[20091]: audit 2024-01-13T07:39:18.200362+0000 mon.smithi039 (mon.0) 211 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2cf297d3-0e0c-4424-a4cb-e96d6513f8da"}]': finished 2024-01-13T07:39:18.701 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:18 smithi100 bash[20091]: cluster 2024-01-13T07:39:18.200502+0000 mon.smithi039 (mon.0) 212 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-01-13T07:39:18.701 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:18 smithi100 bash[20091]: audit 2024-01-13T07:39:18.200708+0000 mon.smithi039 (mon.0) 213 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:39:18.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:18 smithi039 bash[16208]: audit 2024-01-13T07:39:18.190692+0000 mon.smithi100 (mon.1) 2 : audit [INF] from='client.? 172.21.15.100:0/1470094420' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "2cf297d3-0e0c-4424-a4cb-e96d6513f8da"}]: dispatch 2024-01-13T07:39:18.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:18 smithi039 bash[16208]: audit 2024-01-13T07:39:18.191492+0000 mon.smithi039 (mon.0) 210 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "2cf297d3-0e0c-4424-a4cb-e96d6513f8da"}]: dispatch 2024-01-13T07:39:18.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:18 smithi039 bash[16208]: audit 2024-01-13T07:39:18.200362+0000 mon.smithi039 (mon.0) 211 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2cf297d3-0e0c-4424-a4cb-e96d6513f8da"}]': finished 2024-01-13T07:39:18.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:18 smithi039 bash[16208]: cluster 2024-01-13T07:39:18.200502+0000 mon.smithi039 (mon.0) 212 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-01-13T07:39:18.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:18 smithi039 bash[16208]: audit 2024-01-13T07:39:18.200708+0000 mon.smithi039 (mon.0) 213 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:39:19.641 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:19 smithi039 bash[16208]: cluster 2024-01-13T07:39:18.182208+0000 mgr.smithi039.fbdzkl (mgr.14184) 32 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:19.641 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:19 smithi039 bash[16208]: audit 2024-01-13T07:39:18.551543+0000 mon.smithi100 (mon.1) 3 : audit [INF] from='client.? 172.21.15.100:0/3605849672' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:39:19.641 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:19 smithi039 bash[16208]: audit 2024-01-13T07:39:18.552354+0000 mon.smithi039 (mon.0) 214 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:39:19.641 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:19 smithi039 bash[16208]: audit 2024-01-13T07:39:18.560545+0000 mon.smithi039 (mon.0) 215 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:39:19.641 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:19 smithi039 bash[16208]: cluster 2024-01-13T07:39:18.560713+0000 mon.smithi039 (mon.0) 216 : cluster [DBG] osdmap e7: 0 total, 0 up, 0 in 2024-01-13T07:39:19.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:19 smithi100 bash[20091]: cluster 2024-01-13T07:39:18.182208+0000 mgr.smithi039.fbdzkl (mgr.14184) 32 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:19.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:19 smithi100 bash[20091]: audit 2024-01-13T07:39:18.551543+0000 mon.smithi100 (mon.1) 3 : audit [INF] from='client.? 172.21.15.100:0/3605849672' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:39:19.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:19 smithi100 bash[20091]: audit 2024-01-13T07:39:18.552354+0000 mon.smithi039 (mon.0) 214 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:39:19.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:19 smithi100 bash[20091]: audit 2024-01-13T07:39:18.560545+0000 mon.smithi039 (mon.0) 215 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:39:19.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:19 smithi100 bash[20091]: cluster 2024-01-13T07:39:18.560713+0000 mon.smithi039 (mon.0) 216 : cluster [DBG] osdmap e7: 0 total, 0 up, 0 in 2024-01-13T07:39:20.060 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:39:20.519 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: cephadm 2024-01-13T07:39:19.310071+0000 mgr.smithi039.fbdzkl (mgr.14184) 33 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:39:20.519 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:39:20.519 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:39:20.519 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:39:20.519 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:39:20.519 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:39:20.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:39:20.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:39:20.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:39:20.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp7jsws0am:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp09s_3_1x:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:39:20.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:39:20.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:39:20.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:39:20.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new 2cf297d3-0e0c-4424-a4cb-e96d6513f8da 2024-01-13T07:39:20.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:39:20.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:39:20.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:39:20.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:39:20.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:39:20.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:39:20.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:20.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:20.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:39:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:39:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:39:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:39:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:39:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:39:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:39:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:39:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:39:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:39:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:39:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:39:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:39:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:39:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:39:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:39:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:39:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:39:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:39:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:39:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:39:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:39:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:39:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:39:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:39:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:39:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:39:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:39:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:39:20.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:20.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:20.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:39:20.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:39:20.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:39:20.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:39:20.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:39:20.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:39:20.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:39:20.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:39:20.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:20.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:20.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:39:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:39:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:39:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:39:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:39:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:39:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:39:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: main() 2024-01-13T07:39:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:39:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:39:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:39:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:39:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:39:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:39:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:39:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:39:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:39:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:39:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:39:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:39:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:39:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:39:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp7jsws0am:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp09s_3_1x:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:39:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: audit 2024-01-13T07:39:19.333258+0000 mon.smithi039 (mon.0) 217 : audit [INF] from='client.? 172.21.15.39:0/3065864543' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1635bc20-b315-4769-87bd-79cfcf1ace16"}]: dispatch 2024-01-13T07:39:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: audit 2024-01-13T07:39:19.340721+0000 mon.smithi039 (mon.0) 218 : audit [INF] from='client.? 172.21.15.39:0/3065864543' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1635bc20-b315-4769-87bd-79cfcf1ace16"}]': finished 2024-01-13T07:39:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: cluster 2024-01-13T07:39:19.340815+0000 mon.smithi039 (mon.0) 219 : cluster [DBG] osdmap e8: 1 total, 0 up, 1 in 2024-01-13T07:39:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: audit 2024-01-13T07:39:19.341038+0000 mon.smithi039 (mon.0) 220 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:39:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: audit 2024-01-13T07:39:19.710023+0000 mon.smithi039 (mon.0) 221 : audit [INF] from='client.? 172.21.15.39:0/4175837902' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:39:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: audit 2024-01-13T07:39:19.718893+0000 mon.smithi039 (mon.0) 222 : audit [INF] from='client.? 172.21.15.39:0/4175837902' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:39:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: cluster 2024-01-13T07:39:19.718977+0000 mon.smithi039 (mon.0) 223 : cluster [DBG] osdmap e9: 0 total, 0 up, 0 in 2024-01-13T07:39:20.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:20 smithi039 bash[16208]: audit 2024-01-13T07:39:20.059938+0000 mon.smithi039 (mon.0) 224 : audit [DBG] from='client.? 172.21.15.39:0/2960293489' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:39:20.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: cephadm 2024-01-13T07:39:19.310071+0000 mgr.smithi039.fbdzkl (mgr.14184) 33 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:39:20.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:39:20.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:39:20.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:39:20.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:39:20.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:39:20.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:39:20.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:39:20.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:39:20.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp7jsws0am:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp09s_3_1x:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:39:20.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:39:20.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:39:20.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:39:20.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new 2cf297d3-0e0c-4424-a4cb-e96d6513f8da 2024-01-13T07:39:20.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:39:20.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:39:20.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:39:20.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:39:20.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:39:20.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:39:20.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:20.747 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:20.747 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:39:20.747 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:39:20.747 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:39:20.747 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:39:20.747 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:39:20.747 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:39:20.747 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:39:20.747 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:39:20.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:39:20.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:39:20.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:39:20.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:39:20.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:39:20.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:39:20.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:39:20.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:39:20.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:39:20.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:39:20.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:39:20.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:39:20.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:39:20.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:39:20.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:39:20.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:39:20.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:39:20.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:20.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:20.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:39:20.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:39:20.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:39:20.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:39:20.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:20.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:20.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:39:20.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:39:20.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:39:20.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:39:20.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:39:20.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:39:20.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:39:20.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:39:20.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:20.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:20.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:39:20.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:39:20.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:39:20.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:39:20.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:39:20.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:39:20.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:39:20.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: main() 2024-01-13T07:39:20.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:39:20.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:39:20.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:39:20.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:39:20.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:39:20.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:39:20.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:39:20.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:39:20.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:39:20.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:39:20.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:39:20.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:39:20.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:39:20.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:39:20.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp7jsws0am:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp09s_3_1x:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:39:20.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: audit 2024-01-13T07:39:19.333258+0000 mon.smithi039 (mon.0) 217 : audit [INF] from='client.? 172.21.15.39:0/3065864543' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1635bc20-b315-4769-87bd-79cfcf1ace16"}]: dispatch 2024-01-13T07:39:20.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: audit 2024-01-13T07:39:19.340721+0000 mon.smithi039 (mon.0) 218 : audit [INF] from='client.? 172.21.15.39:0/3065864543' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1635bc20-b315-4769-87bd-79cfcf1ace16"}]': finished 2024-01-13T07:39:20.752 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: cluster 2024-01-13T07:39:19.340815+0000 mon.smithi039 (mon.0) 219 : cluster [DBG] osdmap e8: 1 total, 0 up, 1 in 2024-01-13T07:39:20.752 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: audit 2024-01-13T07:39:19.341038+0000 mon.smithi039 (mon.0) 220 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:39:20.752 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: audit 2024-01-13T07:39:19.710023+0000 mon.smithi039 (mon.0) 221 : audit [INF] from='client.? 172.21.15.39:0/4175837902' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:39:20.752 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: audit 2024-01-13T07:39:19.718893+0000 mon.smithi039 (mon.0) 222 : audit [INF] from='client.? 172.21.15.39:0/4175837902' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:39:20.752 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: cluster 2024-01-13T07:39:19.718977+0000 mon.smithi039 (mon.0) 223 : cluster [DBG] osdmap e9: 0 total, 0 up, 0 in 2024-01-13T07:39:20.752 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:20 smithi100 bash[20091]: audit 2024-01-13T07:39:20.059938+0000 mon.smithi039 (mon.0) 224 : audit [DBG] from='client.? 172.21.15.39:0/2960293489' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:39:20.866 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":9,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:39:21.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:21 smithi039 bash[16208]: cluster 2024-01-13T07:39:20.182604+0000 mgr.smithi039.fbdzkl (mgr.14184) 34 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:21.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:21 smithi039 bash[16208]: audit 2024-01-13T07:39:20.705651+0000 mon.smithi039 (mon.0) 225 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-01-13T07:39:21.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:21 smithi039 bash[16208]: audit 2024-01-13T07:39:20.708369+0000 mon.smithi039 (mon.0) 226 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-01-13T07:39:21.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:21 smithi039 bash[16208]: audit 2024-01-13T07:39:20.709749+0000 mon.smithi039 (mon.0) 227 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:39:21.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:21 smithi039 bash[16208]: cluster 2024-01-13T07:39:20.730446+0000 mon.smithi039 (mon.0) 228 : cluster [WRN] Health check failed: Failed to apply 1 service(s): osd.all-available-devices (CEPHADM_APPLY_SPEC_FAIL) 2024-01-13T07:39:21.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:21 smithi100 bash[20091]: cluster 2024-01-13T07:39:20.182604+0000 mgr.smithi039.fbdzkl (mgr.14184) 34 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:21.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:21 smithi100 bash[20091]: audit 2024-01-13T07:39:20.705651+0000 mon.smithi039 (mon.0) 225 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-01-13T07:39:21.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:21 smithi100 bash[20091]: audit 2024-01-13T07:39:20.708369+0000 mon.smithi039 (mon.0) 226 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-01-13T07:39:21.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:21 smithi100 bash[20091]: audit 2024-01-13T07:39:20.709749+0000 mon.smithi039 (mon.0) 227 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:39:21.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:21 smithi100 bash[20091]: cluster 2024-01-13T07:39:20.730446+0000 mon.smithi039 (mon.0) 228 : cluster [WRN] Health check failed: Failed to apply 1 service(s): osd.all-available-devices (CEPHADM_APPLY_SPEC_FAIL) 2024-01-13T07:39:21.867 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:39:22.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: cephadm 2024-01-13T07:39:20.701245+0000 mgr.smithi039.fbdzkl (mgr.14184) 35 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:39:22.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:39:22.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:39:22.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:39:22.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:39:22.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:39:22.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:39:22.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:39:22.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi039/config 2024-01-13T07:39:22.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmphnt_8grb:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpjbjaozdc:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:39:22.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:39:22.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:39:22.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:39:22.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new 1635bc20-b315-4769-87bd-79cfcf1ace16 2024-01-13T07:39:22.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:39:22.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:39:22.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:39:22.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:39:22.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:39:22.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:39:22.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:22.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:22.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:39:22.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:39:22.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:39:22.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:39:22.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:39:22.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:39:22.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:39:22.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:39:22.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:39:22.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:39:22.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:39:22.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:39:22.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:39:22.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:39:22.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:39:22.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:39:22.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:39:22.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:39:22.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:39:22.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:39:22.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:39:22.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:39:22.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:39:22.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:39:22.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:39:22.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:22.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:22.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:39:22.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:39:22.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:39:22.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:39:22.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:22.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:22.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:39:22.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:39:22.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:39:22.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:39:22.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:39:22.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:39:22.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:39:22.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:39:22.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:22.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:22.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:39:22.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:39:22.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:39:22.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:39:22.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:39:22.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:39:22.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:39:22.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: main() 2024-01-13T07:39:22.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:39:22.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:39:22.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:39:22.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:39:22.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:39:22.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:39:22.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:39:22.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:39:22.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:39:22.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:39:22.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:39:22.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:39:22.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:39:22.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:39:22.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmphnt_8grb:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpjbjaozdc:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:39:22.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: cephadm 2024-01-13T07:39:20.704009+0000 mgr.smithi039.fbdzkl (mgr.14184) 36 : cephadm [ERR] Failed to apply osd.all-available-devices spec DriveGroupSpec.from_json(yaml.safe_load('''service_type: osd 2024-01-13T07:39:22.501 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: service_id: all-available-devices 2024-01-13T07:39:22.501 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: service_name: osd.all-available-devices 2024-01-13T07:39:22.501 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: placement: 2024-01-13T07:39:22.501 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: host_pattern: '*' 2024-01-13T07:39:22.501 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: spec: 2024-01-13T07:39:22.501 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: data_devices: 2024-01-13T07:39:22.501 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: all: true 2024-01-13T07:39:22.501 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: filter_logic: AND 2024-01-13T07:39:22.501 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: objectstore: bluestore 2024-01-13T07:39:22.501 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: ''')): cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:39:22.501 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp7jsws0am:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp09s_3_1x:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:39:22.501 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:39:22.501 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:39:22.501 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:39:22.502 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new 2cf297d3-0e0c-4424-a4cb-e96d6513f8da 2024-01-13T07:39:22.502 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:39:22.502 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:39:22.502 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:39:22.502 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:39:22.502 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:39:22.502 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:39:22.502 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:22.502 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:22.502 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:39:22.502 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:39:22.502 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:39:22.502 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:39:22.503 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:39:22.503 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:39:22.503 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:39:22.503 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:39:22.503 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:39:22.503 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:39:22.503 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:39:22.503 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:39:22.503 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:39:22.503 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:39:22.503 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:39:22.503 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:39:22.503 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:39:22.503 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:39:22.503 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:39:22.504 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:39:22.504 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:39:22.504 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:39:22.504 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:39:22.504 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:39:22.504 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:39:22.504 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:22.504 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:22.504 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:39:22.504 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:39:22.504 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:39:22.504 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:39:22.504 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:22.505 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:22.505 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:39:22.505 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:39:22.505 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:39:22.505 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:39:22.505 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:39:22.505 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:39:22.505 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:39:22.505 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:39:22.505 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:22.505 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:22.505 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:39:22.505 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:39:22.505 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:39:22.505 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:39:22.506 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:39:22.506 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:39:22.506 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:39:22.506 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: main() 2024-01-13T07:39:22.506 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:39:22.506 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:39:22.506 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:39:22.506 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:39:22.506 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:39:22.506 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:39:22.506 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:39:22.506 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:39:22.507 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:39:22.507 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:39:22.507 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:39:22.507 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:39:22.507 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:39:22.508 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:39:22.508 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp7jsws0am:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp09s_3_1x:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:39:22.508 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:39:22.508 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 521, in _apply_all_services 2024-01-13T07:39:22.508 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: if self._apply_service(spec): 2024-01-13T07:39:22.508 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 595, in _apply_service 2024-01-13T07:39:22.508 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: self.mgr.osd_service.create_from_spec(cast(DriveGroupSpec, spec)) 2024-01-13T07:39:22.508 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 73, in create_from_spec 2024-01-13T07:39:22.508 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: ret = create_from_spec_one(self.prepare_drivegroup(drive_group)) 2024-01-13T07:39:22.508 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 83, in forall_hosts_wrapper 2024-01-13T07:39:22.508 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: return CephadmOrchestrator.instance._worker_pool.map(do_work, vals) 2024-01-13T07:39:22.508 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 266, in map 2024-01-13T07:39:22.508 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: return self._map_async(func, iterable, mapstar, chunksize).get() 2024-01-13T07:39:22.508 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 644, in get 2024-01-13T07:39:22.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: raise self._value 2024-01-13T07:39:22.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 119, in worker 2024-01-13T07:39:22.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: result = (True, func(*args, **kwds)) 2024-01-13T07:39:22.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 44, in mapstar 2024-01-13T07:39:22.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: return list(map(*args)) 2024-01-13T07:39:22.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:39:22.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:39:22.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:39:22.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:39:22.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:39:22.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:39:22.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:39:22.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp7jsws0am:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp09s_3_1x:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:39:22.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:39:22.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:39:22.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:39:22.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new 2cf297d3-0e0c-4424-a4cb-e96d6513f8da 2024-01-13T07:39:22.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:39:22.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:39:22.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:39:22.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:39:22.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:39:22.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:39:22.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:22.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:22.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:39:22.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:39:22.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:39:22.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:39:22.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:39:22.511 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:39:22.511 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:39:22.511 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:39:22.511 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:39:22.511 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:39:22.511 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:39:22.511 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:39:22.511 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:39:22.511 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:39:22.511 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:39:22.511 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:39:22.511 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:39:22.511 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:39:22.511 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:39:22.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:39:22.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:39:22.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:39:22.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:39:22.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:39:22.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:39:22.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:22.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:22.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:39:22.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:39:22.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:39:22.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:39:22.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:22.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:22.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:39:22.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:39:22.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:39:22.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:39:22.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:39:22.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:39:22.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:39:22.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:39:22.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:22.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:22.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:39:22.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:39:22.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:39:22.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:39:22.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:39:22.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:39:22.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:39:22.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: main() 2024-01-13T07:39:22.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:39:22.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:39:22.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:39:22.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:39:22.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:39:22.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:39:22.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:39:22.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:39:22.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:39:22.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:39:22.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:39:22.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:39:22.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:39:22.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:39:22.515 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp7jsws0am:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp09s_3_1x:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:39:22.515 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: cephadm 2024-01-13T07:39:20.704934+0000 mgr.smithi039.fbdzkl (mgr.14184) 37 : cephadm [INF] Reconfiguring mon.smithi039 (unknown last config time)... 2024-01-13T07:39:22.515 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: cluster 2024-01-13T07:39:20.705486+0000 mgr.smithi039.fbdzkl (mgr.14184) 38 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:22.515 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:22 smithi039 bash[16208]: cephadm 2024-01-13T07:39:20.711034+0000 mgr.smithi039.fbdzkl (mgr.14184) 39 : cephadm [INF] Reconfiguring daemon mon.smithi039 on smithi039 2024-01-13T07:39:22.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: cephadm 2024-01-13T07:39:20.701245+0000 mgr.smithi039.fbdzkl (mgr.14184) 35 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:39:22.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:39:22.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:39:22.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:39:22.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:39:22.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:39:22.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:39:22.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:39:22.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi039/config 2024-01-13T07:39:22.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmphnt_8grb:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpjbjaozdc:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:39:22.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:39:22.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:39:22.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:39:22.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new 1635bc20-b315-4769-87bd-79cfcf1ace16 2024-01-13T07:39:22.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:39:22.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:39:22.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:39:22.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:39:22.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:39:22.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:39:22.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:22.747 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:22.747 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:39:22.747 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:39:22.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:39:22.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:39:22.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:39:22.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:39:22.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:39:22.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:39:22.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:39:22.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:39:22.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:39:22.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:39:22.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:39:22.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:39:22.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:39:22.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:39:22.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:39:22.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:39:22.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:39:22.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:39:22.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:39:22.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:39:22.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:39:22.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:39:22.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:39:22.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:22.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:22.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:39:22.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:39:22.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:39:22.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:39:22.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:22.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:22.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:39:22.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:39:22.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:39:22.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:39:22.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:39:22.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:39:22.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:39:22.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:39:22.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:22.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:22.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:39:22.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:39:22.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:39:22.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:39:22.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:39:22.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:39:22.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:39:22.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: main() 2024-01-13T07:39:22.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:39:22.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:39:22.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:39:22.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:39:22.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:39:22.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:39:22.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:39:22.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:39:22.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:39:22.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:39:22.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:39:22.751 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:39:22.752 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:39:22.752 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:39:22.752 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmphnt_8grb:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpjbjaozdc:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:39:22.752 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: cephadm 2024-01-13T07:39:20.704009+0000 mgr.smithi039.fbdzkl (mgr.14184) 36 : cephadm [ERR] Failed to apply osd.all-available-devices spec DriveGroupSpec.from_json(yaml.safe_load('''service_type: osd 2024-01-13T07:39:22.752 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: service_id: all-available-devices 2024-01-13T07:39:22.752 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: service_name: osd.all-available-devices 2024-01-13T07:39:22.752 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: placement: 2024-01-13T07:39:22.752 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: host_pattern: '*' 2024-01-13T07:39:22.752 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: spec: 2024-01-13T07:39:22.752 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: data_devices: 2024-01-13T07:39:22.752 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: all: true 2024-01-13T07:39:22.752 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: filter_logic: AND 2024-01-13T07:39:22.753 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: objectstore: bluestore 2024-01-13T07:39:22.753 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: ''')): cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:39:22.753 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp7jsws0am:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp09s_3_1x:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:39:22.753 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:39:22.753 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:39:22.753 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:39:22.753 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new 2cf297d3-0e0c-4424-a4cb-e96d6513f8da 2024-01-13T07:39:22.753 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:39:22.753 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:39:22.753 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:39:22.753 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:39:22.753 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:39:22.753 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:39:22.753 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:22.753 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:22.753 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:39:22.754 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:39:22.754 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:39:22.754 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:39:22.754 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:39:22.754 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:39:22.754 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:39:22.754 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:39:22.754 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:39:22.754 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:39:22.754 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:39:22.754 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:39:22.754 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:39:22.754 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:39:22.754 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:39:22.754 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:39:22.754 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:39:22.755 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:39:22.755 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:39:22.755 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:39:22.755 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:39:22.755 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:39:22.755 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:39:22.755 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:39:22.755 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:39:22.755 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:22.755 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:22.755 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:39:22.755 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:39:22.755 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:39:22.755 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:39:22.755 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:22.756 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:22.756 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:39:22.756 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:39:22.756 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:39:22.756 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:39:22.756 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:39:22.756 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:39:22.756 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:39:22.756 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:39:22.756 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:22.756 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:22.756 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:39:22.756 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:39:22.756 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:39:22.756 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:39:22.757 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:39:22.757 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:39:22.757 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:39:22.757 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: main() 2024-01-13T07:39:22.757 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:39:22.757 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:39:22.757 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:39:22.757 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:39:22.757 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:39:22.757 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:39:22.757 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:39:22.757 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:39:22.758 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:39:22.758 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:39:22.758 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:39:22.758 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:39:22.758 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:39:22.758 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:39:22.758 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp7jsws0am:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp09s_3_1x:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:39:22.758 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:39:22.759 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 521, in _apply_all_services 2024-01-13T07:39:22.759 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: if self._apply_service(spec): 2024-01-13T07:39:22.759 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 595, in _apply_service 2024-01-13T07:39:22.759 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: self.mgr.osd_service.create_from_spec(cast(DriveGroupSpec, spec)) 2024-01-13T07:39:22.759 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 73, in create_from_spec 2024-01-13T07:39:22.759 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: ret = create_from_spec_one(self.prepare_drivegroup(drive_group)) 2024-01-13T07:39:22.759 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 83, in forall_hosts_wrapper 2024-01-13T07:39:22.759 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: return CephadmOrchestrator.instance._worker_pool.map(do_work, vals) 2024-01-13T07:39:22.759 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 266, in map 2024-01-13T07:39:22.759 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: return self._map_async(func, iterable, mapstar, chunksize).get() 2024-01-13T07:39:22.759 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 644, in get 2024-01-13T07:39:22.759 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: raise self._value 2024-01-13T07:39:22.759 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 119, in worker 2024-01-13T07:39:22.759 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: result = (True, func(*args, **kwds)) 2024-01-13T07:39:22.759 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 44, in mapstar 2024-01-13T07:39:22.760 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: return list(map(*args)) 2024-01-13T07:39:22.760 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:39:22.760 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:39:22.760 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:39:22.760 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:39:22.760 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:39:22.760 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:39:22.760 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:39:22.760 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp7jsws0am:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp09s_3_1x:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:39:22.760 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:39:22.760 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:39:22.760 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:39:22.760 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new 2cf297d3-0e0c-4424-a4cb-e96d6513f8da 2024-01-13T07:39:22.760 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:39:22.761 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:39:22.761 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:39:22.761 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:39:22.761 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:39:22.761 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:39:22.761 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:22.761 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:22.761 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:39:22.761 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:39:22.761 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:39:22.761 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:39:22.761 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:39:22.761 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:39:22.761 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:39:22.761 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:39:22.762 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:39:22.762 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:39:22.762 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:39:22.762 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:39:22.762 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:39:22.762 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:39:22.762 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:39:22.762 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:39:22.762 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:39:22.762 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:39:22.762 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:39:22.762 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:39:22.762 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:39:22.762 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:39:22.762 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:39:22.763 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:39:22.763 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:39:22.763 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:22.763 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:22.763 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:39:22.763 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:39:22.763 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:39:22.763 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:39:22.763 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:22.763 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:22.763 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:39:22.763 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:39:22.763 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:39:22.763 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:39:22.763 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:39:22.764 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:39:22.764 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:39:22.764 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:39:22.764 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:39:22.764 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:39:22.764 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:39:22.764 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:39:22.764 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:39:22.764 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:39:22.764 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:39:22.764 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:39:22.764 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:39:22.764 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: main() 2024-01-13T07:39:22.764 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:39:22.765 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:39:22.765 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:39:22.765 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:39:22.765 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:39:22.765 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:39:22.765 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:39:22.765 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:39:22.765 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:39:22.765 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:39:22.765 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:39:22.765 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:39:22.765 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:39:22.765 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:39:22.765 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp7jsws0am:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp09s_3_1x:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:39:22.765 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: cephadm 2024-01-13T07:39:20.704934+0000 mgr.smithi039.fbdzkl (mgr.14184) 37 : cephadm [INF] Reconfiguring mon.smithi039 (unknown last config time)... 2024-01-13T07:39:22.765 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: cluster 2024-01-13T07:39:20.705486+0000 mgr.smithi039.fbdzkl (mgr.14184) 38 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:22.766 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:22 smithi100 bash[20091]: cephadm 2024-01-13T07:39:20.711034+0000 mgr.smithi039.fbdzkl (mgr.14184) 39 : cephadm [INF] Reconfiguring daemon mon.smithi039 on smithi039 2024-01-13T07:39:24.456 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:24 smithi039 bash[16208]: cluster 2024-01-13T07:39:22.706999+0000 mgr.smithi039.fbdzkl (mgr.14184) 40 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:24.457 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:24 smithi039 bash[16208]: audit 2024-01-13T07:39:23.119745+0000 mon.smithi039 (mon.0) 229 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:24.457 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:24 smithi039 bash[16208]: cephadm 2024-01-13T07:39:23.120727+0000 mgr.smithi039.fbdzkl (mgr.14184) 41 : cephadm [INF] Reconfiguring mgr.smithi039.fbdzkl (unknown last config time)... 2024-01-13T07:39:24.457 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:24 smithi039 bash[16208]: audit 2024-01-13T07:39:23.121310+0000 mon.smithi039 (mon.0) 230 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi039.fbdzkl", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-01-13T07:39:24.457 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:24 smithi039 bash[16208]: audit 2024-01-13T07:39:23.122936+0000 mon.smithi039 (mon.0) 231 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mgr services"}]: dispatch 2024-01-13T07:39:24.457 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:24 smithi039 bash[16208]: audit 2024-01-13T07:39:23.124271+0000 mon.smithi039 (mon.0) 232 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:39:24.457 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:24 smithi039 bash[16208]: cephadm 2024-01-13T07:39:23.125393+0000 mgr.smithi039.fbdzkl (mgr.14184) 42 : cephadm [INF] Reconfiguring daemon mgr.smithi039.fbdzkl on smithi039 2024-01-13T07:39:24.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:24 smithi100 bash[20091]: cluster 2024-01-13T07:39:22.706999+0000 mgr.smithi039.fbdzkl (mgr.14184) 40 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:24.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:24 smithi100 bash[20091]: audit 2024-01-13T07:39:23.119745+0000 mon.smithi039 (mon.0) 229 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:24.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:24 smithi100 bash[20091]: cephadm 2024-01-13T07:39:23.120727+0000 mgr.smithi039.fbdzkl (mgr.14184) 41 : cephadm [INF] Reconfiguring mgr.smithi039.fbdzkl (unknown last config time)... 2024-01-13T07:39:24.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:24 smithi100 bash[20091]: audit 2024-01-13T07:39:23.121310+0000 mon.smithi039 (mon.0) 230 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi039.fbdzkl", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-01-13T07:39:24.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:24 smithi100 bash[20091]: audit 2024-01-13T07:39:23.122936+0000 mon.smithi039 (mon.0) 231 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mgr services"}]: dispatch 2024-01-13T07:39:24.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:24 smithi100 bash[20091]: audit 2024-01-13T07:39:23.124271+0000 mon.smithi039 (mon.0) 232 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:39:24.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:24 smithi100 bash[20091]: cephadm 2024-01-13T07:39:23.125393+0000 mgr.smithi039.fbdzkl (mgr.14184) 42 : cephadm [INF] Reconfiguring daemon mgr.smithi039.fbdzkl on smithi039 2024-01-13T07:39:25.942 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:39:26.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:26 smithi039 bash[16208]: cluster 2024-01-13T07:39:24.708070+0000 mgr.smithi039.fbdzkl (mgr.14184) 43 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:26.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:26 smithi039 bash[16208]: audit 2024-01-13T07:39:25.555236+0000 mon.smithi039 (mon.0) 233 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:26.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:26 smithi039 bash[16208]: audit 2024-01-13T07:39:25.942142+0000 mon.smithi039 (mon.0) 234 : audit [DBG] from='client.? 172.21.15.39:0/1906253485' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:39:26.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:26 smithi100 bash[20091]: cluster 2024-01-13T07:39:24.708070+0000 mgr.smithi039.fbdzkl (mgr.14184) 43 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:26.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:26 smithi100 bash[20091]: audit 2024-01-13T07:39:25.555236+0000 mon.smithi039 (mon.0) 233 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:26.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:26 smithi100 bash[20091]: audit 2024-01-13T07:39:25.942142+0000 mon.smithi039 (mon.0) 234 : audit [DBG] from='client.? 172.21.15.39:0/1906253485' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:39:26.693 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":9,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:39:27.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:27 smithi039 bash[16208]: cephadm 2024-01-13T07:39:25.556513+0000 mgr.smithi039.fbdzkl (mgr.14184) 44 : cephadm [INF] Reconfiguring alertmanager.smithi039 (dependencies changed)... 2024-01-13T07:39:27.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:27 smithi039 bash[16208]: cephadm 2024-01-13T07:39:25.566192+0000 mgr.smithi039.fbdzkl (mgr.14184) 45 : cephadm [INF] Reconfiguring daemon alertmanager.smithi039 on smithi039 2024-01-13T07:39:27.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:27 smithi100 bash[20091]: cephadm 2024-01-13T07:39:25.556513+0000 mgr.smithi039.fbdzkl (mgr.14184) 44 : cephadm [INF] Reconfiguring alertmanager.smithi039 (dependencies changed)... 2024-01-13T07:39:27.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:27 smithi100 bash[20091]: cephadm 2024-01-13T07:39:25.566192+0000 mgr.smithi039.fbdzkl (mgr.14184) 45 : cephadm [INF] Reconfiguring daemon alertmanager.smithi039 on smithi039 2024-01-13T07:39:27.694 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:39:28.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:28 smithi039 bash[16208]: cluster 2024-01-13T07:39:26.709153+0000 mgr.smithi039.fbdzkl (mgr.14184) 46 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:28.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:28 smithi100 bash[20091]: cluster 2024-01-13T07:39:26.709153+0000 mgr.smithi039.fbdzkl (mgr.14184) 46 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:30.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:30 smithi039 bash[16208]: cluster 2024-01-13T07:39:28.710192+0000 mgr.smithi039.fbdzkl (mgr.14184) 47 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:30.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:30 smithi100 bash[20091]: cluster 2024-01-13T07:39:28.710192+0000 mgr.smithi039.fbdzkl (mgr.14184) 47 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:31.547 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:39:31.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:31 smithi039 bash[16208]: audit 2024-01-13T07:39:30.353542+0000 mon.smithi039 (mon.0) 235 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:31.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:31 smithi039 bash[16208]: audit 2024-01-13T07:39:31.184716+0000 mon.smithi039 (mon.0) 236 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:31.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:31 smithi039 bash[16208]: audit 2024-01-13T07:39:31.185838+0000 mon.smithi039 (mon.0) 237 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi039", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-01-13T07:39:31.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:31 smithi039 bash[16208]: audit 2024-01-13T07:39:31.186744+0000 mon.smithi039 (mon.0) 238 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:39:31.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:31 smithi100 bash[20091]: audit 2024-01-13T07:39:30.353542+0000 mon.smithi039 (mon.0) 235 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:31.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:31 smithi100 bash[20091]: audit 2024-01-13T07:39:31.184716+0000 mon.smithi039 (mon.0) 236 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:31.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:31 smithi100 bash[20091]: audit 2024-01-13T07:39:31.185838+0000 mon.smithi039 (mon.0) 237 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi039", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-01-13T07:39:31.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:31 smithi100 bash[20091]: audit 2024-01-13T07:39:31.186744+0000 mon.smithi039 (mon.0) 238 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:39:32.505 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":9,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:39:32.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:32 smithi039 bash[16208]: cluster 2024-01-13T07:39:30.711187+0000 mgr.smithi039.fbdzkl (mgr.14184) 48 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:32.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:32 smithi039 bash[16208]: cephadm 2024-01-13T07:39:31.185495+0000 mgr.smithi039.fbdzkl (mgr.14184) 49 : cephadm [INF] Reconfiguring crash.smithi039 (monmap changed)... 2024-01-13T07:39:32.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:32 smithi039 bash[16208]: cephadm 2024-01-13T07:39:31.187652+0000 mgr.smithi039.fbdzkl (mgr.14184) 50 : cephadm [INF] Reconfiguring daemon crash.smithi039 on smithi039 2024-01-13T07:39:32.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:32 smithi039 bash[16208]: audit 2024-01-13T07:39:31.546380+0000 mon.smithi039 (mon.0) 239 : audit [DBG] from='client.? 172.21.15.39:0/2609699152' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:39:32.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:32 smithi100 bash[20091]: cluster 2024-01-13T07:39:30.711187+0000 mgr.smithi039.fbdzkl (mgr.14184) 48 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:32.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:32 smithi100 bash[20091]: cephadm 2024-01-13T07:39:31.185495+0000 mgr.smithi039.fbdzkl (mgr.14184) 49 : cephadm [INF] Reconfiguring crash.smithi039 (monmap changed)... 2024-01-13T07:39:32.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:32 smithi100 bash[20091]: cephadm 2024-01-13T07:39:31.187652+0000 mgr.smithi039.fbdzkl (mgr.14184) 50 : cephadm [INF] Reconfiguring daemon crash.smithi039 on smithi039 2024-01-13T07:39:32.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:32 smithi100 bash[20091]: audit 2024-01-13T07:39:31.546380+0000 mon.smithi039 (mon.0) 239 : audit [DBG] from='client.? 172.21.15.39:0/2609699152' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:39:33.506 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:39:34.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:34 smithi039 bash[16208]: cluster 2024-01-13T07:39:32.712455+0000 mgr.smithi039.fbdzkl (mgr.14184) 51 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:34.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:34 smithi039 bash[16208]: audit 2024-01-13T07:39:33.708586+0000 mon.smithi039 (mon.0) 240 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:34.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:34 smithi100 bash[20091]: cluster 2024-01-13T07:39:32.712455+0000 mgr.smithi039.fbdzkl (mgr.14184) 51 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:34.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:34 smithi100 bash[20091]: audit 2024-01-13T07:39:33.708586+0000 mon.smithi039 (mon.0) 240 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:35.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:35 smithi039 bash[16208]: cephadm 2024-01-13T07:39:33.710151+0000 mgr.smithi039.fbdzkl (mgr.14184) 52 : cephadm [INF] Reconfiguring grafana.smithi039 (dependencies changed)... 2024-01-13T07:39:35.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:35 smithi039 bash[16208]: cephadm 2024-01-13T07:39:33.755977+0000 mgr.smithi039.fbdzkl (mgr.14184) 53 : cephadm [INF] Reconfiguring daemon grafana.smithi039 on smithi039 2024-01-13T07:39:35.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:35 smithi100 bash[20091]: cephadm 2024-01-13T07:39:33.710151+0000 mgr.smithi039.fbdzkl (mgr.14184) 52 : cephadm [INF] Reconfiguring grafana.smithi039 (dependencies changed)... 2024-01-13T07:39:35.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:35 smithi100 bash[20091]: cephadm 2024-01-13T07:39:33.755977+0000 mgr.smithi039.fbdzkl (mgr.14184) 53 : cephadm [INF] Reconfiguring daemon grafana.smithi039 on smithi039 2024-01-13T07:39:36.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:36 smithi039 bash[16208]: cluster 2024-01-13T07:39:34.713497+0000 mgr.smithi039.fbdzkl (mgr.14184) 54 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:36.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:36 smithi100 bash[20091]: cluster 2024-01-13T07:39:34.713497+0000 mgr.smithi039.fbdzkl (mgr.14184) 54 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:37.622 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:39:38.308 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":9,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:39:38.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:38 smithi039 bash[16208]: cluster 2024-01-13T07:39:36.714652+0000 mgr.smithi039.fbdzkl (mgr.14184) 55 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:38.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:38 smithi039 bash[16208]: audit 2024-01-13T07:39:37.621683+0000 mon.smithi039 (mon.0) 241 : audit [DBG] from='client.? 172.21.15.39:0/2945736662' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:39:38.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:38 smithi100 bash[20091]: cluster 2024-01-13T07:39:36.714652+0000 mgr.smithi039.fbdzkl (mgr.14184) 55 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:38.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:38 smithi100 bash[20091]: audit 2024-01-13T07:39:37.621683+0000 mon.smithi039 (mon.0) 241 : audit [DBG] from='client.? 172.21.15.39:0/2945736662' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:39:39.309 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:39:40.335 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:40 smithi100 bash[20091]: cluster 2024-01-13T07:39:38.715769+0000 mgr.smithi039.fbdzkl (mgr.14184) 56 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:40.335 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:40 smithi100 bash[20091]: audit 2024-01-13T07:39:39.061718+0000 mon.smithi039 (mon.0) 242 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:40.335 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:40 smithi100 bash[20091]: cephadm 2024-01-13T07:39:39.063066+0000 mgr.smithi039.fbdzkl (mgr.14184) 57 : cephadm [INF] Reconfiguring crash.smithi100 (monmap changed)... 2024-01-13T07:39:40.335 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:40 smithi100 bash[20091]: audit 2024-01-13T07:39:39.063538+0000 mon.smithi039 (mon.0) 243 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi100", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-01-13T07:39:40.335 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:40 smithi100 bash[20091]: audit 2024-01-13T07:39:39.064735+0000 mon.smithi039 (mon.0) 244 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:39:40.336 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:40 smithi100 bash[20091]: cephadm 2024-01-13T07:39:39.065758+0000 mgr.smithi039.fbdzkl (mgr.14184) 58 : cephadm [INF] Reconfiguring daemon crash.smithi100 on smithi100 2024-01-13T07:39:40.363 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:40 smithi039 bash[16208]: cluster 2024-01-13T07:39:38.715769+0000 mgr.smithi039.fbdzkl (mgr.14184) 56 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:40.363 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:40 smithi039 bash[16208]: audit 2024-01-13T07:39:39.061718+0000 mon.smithi039 (mon.0) 242 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:40.363 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:40 smithi039 bash[16208]: cephadm 2024-01-13T07:39:39.063066+0000 mgr.smithi039.fbdzkl (mgr.14184) 57 : cephadm [INF] Reconfiguring crash.smithi100 (monmap changed)... 2024-01-13T07:39:40.363 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:40 smithi039 bash[16208]: audit 2024-01-13T07:39:39.063538+0000 mon.smithi039 (mon.0) 243 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi100", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-01-13T07:39:40.363 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:40 smithi039 bash[16208]: audit 2024-01-13T07:39:39.064735+0000 mon.smithi039 (mon.0) 244 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:39:40.364 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:40 smithi039 bash[16208]: cephadm 2024-01-13T07:39:39.065758+0000 mgr.smithi039.fbdzkl (mgr.14184) 58 : cephadm [INF] Reconfiguring daemon crash.smithi100 on smithi100 2024-01-13T07:39:42.014 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:41 smithi100 bash[20091]: cluster 2024-01-13T07:39:40.716424+0000 mgr.smithi039.fbdzkl (mgr.14184) 59 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:42.014 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:41 smithi100 bash[20091]: audit 2024-01-13T07:39:40.865735+0000 mon.smithi039 (mon.0) 245 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:42.014 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:41 smithi100 bash[20091]: cephadm 2024-01-13T07:39:40.867227+0000 mgr.smithi039.fbdzkl (mgr.14184) 60 : cephadm [INF] Reconfiguring mgr.smithi100.mvjdpm (monmap changed)... 2024-01-13T07:39:42.014 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:41 smithi100 bash[20091]: audit 2024-01-13T07:39:40.867854+0000 mon.smithi039 (mon.0) 246 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi100.mvjdpm", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-01-13T07:39:42.014 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:41 smithi100 bash[20091]: audit 2024-01-13T07:39:40.869650+0000 mon.smithi039 (mon.0) 247 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mgr services"}]: dispatch 2024-01-13T07:39:42.014 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:41 smithi100 bash[20091]: audit 2024-01-13T07:39:40.871128+0000 mon.smithi039 (mon.0) 248 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:39:42.014 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:41 smithi100 bash[20091]: cephadm 2024-01-13T07:39:40.872626+0000 mgr.smithi039.fbdzkl (mgr.14184) 61 : cephadm [INF] Reconfiguring daemon mgr.smithi100.mvjdpm on smithi100 2024-01-13T07:39:42.119 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:41 smithi039 bash[16208]: cluster 2024-01-13T07:39:40.716424+0000 mgr.smithi039.fbdzkl (mgr.14184) 59 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:42.119 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:41 smithi039 bash[16208]: audit 2024-01-13T07:39:40.865735+0000 mon.smithi039 (mon.0) 245 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:42.119 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:41 smithi039 bash[16208]: cephadm 2024-01-13T07:39:40.867227+0000 mgr.smithi039.fbdzkl (mgr.14184) 60 : cephadm [INF] Reconfiguring mgr.smithi100.mvjdpm (monmap changed)... 2024-01-13T07:39:42.120 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:41 smithi039 bash[16208]: audit 2024-01-13T07:39:40.867854+0000 mon.smithi039 (mon.0) 246 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi100.mvjdpm", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-01-13T07:39:42.120 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:41 smithi039 bash[16208]: audit 2024-01-13T07:39:40.869650+0000 mon.smithi039 (mon.0) 247 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "mgr services"}]: dispatch 2024-01-13T07:39:42.120 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:41 smithi039 bash[16208]: audit 2024-01-13T07:39:40.871128+0000 mon.smithi039 (mon.0) 248 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:39:42.120 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:41 smithi039 bash[16208]: cephadm 2024-01-13T07:39:40.872626+0000 mgr.smithi039.fbdzkl (mgr.14184) 61 : cephadm [INF] Reconfiguring daemon mgr.smithi100.mvjdpm on smithi100 2024-01-13T07:39:42.460 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:39:43.018 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":9,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:39:43.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:42 smithi039 bash[16208]: audit 2024-01-13T07:39:42.460348+0000 mon.smithi039 (mon.0) 249 : audit [DBG] from='client.? 172.21.15.39:0/1760381479' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:39:43.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:42 smithi039 bash[16208]: audit 2024-01-13T07:39:42.545731+0000 mon.smithi039 (mon.0) 250 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:43.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:42 smithi039 bash[16208]: audit 2024-01-13T07:39:42.547744+0000 mon.smithi039 (mon.0) 251 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-01-13T07:39:43.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:42 smithi039 bash[16208]: audit 2024-01-13T07:39:42.549292+0000 mon.smithi039 (mon.0) 252 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-01-13T07:39:43.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:42 smithi039 bash[16208]: audit 2024-01-13T07:39:42.550820+0000 mon.smithi039 (mon.0) 253 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:39:43.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:42 smithi100 bash[20091]: audit 2024-01-13T07:39:42.460348+0000 mon.smithi039 (mon.0) 249 : audit [DBG] from='client.? 172.21.15.39:0/1760381479' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:39:43.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:42 smithi100 bash[20091]: audit 2024-01-13T07:39:42.545731+0000 mon.smithi039 (mon.0) 250 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:43.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:42 smithi100 bash[20091]: audit 2024-01-13T07:39:42.547744+0000 mon.smithi039 (mon.0) 251 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-01-13T07:39:43.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:42 smithi100 bash[20091]: audit 2024-01-13T07:39:42.549292+0000 mon.smithi039 (mon.0) 252 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-01-13T07:39:43.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:42 smithi100 bash[20091]: audit 2024-01-13T07:39:42.550820+0000 mon.smithi039 (mon.0) 253 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:39:44.019 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:39:44.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:43 smithi039 bash[16208]: cephadm 2024-01-13T07:39:42.547201+0000 mgr.smithi039.fbdzkl (mgr.14184) 62 : cephadm [INF] Reconfiguring mon.smithi100 (monmap changed)... 2024-01-13T07:39:44.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:43 smithi039 bash[16208]: cephadm 2024-01-13T07:39:42.552163+0000 mgr.smithi039.fbdzkl (mgr.14184) 63 : cephadm [INF] Reconfiguring daemon mon.smithi100 on smithi100 2024-01-13T07:39:44.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:43 smithi039 bash[16208]: cluster 2024-01-13T07:39:42.717505+0000 mgr.smithi039.fbdzkl (mgr.14184) 64 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:44.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:43 smithi100 bash[20091]: cephadm 2024-01-13T07:39:42.547201+0000 mgr.smithi039.fbdzkl (mgr.14184) 62 : cephadm [INF] Reconfiguring mon.smithi100 (monmap changed)... 2024-01-13T07:39:44.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:43 smithi100 bash[20091]: cephadm 2024-01-13T07:39:42.552163+0000 mgr.smithi039.fbdzkl (mgr.14184) 63 : cephadm [INF] Reconfiguring daemon mon.smithi100 on smithi100 2024-01-13T07:39:44.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:43 smithi100 bash[20091]: cluster 2024-01-13T07:39:42.717505+0000 mgr.smithi039.fbdzkl (mgr.14184) 64 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:45.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:45 smithi039 bash[16208]: audit 2024-01-13T07:39:44.335986+0000 mon.smithi039 (mon.0) 254 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:45.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:45 smithi039 bash[16208]: audit 2024-01-13T07:39:44.344403+0000 mon.smithi039 (mon.0) 255 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-01-13T07:39:45.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:45 smithi039 bash[16208]: audit 2024-01-13T07:39:44.345427+0000 mgr.smithi039.fbdzkl (mgr.14184) 65 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-01-13T07:39:45.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:45 smithi039 bash[16208]: audit 2024-01-13T07:39:44.347773+0000 mon.smithi039 (mon.0) 256 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi039.front.sepia.ceph.com:9093"}]: dispatch 2024-01-13T07:39:45.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:45 smithi039 bash[16208]: audit 2024-01-13T07:39:44.348608+0000 mgr.smithi039.fbdzkl (mgr.14184) 66 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi039.front.sepia.ceph.com:9093"}]: dispatch 2024-01-13T07:39:45.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:45 smithi039 bash[16208]: audit 2024-01-13T07:39:44.360816+0000 mon.smithi039 (mon.0) 257 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:45.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:45 smithi039 bash[16208]: audit 2024-01-13T07:39:44.369639+0000 mon.smithi039 (mon.0) 258 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-01-13T07:39:45.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:45 smithi039 bash[16208]: audit 2024-01-13T07:39:44.370563+0000 mgr.smithi039.fbdzkl (mgr.14184) 67 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-01-13T07:39:45.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:45 smithi039 bash[16208]: audit 2024-01-13T07:39:44.390075+0000 mon.smithi039 (mon.0) 259 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi039.front.sepia.ceph.com:3000"}]: dispatch 2024-01-13T07:39:45.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:45 smithi039 bash[16208]: audit 2024-01-13T07:39:44.390970+0000 mgr.smithi039.fbdzkl (mgr.14184) 68 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi039.front.sepia.ceph.com:3000"}]: dispatch 2024-01-13T07:39:45.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:45 smithi039 bash[16208]: audit 2024-01-13T07:39:44.400004+0000 mon.smithi039 (mon.0) 260 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:45.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:45 smithi039 bash[16208]: audit 2024-01-13T07:39:44.410363+0000 mon.smithi039 (mon.0) 261 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-01-13T07:39:45.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:45 smithi039 bash[16208]: audit 2024-01-13T07:39:44.411350+0000 mgr.smithi039.fbdzkl (mgr.14184) 69 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-01-13T07:39:45.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:45 smithi039 bash[16208]: audit 2024-01-13T07:39:44.419607+0000 mon.smithi039 (mon.0) 262 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi100.front.sepia.ceph.com:9095"}]: dispatch 2024-01-13T07:39:45.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:45 smithi039 bash[16208]: audit 2024-01-13T07:39:44.420213+0000 mgr.smithi039.fbdzkl (mgr.14184) 70 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi100.front.sepia.ceph.com:9095"}]: dispatch 2024-01-13T07:39:45.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:45 smithi039 bash[16208]: audit 2024-01-13T07:39:44.427093+0000 mon.smithi039 (mon.0) 263 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:45.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:45 smithi039 bash[16208]: audit 2024-01-13T07:39:44.433863+0000 mon.smithi039 (mon.0) 264 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:39:45.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:45 smithi100 bash[20091]: audit 2024-01-13T07:39:44.335986+0000 mon.smithi039 (mon.0) 254 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:45.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:45 smithi100 bash[20091]: audit 2024-01-13T07:39:44.344403+0000 mon.smithi039 (mon.0) 255 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-01-13T07:39:45.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:45 smithi100 bash[20091]: audit 2024-01-13T07:39:44.345427+0000 mgr.smithi039.fbdzkl (mgr.14184) 65 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-01-13T07:39:45.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:45 smithi100 bash[20091]: audit 2024-01-13T07:39:44.347773+0000 mon.smithi039 (mon.0) 256 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi039.front.sepia.ceph.com:9093"}]: dispatch 2024-01-13T07:39:45.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:45 smithi100 bash[20091]: audit 2024-01-13T07:39:44.348608+0000 mgr.smithi039.fbdzkl (mgr.14184) 66 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi039.front.sepia.ceph.com:9093"}]: dispatch 2024-01-13T07:39:45.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:45 smithi100 bash[20091]: audit 2024-01-13T07:39:44.360816+0000 mon.smithi039 (mon.0) 257 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:45.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:45 smithi100 bash[20091]: audit 2024-01-13T07:39:44.369639+0000 mon.smithi039 (mon.0) 258 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-01-13T07:39:45.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:45 smithi100 bash[20091]: audit 2024-01-13T07:39:44.370563+0000 mgr.smithi039.fbdzkl (mgr.14184) 67 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-01-13T07:39:45.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:45 smithi100 bash[20091]: audit 2024-01-13T07:39:44.390075+0000 mon.smithi039 (mon.0) 259 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi039.front.sepia.ceph.com:3000"}]: dispatch 2024-01-13T07:39:45.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:45 smithi100 bash[20091]: audit 2024-01-13T07:39:44.390970+0000 mgr.smithi039.fbdzkl (mgr.14184) 68 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi039.front.sepia.ceph.com:3000"}]: dispatch 2024-01-13T07:39:45.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:45 smithi100 bash[20091]: audit 2024-01-13T07:39:44.400004+0000 mon.smithi039 (mon.0) 260 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:45.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:45 smithi100 bash[20091]: audit 2024-01-13T07:39:44.410363+0000 mon.smithi039 (mon.0) 261 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-01-13T07:39:45.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:45 smithi100 bash[20091]: audit 2024-01-13T07:39:44.411350+0000 mgr.smithi039.fbdzkl (mgr.14184) 69 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-01-13T07:39:45.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:45 smithi100 bash[20091]: audit 2024-01-13T07:39:44.419607+0000 mon.smithi039 (mon.0) 262 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi100.front.sepia.ceph.com:9095"}]: dispatch 2024-01-13T07:39:45.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:45 smithi100 bash[20091]: audit 2024-01-13T07:39:44.420213+0000 mgr.smithi039.fbdzkl (mgr.14184) 70 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi100.front.sepia.ceph.com:9095"}]: dispatch 2024-01-13T07:39:45.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:45 smithi100 bash[20091]: audit 2024-01-13T07:39:44.427093+0000 mon.smithi039 (mon.0) 263 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:45.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:45 smithi100 bash[20091]: audit 2024-01-13T07:39:44.433863+0000 mon.smithi039 (mon.0) 264 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:39:46.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:46 smithi039 bash[16208]: cluster 2024-01-13T07:39:44.718583+0000 mgr.smithi039.fbdzkl (mgr.14184) 71 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:46.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:46 smithi100 bash[20091]: cluster 2024-01-13T07:39:44.718583+0000 mgr.smithi039.fbdzkl (mgr.14184) 71 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:46.975 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:39:47.582 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":9,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:39:47.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:47 smithi039 bash[16208]: audit 2024-01-13T07:39:46.974650+0000 mon.smithi039 (mon.0) 265 : audit [DBG] from='client.? 172.21.15.39:0/1440073762' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:39:47.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:47 smithi100 bash[20091]: audit 2024-01-13T07:39:46.974650+0000 mon.smithi039 (mon.0) 265 : audit [DBG] from='client.? 172.21.15.39:0/1440073762' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:39:48.583 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:39:48.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:48 smithi039 bash[16208]: cluster 2024-01-13T07:39:46.719557+0000 mgr.smithi039.fbdzkl (mgr.14184) 72 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:48.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:48 smithi100 bash[20091]: cluster 2024-01-13T07:39:46.719557+0000 mgr.smithi039.fbdzkl (mgr.14184) 72 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:50.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:50 smithi039 bash[16208]: cluster 2024-01-13T07:39:48.720667+0000 mgr.smithi039.fbdzkl (mgr.14184) 73 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:50.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:50 smithi039 bash[16208]: audit 2024-01-13T07:39:50.084763+0000 mon.smithi039 (mon.0) 266 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:50.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:50 smithi100 bash[20091]: cluster 2024-01-13T07:39:48.720667+0000 mgr.smithi039.fbdzkl (mgr.14184) 73 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:50.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:50 smithi100 bash[20091]: audit 2024-01-13T07:39:50.084763+0000 mon.smithi039 (mon.0) 266 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:51.506 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:39:52.066 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":9,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:39:52.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:52 smithi039 bash[16208]: cluster 2024-01-13T07:39:50.721701+0000 mgr.smithi039.fbdzkl (mgr.14184) 74 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:52.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:52 smithi039 bash[16208]: audit 2024-01-13T07:39:51.506500+0000 mon.smithi039 (mon.0) 267 : audit [DBG] from='client.? 172.21.15.39:0/254252580' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:39:52.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:52 smithi039 bash[16208]: audit 2024-01-13T07:39:51.654135+0000 mon.smithi039 (mon.0) 268 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:52.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:52 smithi039 bash[16208]: audit 2024-01-13T07:39:51.951908+0000 mon.smithi039 (mon.0) 269 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:52.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:52 smithi039 bash[16208]: audit 2024-01-13T07:39:51.953497+0000 mon.smithi039 (mon.0) 270 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:39:52.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:52 smithi039 bash[16208]: audit 2024-01-13T07:39:51.954793+0000 mon.smithi039 (mon.0) 271 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-13T07:39:52.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:52 smithi039 bash[16208]: audit 2024-01-13T07:39:51.962482+0000 mon.smithi039 (mon.0) 272 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:52.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:52 smithi039 bash[16208]: audit 2024-01-13T07:39:51.970522+0000 mon.smithi039 (mon.0) 273 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-13T07:39:52.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:52 smithi039 bash[16208]: audit 2024-01-13T07:39:51.976981+0000 mon.smithi039 (mon.0) 274 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:39:52.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:52 smithi039 bash[16208]: audit 2024-01-13T07:39:51.978323+0000 mon.smithi039 (mon.0) 275 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:39:52.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:52 smithi039 bash[16208]: audit 2024-01-13T07:39:51.978913+0000 mon.smithi039 (mon.0) 276 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:39:52.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:52 smithi039 bash[16208]: audit 2024-01-13T07:39:51.979862+0000 mon.smithi039 (mon.0) 277 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:39:52.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:52 smithi100 bash[20091]: cluster 2024-01-13T07:39:50.721701+0000 mgr.smithi039.fbdzkl (mgr.14184) 74 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:52.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:52 smithi100 bash[20091]: audit 2024-01-13T07:39:51.506500+0000 mon.smithi039 (mon.0) 267 : audit [DBG] from='client.? 172.21.15.39:0/254252580' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:39:52.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:52 smithi100 bash[20091]: audit 2024-01-13T07:39:51.654135+0000 mon.smithi039 (mon.0) 268 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:52.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:52 smithi100 bash[20091]: audit 2024-01-13T07:39:51.951908+0000 mon.smithi039 (mon.0) 269 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:52.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:52 smithi100 bash[20091]: audit 2024-01-13T07:39:51.953497+0000 mon.smithi039 (mon.0) 270 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:39:52.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:52 smithi100 bash[20091]: audit 2024-01-13T07:39:51.954793+0000 mon.smithi039 (mon.0) 271 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-13T07:39:52.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:52 smithi100 bash[20091]: audit 2024-01-13T07:39:51.962482+0000 mon.smithi039 (mon.0) 272 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:39:52.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:52 smithi100 bash[20091]: audit 2024-01-13T07:39:51.970522+0000 mon.smithi039 (mon.0) 273 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-13T07:39:52.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:52 smithi100 bash[20091]: audit 2024-01-13T07:39:51.976981+0000 mon.smithi039 (mon.0) 274 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:39:52.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:52 smithi100 bash[20091]: audit 2024-01-13T07:39:51.978323+0000 mon.smithi039 (mon.0) 275 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:39:52.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:52 smithi100 bash[20091]: audit 2024-01-13T07:39:51.978913+0000 mon.smithi039 (mon.0) 276 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:39:52.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:52 smithi100 bash[20091]: audit 2024-01-13T07:39:51.979862+0000 mon.smithi039 (mon.0) 277 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:39:53.067 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:39:53.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:53 smithi039 bash[16208]: cluster 2024-01-13T07:39:51.963191+0000 mgr.smithi039.fbdzkl (mgr.14184) 75 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:53.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:53 smithi039 bash[16208]: cluster 2024-01-13T07:39:52.959956+0000 mon.smithi039 (mon.0) 278 : cluster [INF] Health check cleared: CEPHADM_APPLY_SPEC_FAIL (was: Failed to apply 1 service(s): osd.all-available-devices) 2024-01-13T07:39:53.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:53 smithi039 bash[16208]: cluster 2024-01-13T07:39:52.960034+0000 mon.smithi039 (mon.0) 279 : cluster [INF] Cluster is now healthy 2024-01-13T07:39:53.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:53 smithi100 bash[20091]: cluster 2024-01-13T07:39:51.963191+0000 mgr.smithi039.fbdzkl (mgr.14184) 75 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:53.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:53 smithi100 bash[20091]: cluster 2024-01-13T07:39:52.959956+0000 mon.smithi039 (mon.0) 278 : cluster [INF] Health check cleared: CEPHADM_APPLY_SPEC_FAIL (was: Failed to apply 1 service(s): osd.all-available-devices) 2024-01-13T07:39:53.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:53 smithi100 bash[20091]: cluster 2024-01-13T07:39:52.960034+0000 mon.smithi039 (mon.0) 279 : cluster [INF] Cluster is now healthy 2024-01-13T07:39:55.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:55 smithi039 bash[16208]: cluster 2024-01-13T07:39:53.963647+0000 mgr.smithi039.fbdzkl (mgr.14184) 76 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:55.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:55 smithi100 bash[20091]: cluster 2024-01-13T07:39:53.963647+0000 mgr.smithi039.fbdzkl (mgr.14184) 76 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:55.976 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:39:56.529 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":9,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:39:56.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:56 smithi039 bash[16208]: audit 2024-01-13T07:39:55.976025+0000 mon.smithi039 (mon.0) 280 : audit [DBG] from='client.? 172.21.15.39:0/4075680697' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:39:56.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:56 smithi100 bash[20091]: audit 2024-01-13T07:39:55.976025+0000 mon.smithi039 (mon.0) 280 : audit [DBG] from='client.? 172.21.15.39:0/4075680697' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:39:57.531 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:39:57.742 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:57 smithi039 bash[16208]: cluster 2024-01-13T07:39:55.964060+0000 mgr.smithi039.fbdzkl (mgr.14184) 77 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:57.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:57 smithi100 bash[20091]: cluster 2024-01-13T07:39:55.964060+0000 mgr.smithi039.fbdzkl (mgr.14184) 77 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:59.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:39:59 smithi039 bash[16208]: cluster 2024-01-13T07:39:57.964523+0000 mgr.smithi039.fbdzkl (mgr.14184) 78 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:39:59.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:39:59 smithi100 bash[20091]: cluster 2024-01-13T07:39:57.964523+0000 mgr.smithi039.fbdzkl (mgr.14184) 78 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:01.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:00 smithi039 bash[16208]: cluster 2024-01-13T07:39:59.964996+0000 mgr.smithi039.fbdzkl (mgr.14184) 79 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:01.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:00 smithi039 bash[16208]: cluster 2024-01-13T07:40:00.000108+0000 mon.smithi039 (mon.0) 281 : cluster [INF] overall HEALTH_OK 2024-01-13T07:40:01.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:00 smithi039 bash[16208]: audit 2024-01-13T07:40:00.333164+0000 mon.smithi100 (mon.1) 4 : audit [INF] from='client.? 172.21.15.100:0/3569341347' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f7b3b814-27da-401d-aaef-5cd4b60adf30"}]: dispatch 2024-01-13T07:40:01.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:00 smithi039 bash[16208]: audit 2024-01-13T07:40:00.333862+0000 mon.smithi039 (mon.0) 282 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f7b3b814-27da-401d-aaef-5cd4b60adf30"}]: dispatch 2024-01-13T07:40:01.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:00 smithi039 bash[16208]: audit 2024-01-13T07:40:00.338447+0000 mon.smithi039 (mon.0) 283 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f7b3b814-27da-401d-aaef-5cd4b60adf30"}]': finished 2024-01-13T07:40:01.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:00 smithi039 bash[16208]: cluster 2024-01-13T07:40:00.338533+0000 mon.smithi039 (mon.0) 284 : cluster [DBG] osdmap e10: 1 total, 0 up, 1 in 2024-01-13T07:40:01.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:00 smithi039 bash[16208]: audit 2024-01-13T07:40:00.338688+0000 mon.smithi039 (mon.0) 285 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:40:01.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:00 smithi039 bash[16208]: audit 2024-01-13T07:40:00.356589+0000 mon.smithi039 (mon.0) 286 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:40:01.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:00 smithi039 bash[16208]: audit 2024-01-13T07:40:00.687535+0000 mon.smithi100 (mon.1) 5 : audit [INF] from='client.? 172.21.15.100:0/1506756294' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:40:01.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:00 smithi039 bash[16208]: audit 2024-01-13T07:40:00.688385+0000 mon.smithi039 (mon.0) 287 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:40:01.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:00 smithi039 bash[16208]: audit 2024-01-13T07:40:00.697225+0000 mon.smithi039 (mon.0) 288 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:40:01.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:00 smithi039 bash[16208]: cluster 2024-01-13T07:40:00.697324+0000 mon.smithi039 (mon.0) 289 : cluster [DBG] osdmap e11: 0 total, 0 up, 0 in 2024-01-13T07:40:01.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:00 smithi100 bash[20091]: cluster 2024-01-13T07:39:59.964996+0000 mgr.smithi039.fbdzkl (mgr.14184) 79 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:01.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:00 smithi100 bash[20091]: cluster 2024-01-13T07:40:00.000108+0000 mon.smithi039 (mon.0) 281 : cluster [INF] overall HEALTH_OK 2024-01-13T07:40:01.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:00 smithi100 bash[20091]: audit 2024-01-13T07:40:00.333164+0000 mon.smithi100 (mon.1) 4 : audit [INF] from='client.? 172.21.15.100:0/3569341347' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f7b3b814-27da-401d-aaef-5cd4b60adf30"}]: dispatch 2024-01-13T07:40:01.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:00 smithi100 bash[20091]: audit 2024-01-13T07:40:00.333862+0000 mon.smithi039 (mon.0) 282 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f7b3b814-27da-401d-aaef-5cd4b60adf30"}]: dispatch 2024-01-13T07:40:01.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:00 smithi100 bash[20091]: audit 2024-01-13T07:40:00.338447+0000 mon.smithi039 (mon.0) 283 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f7b3b814-27da-401d-aaef-5cd4b60adf30"}]': finished 2024-01-13T07:40:01.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:00 smithi100 bash[20091]: cluster 2024-01-13T07:40:00.338533+0000 mon.smithi039 (mon.0) 284 : cluster [DBG] osdmap e10: 1 total, 0 up, 1 in 2024-01-13T07:40:01.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:00 smithi100 bash[20091]: audit 2024-01-13T07:40:00.338688+0000 mon.smithi039 (mon.0) 285 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:40:01.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:00 smithi100 bash[20091]: audit 2024-01-13T07:40:00.356589+0000 mon.smithi039 (mon.0) 286 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:40:01.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:00 smithi100 bash[20091]: audit 2024-01-13T07:40:00.687535+0000 mon.smithi100 (mon.1) 5 : audit [INF] from='client.? 172.21.15.100:0/1506756294' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:40:01.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:00 smithi100 bash[20091]: audit 2024-01-13T07:40:00.688385+0000 mon.smithi039 (mon.0) 287 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:40:01.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:00 smithi100 bash[20091]: audit 2024-01-13T07:40:00.697225+0000 mon.smithi039 (mon.0) 288 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:40:01.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:00 smithi100 bash[20091]: cluster 2024-01-13T07:40:00.697324+0000 mon.smithi039 (mon.0) 289 : cluster [DBG] osdmap e11: 0 total, 0 up, 0 in 2024-01-13T07:40:01.280 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:40:01.862 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":11,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:40:02.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: audit 2024-01-13T07:40:01.279905+0000 mon.smithi039 (mon.0) 290 : audit [DBG] from='client.? 172.21.15.39:0/1813983610' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:40:02.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: cephadm 2024-01-13T07:40:01.374283+0000 mgr.smithi039.fbdzkl (mgr.14184) 80 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:40:02.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:40:02.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:40:02.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:40:02.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:40:02.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:40:02.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:40:02.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:40:02.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:40:02.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp_87yqplf:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp03y_ciwm:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:02.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:40:02.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:40:02.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:40:02.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new f7b3b814-27da-401d-aaef-5cd4b60adf30 2024-01-13T07:40:02.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:40:02.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:40:02.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:40:02.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:02.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:40:02.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:40:02.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:02.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:02.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:40:02.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:40:02.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:40:02.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:40:02.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:40:02.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:40:02.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:40:02.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:40:02.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:40:02.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:40:02.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:02.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:40:02.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:40:02.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:40:02.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:40:02.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:40:02.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:40:02.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:40:02.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:40:02.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:02.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:02.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:40:02.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:40:02.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:02.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:02.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:02.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:02.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:40:02.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:40:02.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:40:02.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:40:02.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:02.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:02.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:40:02.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:40:02.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:40:02.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:40:02.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:40:02.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:40:02.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:40:02.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:40:02.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:02.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:02.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:40:02.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:40:02.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:40:02.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:40:02.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:40:02.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:40:02.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:40:02.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: main() 2024-01-13T07:40:02.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:40:02.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:40:02.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:40:02.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:02.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:40:02.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:02.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:40:02.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:02.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:40:02.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:02.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:40:02.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:40:02.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:40:02.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:40:02.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp_87yqplf:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp03y_ciwm:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:02.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: audit 2024-01-13T07:40:01.418115+0000 mon.smithi039 (mon.0) 291 : audit [INF] from='client.? 172.21.15.39:0/1369090394' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "12896b2a-ea29-4e31-b0bf-d1987002c70e"}]: dispatch 2024-01-13T07:40:02.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: audit 2024-01-13T07:40:01.425951+0000 mon.smithi039 (mon.0) 292 : audit [INF] from='client.? 172.21.15.39:0/1369090394' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "12896b2a-ea29-4e31-b0bf-d1987002c70e"}]': finished 2024-01-13T07:40:02.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: cluster 2024-01-13T07:40:01.426107+0000 mon.smithi039 (mon.0) 293 : cluster [DBG] osdmap e12: 1 total, 0 up, 1 in 2024-01-13T07:40:02.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:01 smithi039 bash[16208]: audit 2024-01-13T07:40:01.426248+0000 mon.smithi039 (mon.0) 294 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:40:02.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: audit 2024-01-13T07:40:01.279905+0000 mon.smithi039 (mon.0) 290 : audit [DBG] from='client.? 172.21.15.39:0/1813983610' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:40:02.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: cephadm 2024-01-13T07:40:01.374283+0000 mgr.smithi039.fbdzkl (mgr.14184) 80 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:40:02.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:40:02.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:40:02.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:40:02.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:40:02.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:40:02.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:40:02.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:40:02.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:40:02.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp_87yqplf:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp03y_ciwm:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:02.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:40:02.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:40:02.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:40:02.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new f7b3b814-27da-401d-aaef-5cd4b60adf30 2024-01-13T07:40:02.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:40:02.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:40:02.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:40:02.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:02.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:40:02.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:40:02.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:02.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:02.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:40:02.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:40:02.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:40:02.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:40:02.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:40:02.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:40:02.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:40:02.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:40:02.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:40:02.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:40:02.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:02.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:40:02.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:40:02.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:40:02.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:40:02.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:40:02.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:40:02.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:40:02.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:40:02.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:02.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:02.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:40:02.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:40:02.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:02.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:02.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:02.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:02.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:40:02.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:40:02.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:40:02.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:40:02.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:02.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:02.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:40:02.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:40:02.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:40:02.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:40:02.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:40:02.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:40:02.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:40:02.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:40:02.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:02.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:02.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:40:02.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:40:02.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:40:02.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:40:02.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:40:02.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:40:02.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:40:02.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: main() 2024-01-13T07:40:02.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:40:02.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:40:02.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:40:02.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:02.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:40:02.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:02.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:40:02.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:02.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:40:02.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:02.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:40:02.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:40:02.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:40:02.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:40:02.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp_87yqplf:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp03y_ciwm:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:02.258 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: audit 2024-01-13T07:40:01.418115+0000 mon.smithi039 (mon.0) 291 : audit [INF] from='client.? 172.21.15.39:0/1369090394' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "12896b2a-ea29-4e31-b0bf-d1987002c70e"}]: dispatch 2024-01-13T07:40:02.258 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: audit 2024-01-13T07:40:01.425951+0000 mon.smithi039 (mon.0) 292 : audit [INF] from='client.? 172.21.15.39:0/1369090394' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "12896b2a-ea29-4e31-b0bf-d1987002c70e"}]': finished 2024-01-13T07:40:02.258 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: cluster 2024-01-13T07:40:01.426107+0000 mon.smithi039 (mon.0) 293 : cluster [DBG] osdmap e12: 1 total, 0 up, 1 in 2024-01-13T07:40:02.258 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:01 smithi100 bash[20091]: audit 2024-01-13T07:40:01.426248+0000 mon.smithi039 (mon.0) 294 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:40:02.863 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:40:03.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: audit 2024-01-13T07:40:01.782864+0000 mon.smithi039 (mon.0) 295 : audit [INF] from='client.? 172.21.15.39:0/2002718449' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:40:03.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: audit 2024-01-13T07:40:01.788356+0000 mon.smithi039 (mon.0) 296 : audit [INF] from='client.? 172.21.15.39:0/2002718449' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:40:03.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: cluster 2024-01-13T07:40:01.788425+0000 mon.smithi039 (mon.0) 297 : cluster [DBG] osdmap e13: 0 total, 0 up, 0 in 2024-01-13T07:40:03.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: cluster 2024-01-13T07:40:01.965468+0000 mgr.smithi039.fbdzkl (mgr.14184) 81 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:03.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: cephadm 2024-01-13T07:40:02.494834+0000 mgr.smithi039.fbdzkl (mgr.14184) 82 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:40:03.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:40:03.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:40:03.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:40:03.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:40:03.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:40:03.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:40:03.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:40:03.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi039/config 2024-01-13T07:40:03.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpg21gxb2a:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpcz733kjz:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:03.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:40:03.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:40:03.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:40:03.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new 12896b2a-ea29-4e31-b0bf-d1987002c70e 2024-01-13T07:40:03.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:40:03.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: audit 2024-01-13T07:40:01.782864+0000 mon.smithi039 (mon.0) 295 : audit [INF] from='client.? 172.21.15.39:0/2002718449' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:40:03.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: audit 2024-01-13T07:40:01.788356+0000 mon.smithi039 (mon.0) 296 : audit [INF] from='client.? 172.21.15.39:0/2002718449' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:40:03.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: cluster 2024-01-13T07:40:01.788425+0000 mon.smithi039 (mon.0) 297 : cluster [DBG] osdmap e13: 0 total, 0 up, 0 in 2024-01-13T07:40:03.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: cluster 2024-01-13T07:40:01.965468+0000 mgr.smithi039.fbdzkl (mgr.14184) 81 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:03.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: cephadm 2024-01-13T07:40:02.494834+0000 mgr.smithi039.fbdzkl (mgr.14184) 82 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:40:03.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:40:03.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:40:03.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:40:03.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:40:03.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:40:03.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:40:03.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:40:03.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi039/config 2024-01-13T07:40:03.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpg21gxb2a:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpcz733kjz:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:03.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:40:03.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:40:03.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:40:03.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new 12896b2a-ea29-4e31-b0bf-d1987002c70e 2024-01-13T07:40:03.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:40:03.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:40:03.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:40:03.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:03.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:40:03.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:40:03.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:03.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:03.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:40:03.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:40:03.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:40:03.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:40:03.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:40:03.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:40:03.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:40:03.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:40:03.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:40:03.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:40:03.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:03.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:40:03.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:40:03.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:40:03.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:40:03.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:40:03.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:40:03.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:40:03.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:40:03.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:03.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:03.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:40:03.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:40:03.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:03.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:03.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:03.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:03.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:40:03.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:40:03.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:40:03.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:40:03.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:03.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:03.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:40:03.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:40:03.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:40:03.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:40:03.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:40:03.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:40:03.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:40:03.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:40:03.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:03.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:03.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:40:03.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:40:03.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:40:03.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:40:03.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:40:03.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:40:03.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:40:03.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: main() 2024-01-13T07:40:03.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:40:03.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:40:03.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:40:03.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:03.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:40:03.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:03.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:40:03.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:03.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:40:03.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:03.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:40:03.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:40:03.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:40:03.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:40:03.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpg21gxb2a:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpcz733kjz:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:03.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: cephadm 2024-01-13T07:40:02.501007+0000 mgr.smithi039.fbdzkl (mgr.14184) 83 : cephadm [ERR] Failed to apply osd.all-available-devices spec DriveGroupSpec.from_json(yaml.safe_load('''service_type: osd 2024-01-13T07:40:03.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: service_id: all-available-devices 2024-01-13T07:40:03.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: service_name: osd.all-available-devices 2024-01-13T07:40:03.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: placement: 2024-01-13T07:40:03.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: host_pattern: '*' 2024-01-13T07:40:03.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: spec: 2024-01-13T07:40:03.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: data_devices: 2024-01-13T07:40:03.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: all: true 2024-01-13T07:40:03.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: filter_logic: AND 2024-01-13T07:40:03.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: objectstore: bluestore 2024-01-13T07:40:03.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: ''')): cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:40:03.254 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:40:03.254 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:40:03.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:03.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:40:03.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:40:03.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:03.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:03.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:40:03.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:40:03.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:40:03.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:40:03.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:40:03.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:40:03.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:40:03.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:40:03.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:40:03.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:40:03.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:03.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:40:03.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:40:03.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:40:03.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:40:03.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:40:03.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:40:03.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:40:03.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:40:03.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:03.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:03.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:40:03.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:40:03.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:03.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:03.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:03.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:03.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:40:03.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:40:03.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:40:03.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:40:03.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:03.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:03.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:40:03.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:40:03.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:40:03.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:40:03.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:40:03.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:40:03.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:40:03.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:40:03.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:03.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:03.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:40:03.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:40:03.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:40:03.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:40:03.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:40:03.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:40:03.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:40:03.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: main() 2024-01-13T07:40:03.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:40:03.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:40:03.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:40:03.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:03.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:40:03.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:03.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:40:03.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:03.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:40:03.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:03.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:40:03.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:40:03.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:40:03.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:40:03.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpg21gxb2a:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpcz733kjz:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:03.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: cephadm 2024-01-13T07:40:02.501007+0000 mgr.smithi039.fbdzkl (mgr.14184) 83 : cephadm [ERR] Failed to apply osd.all-available-devices spec DriveGroupSpec.from_json(yaml.safe_load('''service_type: osd 2024-01-13T07:40:03.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: service_id: all-available-devices 2024-01-13T07:40:03.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: service_name: osd.all-available-devices 2024-01-13T07:40:03.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: placement: 2024-01-13T07:40:03.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: host_pattern: '*' 2024-01-13T07:40:03.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: spec: 2024-01-13T07:40:03.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: data_devices: 2024-01-13T07:40:03.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: all: true 2024-01-13T07:40:03.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: filter_logic: AND 2024-01-13T07:40:03.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: objectstore: bluestore 2024-01-13T07:40:03.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: ''')): cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:40:03.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp_87yqplf:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp03y_ciwm:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:03.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:40:03.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:40:03.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:40:03.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new f7b3b814-27da-401d-aaef-5cd4b60adf30 2024-01-13T07:40:03.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:40:03.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:40:03.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:40:03.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:03.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:40:03.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:40:03.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:03.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:03.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:40:03.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:40:03.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:40:03.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:40:03.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:40:03.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:40:03.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:40:03.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:40:03.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:40:03.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:40:03.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:03.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:40:03.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:40:03.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:40:03.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:40:03.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:40:03.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:40:03.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:40:03.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:40:03.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:03.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:03.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:40:03.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:40:03.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:03.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:03.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:03.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:03.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:40:03.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:40:03.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:40:03.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:40:03.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:03.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:03.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:40:03.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:40:03.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:40:03.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:40:03.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:40:03.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:40:03.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:40:03.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:40:03.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:03.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:03.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:40:03.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:40:03.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:40:03.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:40:03.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:40:03.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:40:03.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:40:03.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: main() 2024-01-13T07:40:03.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:40:03.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:40:03.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:40:03.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:03.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:40:03.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:03.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:40:03.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:03.266 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:40:03.266 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:03.266 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:40:03.266 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:40:03.266 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:40:03.266 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:40:03.266 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp_87yqplf:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp03y_ciwm:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:03.266 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:40:03.266 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 521, in _apply_all_services 2024-01-13T07:40:03.266 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: if self._apply_service(spec): 2024-01-13T07:40:03.266 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 595, in _apply_service 2024-01-13T07:40:03.266 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: self.mgr.osd_service.create_from_spec(cast(DriveGroupSpec, spec)) 2024-01-13T07:40:03.266 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 73, in create_from_spec 2024-01-13T07:40:03.266 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: ret = create_from_spec_one(self.prepare_drivegroup(drive_group)) 2024-01-13T07:40:03.267 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 83, in forall_hosts_wrapper 2024-01-13T07:40:03.267 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: return CephadmOrchestrator.instance._worker_pool.map(do_work, vals) 2024-01-13T07:40:03.267 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 266, in map 2024-01-13T07:40:03.267 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: return self._map_async(func, iterable, mapstar, chunksize).get() 2024-01-13T07:40:03.267 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 644, in get 2024-01-13T07:40:03.267 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: raise self._value 2024-01-13T07:40:03.267 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 119, in worker 2024-01-13T07:40:03.267 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: result = (True, func(*args, **kwds)) 2024-01-13T07:40:03.267 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 44, in mapstar 2024-01-13T07:40:03.267 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: return list(map(*args)) 2024-01-13T07:40:03.267 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:40:03.267 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:40:03.267 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:40:03.268 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:40:03.268 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:40:03.268 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:40:03.268 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:40:03.268 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp_87yqplf:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp03y_ciwm:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:03.268 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:40:03.268 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:40:03.268 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:40:03.268 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new f7b3b814-27da-401d-aaef-5cd4b60adf30 2024-01-13T07:40:03.268 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:40:03.268 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:40:03.268 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:40:03.268 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:03.268 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:40:03.269 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:40:03.269 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:03.269 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:03.269 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:40:03.269 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:40:03.269 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:40:03.269 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:40:03.269 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:40:03.269 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:40:03.269 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:40:03.269 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:40:03.269 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:40:03.269 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:40:03.269 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:03.270 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:40:03.270 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:40:03.270 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:40:03.270 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:40:03.270 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:40:03.270 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:40:03.270 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:40:03.270 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:40:03.270 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:03.270 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:03.270 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:40:03.270 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:40:03.270 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:03.270 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:03.271 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:03.271 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:03.271 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:40:03.271 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:40:03.271 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:40:03.271 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:40:03.271 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:03.271 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:03.271 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:40:03.271 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:40:03.271 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:40:03.271 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:40:03.271 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:40:03.271 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:40:03.272 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:40:03.272 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:40:03.272 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:03.272 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:03.272 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:40:03.272 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:40:03.272 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:40:03.272 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:40:03.272 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:40:03.272 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:40:03.272 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:40:03.272 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: main() 2024-01-13T07:40:03.272 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:40:03.272 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:40:03.272 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:40:03.273 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:03.273 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:40:03.273 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:03.273 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:40:03.273 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:03.273 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:40:03.273 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:03.273 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:40:03.273 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:40:03.273 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:40:03.273 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:40:03.273 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp_87yqplf:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp03y_ciwm:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:03.273 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: cluster 2024-01-13T07:40:02.502810+0000 mgr.smithi039.fbdzkl (mgr.14184) 84 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:03.273 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:02 smithi039 bash[16208]: audit 2024-01-13T07:40:02.506934+0000 mon.smithi039 (mon.0) 298 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:40:03.274 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp_87yqplf:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp03y_ciwm:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:03.275 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:40:03.275 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:40:03.275 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:40:03.275 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new f7b3b814-27da-401d-aaef-5cd4b60adf30 2024-01-13T07:40:03.275 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:40:03.275 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:40:03.275 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:40:03.275 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:03.275 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:40:03.275 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:40:03.275 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:03.275 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:03.275 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:40:03.275 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:40:03.276 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:40:03.276 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:40:03.276 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:40:03.276 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:40:03.276 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:40:03.276 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:40:03.276 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:40:03.276 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:40:03.276 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:03.276 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:40:03.276 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:40:03.276 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:40:03.276 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:40:03.277 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:40:03.277 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:40:03.277 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:40:03.277 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:40:03.277 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:03.277 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:03.277 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:40:03.277 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:40:03.277 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:03.277 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:03.277 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:03.277 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:03.277 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:40:03.277 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:40:03.277 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:40:03.278 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:40:03.278 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:03.278 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:03.278 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:40:03.278 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:40:03.278 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:40:03.278 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:40:03.278 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:40:03.278 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:40:03.278 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:40:03.278 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:40:03.278 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:03.278 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:03.278 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:40:03.278 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:40:03.279 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:40:03.279 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:40:03.279 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:40:03.279 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:40:03.279 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:40:03.279 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: main() 2024-01-13T07:40:03.279 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:40:03.279 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:40:03.279 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:40:03.279 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:03.279 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:40:03.279 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:03.279 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:40:03.279 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:03.280 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:40:03.280 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:03.280 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:40:03.280 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:40:03.280 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:40:03.280 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:40:03.280 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp_87yqplf:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp03y_ciwm:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:03.280 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:40:03.280 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 521, in _apply_all_services 2024-01-13T07:40:03.280 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: if self._apply_service(spec): 2024-01-13T07:40:03.280 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 595, in _apply_service 2024-01-13T07:40:03.280 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: self.mgr.osd_service.create_from_spec(cast(DriveGroupSpec, spec)) 2024-01-13T07:40:03.280 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 73, in create_from_spec 2024-01-13T07:40:03.281 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: ret = create_from_spec_one(self.prepare_drivegroup(drive_group)) 2024-01-13T07:40:03.281 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 83, in forall_hosts_wrapper 2024-01-13T07:40:03.281 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: return CephadmOrchestrator.instance._worker_pool.map(do_work, vals) 2024-01-13T07:40:03.281 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 266, in map 2024-01-13T07:40:03.281 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: return self._map_async(func, iterable, mapstar, chunksize).get() 2024-01-13T07:40:03.281 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 644, in get 2024-01-13T07:40:03.281 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: raise self._value 2024-01-13T07:40:03.281 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 119, in worker 2024-01-13T07:40:03.281 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: result = (True, func(*args, **kwds)) 2024-01-13T07:40:03.281 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 44, in mapstar 2024-01-13T07:40:03.281 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: return list(map(*args)) 2024-01-13T07:40:03.281 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:40:03.281 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:40:03.281 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:40:03.282 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:40:03.282 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:40:03.282 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:40:03.282 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:40:03.282 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp_87yqplf:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp03y_ciwm:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:03.282 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:40:03.282 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:40:03.282 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:40:03.282 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new f7b3b814-27da-401d-aaef-5cd4b60adf30 2024-01-13T07:40:03.282 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:40:03.282 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:40:03.282 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:40:03.282 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:03.282 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:40:03.283 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:40:03.283 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:03.283 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:03.283 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:40:03.283 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:40:03.283 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:40:03.283 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:40:03.283 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:40:03.283 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:40:03.283 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:40:03.283 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:40:03.283 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:40:03.283 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:40:03.283 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:03.284 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:40:03.284 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:40:03.284 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:40:03.284 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:40:03.284 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:40:03.284 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:40:03.284 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:40:03.284 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:40:03.284 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:03.284 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:03.284 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:40:03.284 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:40:03.284 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:03.285 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:03.285 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:03.285 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:03.285 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:40:03.285 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:40:03.285 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:40:03.285 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:40:03.285 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:03.285 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:03.285 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:40:03.285 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:40:03.285 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:40:03.285 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:40:03.285 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:40:03.285 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:40:03.286 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:40:03.286 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:40:03.286 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:03.286 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:03.286 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:40:03.286 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:40:03.286 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:40:03.286 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:40:03.286 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:40:03.286 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:40:03.286 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:40:03.286 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: main() 2024-01-13T07:40:03.286 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:40:03.287 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:40:03.287 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:40:03.287 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:03.287 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:40:03.287 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:03.287 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:40:03.287 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:03.287 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:40:03.287 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:03.287 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:40:03.287 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:40:03.287 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:40:03.287 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:40:03.287 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp_87yqplf:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp03y_ciwm:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:03.287 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: cluster 2024-01-13T07:40:02.502810+0000 mgr.smithi039.fbdzkl (mgr.14184) 84 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:03.288 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:02 smithi100 bash[20091]: audit 2024-01-13T07:40:02.506934+0000 mon.smithi039 (mon.0) 298 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:40:03.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:03 smithi100 bash[20091]: cluster 2024-01-13T07:40:02.785735+0000 mon.smithi039 (mon.0) 299 : cluster [WRN] Health check failed: Failed to apply 1 service(s): osd.all-available-devices (CEPHADM_APPLY_SPEC_FAIL) 2024-01-13T07:40:04.172 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:03 smithi039 bash[16208]: cluster 2024-01-13T07:40:02.785735+0000 mon.smithi039 (mon.0) 299 : cluster [WRN] Health check failed: Failed to apply 1 service(s): osd.all-available-devices (CEPHADM_APPLY_SPEC_FAIL) 2024-01-13T07:40:05.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:04 smithi039 bash[16208]: cluster 2024-01-13T07:40:04.503867+0000 mgr.smithi039.fbdzkl (mgr.14184) 85 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:05.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:04 smithi100 bash[20091]: cluster 2024-01-13T07:40:04.503867+0000 mgr.smithi039.fbdzkl (mgr.14184) 85 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:06.022 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:40:06.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:06 smithi039 bash[16208]: audit 2024-01-13T07:40:06.022291+0000 mon.smithi039 (mon.0) 300 : audit [DBG] from='client.? 172.21.15.39:0/1446216260' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:40:06.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:06 smithi100 bash[20091]: audit 2024-01-13T07:40:06.022291+0000 mon.smithi039 (mon.0) 300 : audit [DBG] from='client.? 172.21.15.39:0/1446216260' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:40:06.642 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":13,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:40:07.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:07 smithi039 bash[16208]: cluster 2024-01-13T07:40:06.504954+0000 mgr.smithi039.fbdzkl (mgr.14184) 86 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:07.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:07 smithi100 bash[20091]: cluster 2024-01-13T07:40:06.504954+0000 mgr.smithi039.fbdzkl (mgr.14184) 86 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:07.644 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:40:09.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:09 smithi039 bash[16208]: audit 2024-01-13T07:40:08.127810+0000 mon.smithi039 (mon.0) 301 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:40:09.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:09 smithi039 bash[16208]: cluster 2024-01-13T07:40:08.505841+0000 mgr.smithi039.fbdzkl (mgr.14184) 87 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:09.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:09 smithi039 bash[16208]: audit 2024-01-13T07:40:08.540374+0000 mon.smithi039 (mon.0) 302 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:40:09.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:09 smithi039 bash[16208]: audit 2024-01-13T07:40:08.541957+0000 mon.smithi039 (mon.0) 303 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:40:09.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:09 smithi039 bash[16208]: audit 2024-01-13T07:40:08.543205+0000 mon.smithi039 (mon.0) 304 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-13T07:40:09.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:09 smithi039 bash[16208]: audit 2024-01-13T07:40:08.554688+0000 mon.smithi039 (mon.0) 305 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:40:09.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:09 smithi039 bash[16208]: audit 2024-01-13T07:40:08.563529+0000 mon.smithi039 (mon.0) 306 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-13T07:40:09.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:09 smithi039 bash[16208]: audit 2024-01-13T07:40:08.571059+0000 mon.smithi039 (mon.0) 307 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:40:09.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:09 smithi039 bash[16208]: audit 2024-01-13T07:40:08.573657+0000 mon.smithi039 (mon.0) 308 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:40:09.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:09 smithi039 bash[16208]: audit 2024-01-13T07:40:08.574176+0000 mon.smithi039 (mon.0) 309 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:40:09.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:09 smithi039 bash[16208]: audit 2024-01-13T07:40:08.575408+0000 mon.smithi039 (mon.0) 310 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:40:09.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:09 smithi100 bash[20091]: audit 2024-01-13T07:40:08.127810+0000 mon.smithi039 (mon.0) 301 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:40:09.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:09 smithi100 bash[20091]: cluster 2024-01-13T07:40:08.505841+0000 mgr.smithi039.fbdzkl (mgr.14184) 87 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:09.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:09 smithi100 bash[20091]: audit 2024-01-13T07:40:08.540374+0000 mon.smithi039 (mon.0) 302 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:40:09.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:09 smithi100 bash[20091]: audit 2024-01-13T07:40:08.541957+0000 mon.smithi039 (mon.0) 303 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:40:09.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:09 smithi100 bash[20091]: audit 2024-01-13T07:40:08.543205+0000 mon.smithi039 (mon.0) 304 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-13T07:40:09.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:09 smithi100 bash[20091]: audit 2024-01-13T07:40:08.554688+0000 mon.smithi039 (mon.0) 305 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:40:09.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:09 smithi100 bash[20091]: audit 2024-01-13T07:40:08.563529+0000 mon.smithi039 (mon.0) 306 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-13T07:40:09.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:09 smithi100 bash[20091]: audit 2024-01-13T07:40:08.571059+0000 mon.smithi039 (mon.0) 307 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:40:09.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:09 smithi100 bash[20091]: audit 2024-01-13T07:40:08.573657+0000 mon.smithi039 (mon.0) 308 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:40:09.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:09 smithi100 bash[20091]: audit 2024-01-13T07:40:08.574176+0000 mon.smithi039 (mon.0) 309 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:40:09.496 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:09 smithi100 bash[20091]: audit 2024-01-13T07:40:08.575408+0000 mon.smithi039 (mon.0) 310 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:40:10.395 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:10 smithi039 bash[16208]: cluster 2024-01-13T07:40:08.555353+0000 mgr.smithi039.fbdzkl (mgr.14184) 88 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:10.395 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:10 smithi039 bash[16208]: cluster 2024-01-13T07:40:09.125589+0000 mon.smithi039 (mon.0) 311 : cluster [INF] Health check cleared: CEPHADM_APPLY_SPEC_FAIL (was: Failed to apply 1 service(s): osd.all-available-devices) 2024-01-13T07:40:10.395 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:10 smithi039 bash[16208]: cluster 2024-01-13T07:40:09.125668+0000 mon.smithi039 (mon.0) 312 : cluster [INF] Cluster is now healthy 2024-01-13T07:40:10.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:10 smithi100 bash[20091]: cluster 2024-01-13T07:40:08.555353+0000 mgr.smithi039.fbdzkl (mgr.14184) 88 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:10.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:10 smithi100 bash[20091]: cluster 2024-01-13T07:40:09.125589+0000 mon.smithi039 (mon.0) 311 : cluster [INF] Health check cleared: CEPHADM_APPLY_SPEC_FAIL (was: Failed to apply 1 service(s): osd.all-available-devices) 2024-01-13T07:40:10.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:10 smithi100 bash[20091]: cluster 2024-01-13T07:40:09.125668+0000 mon.smithi039 (mon.0) 312 : cluster [INF] Cluster is now healthy 2024-01-13T07:40:10.735 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:40:11.332 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":13,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:40:11.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:11 smithi039 bash[16208]: audit 2024-01-13T07:40:10.735432+0000 mon.smithi039 (mon.0) 313 : audit [DBG] from='client.? 172.21.15.39:0/3722334039' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:40:11.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:11 smithi100 bash[20091]: audit 2024-01-13T07:40:10.735432+0000 mon.smithi039 (mon.0) 313 : audit [DBG] from='client.? 172.21.15.39:0/3722334039' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:40:12.333 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:40:12.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:12 smithi039 bash[16208]: cluster 2024-01-13T07:40:10.555713+0000 mgr.smithi039.fbdzkl (mgr.14184) 89 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:12.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:12 smithi100 bash[20091]: cluster 2024-01-13T07:40:10.555713+0000 mgr.smithi039.fbdzkl (mgr.14184) 89 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:14.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:14 smithi039 bash[16208]: cluster 2024-01-13T07:40:12.556118+0000 mgr.smithi039.fbdzkl (mgr.14184) 90 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:14.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:14 smithi100 bash[20091]: cluster 2024-01-13T07:40:12.556118+0000 mgr.smithi039.fbdzkl (mgr.14184) 90 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:15.709 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:40:16.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:16 smithi039 bash[16208]: cluster 2024-01-13T07:40:14.556535+0000 mgr.smithi039.fbdzkl (mgr.14184) 91 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:16.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:16 smithi039 bash[16208]: audit 2024-01-13T07:40:15.708906+0000 mon.smithi039 (mon.0) 314 : audit [DBG] from='client.? 172.21.15.39:0/3773163365' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:40:16.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:16 smithi100 bash[20091]: cluster 2024-01-13T07:40:14.556535+0000 mgr.smithi039.fbdzkl (mgr.14184) 91 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:16.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:16 smithi100 bash[20091]: audit 2024-01-13T07:40:15.708906+0000 mon.smithi039 (mon.0) 314 : audit [DBG] from='client.? 172.21.15.39:0/3773163365' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:40:16.651 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":13,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:40:17.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:17 smithi039 bash[16208]: audit 2024-01-13T07:40:16.964733+0000 mon.smithi100 (mon.1) 6 : audit [INF] from='client.? 172.21.15.100:0/3308657678' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e2130364-b63e-43eb-99b7-0973507c622d"}]: dispatch 2024-01-13T07:40:17.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:17 smithi039 bash[16208]: audit 2024-01-13T07:40:16.965438+0000 mon.smithi039 (mon.0) 315 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e2130364-b63e-43eb-99b7-0973507c622d"}]: dispatch 2024-01-13T07:40:17.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:17 smithi039 bash[16208]: audit 2024-01-13T07:40:16.976060+0000 mon.smithi039 (mon.0) 316 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e2130364-b63e-43eb-99b7-0973507c622d"}]': finished 2024-01-13T07:40:17.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:17 smithi039 bash[16208]: cluster 2024-01-13T07:40:16.976207+0000 mon.smithi039 (mon.0) 317 : cluster [DBG] osdmap e14: 1 total, 0 up, 1 in 2024-01-13T07:40:17.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:17 smithi039 bash[16208]: audit 2024-01-13T07:40:16.976439+0000 mon.smithi039 (mon.0) 318 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:40:17.486 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:17 smithi100 bash[20091]: audit 2024-01-13T07:40:16.964733+0000 mon.smithi100 (mon.1) 6 : audit [INF] from='client.? 172.21.15.100:0/3308657678' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e2130364-b63e-43eb-99b7-0973507c622d"}]: dispatch 2024-01-13T07:40:17.486 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:17 smithi100 bash[20091]: audit 2024-01-13T07:40:16.965438+0000 mon.smithi039 (mon.0) 315 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e2130364-b63e-43eb-99b7-0973507c622d"}]: dispatch 2024-01-13T07:40:17.486 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:17 smithi100 bash[20091]: audit 2024-01-13T07:40:16.976060+0000 mon.smithi039 (mon.0) 316 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e2130364-b63e-43eb-99b7-0973507c622d"}]': finished 2024-01-13T07:40:17.486 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:17 smithi100 bash[20091]: cluster 2024-01-13T07:40:16.976207+0000 mon.smithi039 (mon.0) 317 : cluster [DBG] osdmap e14: 1 total, 0 up, 1 in 2024-01-13T07:40:17.486 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:17 smithi100 bash[20091]: audit 2024-01-13T07:40:16.976439+0000 mon.smithi039 (mon.0) 318 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:40:17.652 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:40:18.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:18 smithi039 bash[16208]: cluster 2024-01-13T07:40:16.557059+0000 mgr.smithi039.fbdzkl (mgr.14184) 92 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:18.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:18 smithi039 bash[16208]: audit 2024-01-13T07:40:17.328204+0000 mon.smithi100 (mon.1) 7 : audit [INF] from='client.? 172.21.15.100:0/641718647' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:40:18.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:18 smithi039 bash[16208]: audit 2024-01-13T07:40:17.328920+0000 mon.smithi039 (mon.0) 319 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:40:18.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:18 smithi039 bash[16208]: audit 2024-01-13T07:40:17.338618+0000 mon.smithi039 (mon.0) 320 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:40:18.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:18 smithi039 bash[16208]: cluster 2024-01-13T07:40:17.338687+0000 mon.smithi039 (mon.0) 321 : cluster [DBG] osdmap e15: 0 total, 0 up, 0 in 2024-01-13T07:40:18.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:18 smithi039 bash[16208]: audit 2024-01-13T07:40:18.184907+0000 mon.smithi039 (mon.0) 322 : audit [INF] from='client.? 172.21.15.39:0/1487137838' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "df6b217c-f6cf-496b-a7c2-6b6fffc5f9fc"}]: dispatch 2024-01-13T07:40:18.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:18 smithi100 bash[20091]: cluster 2024-01-13T07:40:16.557059+0000 mgr.smithi039.fbdzkl (mgr.14184) 92 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:18.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:18 smithi100 bash[20091]: audit 2024-01-13T07:40:17.328204+0000 mon.smithi100 (mon.1) 7 : audit [INF] from='client.? 172.21.15.100:0/641718647' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:40:18.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:18 smithi100 bash[20091]: audit 2024-01-13T07:40:17.328920+0000 mon.smithi039 (mon.0) 319 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:40:18.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:18 smithi100 bash[20091]: audit 2024-01-13T07:40:17.338618+0000 mon.smithi039 (mon.0) 320 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:40:18.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:18 smithi100 bash[20091]: cluster 2024-01-13T07:40:17.338687+0000 mon.smithi039 (mon.0) 321 : cluster [DBG] osdmap e15: 0 total, 0 up, 0 in 2024-01-13T07:40:18.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:18 smithi100 bash[20091]: audit 2024-01-13T07:40:18.184907+0000 mon.smithi039 (mon.0) 322 : audit [INF] from='client.? 172.21.15.39:0/1487137838' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "df6b217c-f6cf-496b-a7c2-6b6fffc5f9fc"}]: dispatch 2024-01-13T07:40:19.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: cephadm 2024-01-13T07:40:18.026812+0000 mgr.smithi039.fbdzkl (mgr.14184) 93 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:40:19.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:40:19.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:40:19.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:40:19.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:40:19.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:40:19.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:40:19.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:40:19.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:40:19.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp3ssdig2w:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpaeyp5wqa:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:19.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:40:19.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:40:19.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:40:19.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new e2130364-b63e-43eb-99b7-0973507c622d 2024-01-13T07:40:19.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:40:19.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:40:19.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:40:19.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:19.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:40:19.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:40:19.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:19.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:19.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:40:19.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:40:19.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:40:19.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:40:19.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:40:19.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:40:19.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:40:19.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:40:19.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:40:19.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:40:19.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:19.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:40:19.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:40:19.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:40:19.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:40:19.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:40:19.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:40:19.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:40:19.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:40:19.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:19.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:19.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:40:19.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:40:19.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:19.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:19.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:19.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:19.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:40:19.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:40:19.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:40:19.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:40:19.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:19.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:19.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:40:19.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:40:19.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:40:19.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:40:19.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:40:19.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:40:19.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:40:19.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:40:19.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:19.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:19.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:40:19.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:40:19.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:40:19.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:40:19.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:40:19.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:40:19.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:40:19.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: main() 2024-01-13T07:40:19.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:40:19.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:40:19.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:40:19.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:19.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:40:19.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:19.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:40:19.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:19.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:40:19.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:19.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:40:19.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:40:19.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:40:19.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:40:19.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp3ssdig2w:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpaeyp5wqa:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:19.501 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: audit 2024-01-13T07:40:18.191458+0000 mon.smithi039 (mon.0) 323 : audit [INF] from='client.? 172.21.15.39:0/1487137838' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "df6b217c-f6cf-496b-a7c2-6b6fffc5f9fc"}]': finished 2024-01-13T07:40:19.501 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: cluster 2024-01-13T07:40:18.191565+0000 mon.smithi039 (mon.0) 324 : cluster [DBG] osdmap e16: 1 total, 0 up, 1 in 2024-01-13T07:40:19.501 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: audit 2024-01-13T07:40:18.193247+0000 mon.smithi039 (mon.0) 325 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:40:19.501 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: audit 2024-01-13T07:40:18.539289+0000 mon.smithi039 (mon.0) 326 : audit [INF] from='client.? 172.21.15.39:0/3177136228' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:40:19.501 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: audit 2024-01-13T07:40:18.548235+0000 mon.smithi039 (mon.0) 327 : audit [INF] from='client.? 172.21.15.39:0/3177136228' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:40:19.501 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:19 smithi039 bash[16208]: cluster 2024-01-13T07:40:18.548384+0000 mon.smithi039 (mon.0) 328 : cluster [DBG] osdmap e17: 0 total, 0 up, 0 in 2024-01-13T07:40:19.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: cephadm 2024-01-13T07:40:18.026812+0000 mgr.smithi039.fbdzkl (mgr.14184) 93 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:40:19.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:40:19.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:40:19.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:40:19.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:40:19.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:40:19.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:40:19.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:40:19.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:40:19.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp3ssdig2w:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpaeyp5wqa:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:19.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:40:19.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:40:19.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:40:19.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new e2130364-b63e-43eb-99b7-0973507c622d 2024-01-13T07:40:19.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:40:19.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:40:19.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:40:19.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:19.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:40:19.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:40:19.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:19.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:19.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:40:19.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:40:19.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:40:19.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:40:19.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:40:19.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:40:19.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:40:19.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:40:19.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:40:19.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:40:19.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:19.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:40:19.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:40:19.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:40:19.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:40:19.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:40:19.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:40:19.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:40:19.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:40:19.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:19.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:19.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:40:19.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:40:19.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:19.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:19.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:19.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:19.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:40:19.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:40:19.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:40:19.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:40:19.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:19.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:19.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:40:19.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:40:19.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:40:19.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:40:19.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:40:19.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:40:19.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:40:19.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:40:19.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:19.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:19.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:40:19.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:40:19.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:40:19.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:40:19.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:40:19.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:40:19.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:40:19.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: main() 2024-01-13T07:40:19.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:40:19.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:40:19.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:40:19.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:19.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:40:19.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:19.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:40:19.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:19.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:40:19.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:19.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:40:19.508 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:40:19.508 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:40:19.508 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:40:19.508 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp3ssdig2w:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpaeyp5wqa:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:19.508 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: audit 2024-01-13T07:40:18.191458+0000 mon.smithi039 (mon.0) 323 : audit [INF] from='client.? 172.21.15.39:0/1487137838' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "df6b217c-f6cf-496b-a7c2-6b6fffc5f9fc"}]': finished 2024-01-13T07:40:19.508 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: cluster 2024-01-13T07:40:18.191565+0000 mon.smithi039 (mon.0) 324 : cluster [DBG] osdmap e16: 1 total, 0 up, 1 in 2024-01-13T07:40:19.508 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: audit 2024-01-13T07:40:18.193247+0000 mon.smithi039 (mon.0) 325 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:40:19.508 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: audit 2024-01-13T07:40:18.539289+0000 mon.smithi039 (mon.0) 326 : audit [INF] from='client.? 172.21.15.39:0/3177136228' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:40:19.508 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: audit 2024-01-13T07:40:18.548235+0000 mon.smithi039 (mon.0) 327 : audit [INF] from='client.? 172.21.15.39:0/3177136228' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:40:19.508 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:19 smithi100 bash[20091]: cluster 2024-01-13T07:40:18.548384+0000 mon.smithi039 (mon.0) 328 : cluster [DBG] osdmap e17: 0 total, 0 up, 0 in 2024-01-13T07:40:20.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: cluster 2024-01-13T07:40:18.557474+0000 mgr.smithi039.fbdzkl (mgr.14184) 94 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:20.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: cephadm 2024-01-13T07:40:19.347542+0000 mgr.smithi039.fbdzkl (mgr.14184) 95 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:40:20.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:40:20.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:40:20.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:40:20.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:40:20.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:40:20.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:40:20.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:40:20.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi039/config 2024-01-13T07:40:20.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmplv7ngfpl:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmps_vnpd7h:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:20.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:40:20.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:40:20.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:40:20.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new df6b217c-f6cf-496b-a7c2-6b6fffc5f9fc 2024-01-13T07:40:20.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:40:20.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:40:20.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:40:20.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:20.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:40:20.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:40:20.496 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: cluster 2024-01-13T07:40:18.557474+0000 mgr.smithi039.fbdzkl (mgr.14184) 94 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:20.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: cephadm 2024-01-13T07:40:19.347542+0000 mgr.smithi039.fbdzkl (mgr.14184) 95 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:40:20.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:40:20.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:40:20.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:40:20.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:40:20.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:40:20.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:40:20.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:40:20.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi039/config 2024-01-13T07:40:20.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmplv7ngfpl:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmps_vnpd7h:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:20.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:40:20.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:40:20.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:40:20.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new df6b217c-f6cf-496b-a7c2-6b6fffc5f9fc 2024-01-13T07:40:20.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:40:20.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:40:20.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:40:20.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:20.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:40:20.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:40:20.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:20.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:20.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:40:20.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:40:20.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:40:20.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:40:20.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:40:20.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:40:20.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:40:20.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:40:20.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:40:20.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:40:20.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:20.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:40:20.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:40:20.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:40:20.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:40:20.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:40:20.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:40:20.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:40:20.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:40:20.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:20.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:20.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:40:20.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:40:20.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:20.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:20.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:20.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:20.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:40:20.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:40:20.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:40:20.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:40:20.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:20.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:20.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:40:20.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:40:20.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:40:20.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:40:20.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:40:20.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:40:20.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:40:20.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:40:20.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:20.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:20.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:40:20.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:40:20.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:40:20.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:40:20.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:40:20.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:40:20.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:40:20.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: main() 2024-01-13T07:40:20.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:40:20.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:40:20.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:40:20.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:20.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:40:20.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:20.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:40:20.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:20.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:40:20.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:20.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:40:20.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:40:20.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:40:20.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:40:20.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmplv7ngfpl:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmps_vnpd7h:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:20.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: cephadm 2024-01-13T07:40:19.351564+0000 mgr.smithi039.fbdzkl (mgr.14184) 96 : cephadm [ERR] Failed to apply osd.all-available-devices spec DriveGroupSpec.from_json(yaml.safe_load('''service_type: osd 2024-01-13T07:40:20.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: service_id: all-available-devices 2024-01-13T07:40:20.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: service_name: osd.all-available-devices 2024-01-13T07:40:20.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: placement: 2024-01-13T07:40:20.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: host_pattern: '*' 2024-01-13T07:40:20.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: spec: 2024-01-13T07:40:20.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: data_devices: 2024-01-13T07:40:20.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: all: true 2024-01-13T07:40:20.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: filter_logic: AND 2024-01-13T07:40:20.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: objectstore: bluestore 2024-01-13T07:40:20.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: ''')): cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:40:20.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp3ssdig2w:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpaeyp5wqa:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:20.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:40:20.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:40:20.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:40:20.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new e2130364-b63e-43eb-99b7-0973507c622d 2024-01-13T07:40:20.507 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:20.507 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:20.508 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:40:20.508 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:40:20.508 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:40:20.508 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:40:20.508 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:40:20.508 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:40:20.508 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:40:20.508 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:40:20.508 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:40:20.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:40:20.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:20.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:40:20.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:40:20.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:40:20.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:40:20.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:40:20.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:40:20.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:40:20.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:40:20.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:20.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:20.509 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:40:20.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:40:20.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:20.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:20.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:20.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:20.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:40:20.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:40:20.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:40:20.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:40:20.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:20.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:20.510 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:40:20.511 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:40:20.511 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:40:20.511 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:40:20.511 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:40:20.511 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:40:20.511 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:40:20.511 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:40:20.511 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:20.511 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:20.511 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:40:20.511 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:40:20.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:40:20.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:40:20.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:40:20.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:40:20.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:40:20.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: main() 2024-01-13T07:40:20.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:40:20.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:40:20.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:40:20.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:20.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:40:20.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:20.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:40:20.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:20.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:40:20.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:20.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:40:20.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:40:20.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:40:20.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:40:20.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmplv7ngfpl:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmps_vnpd7h:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:20.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: cephadm 2024-01-13T07:40:19.351564+0000 mgr.smithi039.fbdzkl (mgr.14184) 96 : cephadm [ERR] Failed to apply osd.all-available-devices spec DriveGroupSpec.from_json(yaml.safe_load('''service_type: osd 2024-01-13T07:40:20.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: service_id: all-available-devices 2024-01-13T07:40:20.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: service_name: osd.all-available-devices 2024-01-13T07:40:20.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: placement: 2024-01-13T07:40:20.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: host_pattern: '*' 2024-01-13T07:40:20.513 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: spec: 2024-01-13T07:40:20.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: data_devices: 2024-01-13T07:40:20.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: all: true 2024-01-13T07:40:20.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: filter_logic: AND 2024-01-13T07:40:20.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: objectstore: bluestore 2024-01-13T07:40:20.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: ''')): cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:40:20.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp3ssdig2w:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpaeyp5wqa:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:20.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:40:20.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:40:20.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:40:20.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new e2130364-b63e-43eb-99b7-0973507c622d 2024-01-13T07:40:20.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:40:20.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:40:20.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:40:20.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:20.514 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:40:20.515 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:40:20.515 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:20.515 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:20.515 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:40:20.515 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:40:20.515 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:40:20.515 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:40:20.515 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:40:20.515 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:40:20.515 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:40:20.515 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:40:20.516 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:40:20.516 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:40:20.516 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:20.516 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:40:20.516 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:40:20.516 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:40:20.516 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:40:20.516 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:40:20.516 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:40:20.516 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:40:20.516 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:40:20.516 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:20.516 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:20.517 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:40:20.517 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:40:20.517 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:20.517 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:20.517 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:20.517 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:20.517 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:40:20.517 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:40:20.517 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:40:20.517 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:40:20.517 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:20.517 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:20.517 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:40:20.517 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:40:20.518 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:40:20.518 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:40:20.518 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:40:20.518 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:40:20.518 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:40:20.518 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:40:20.518 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:20.518 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:20.518 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:40:20.518 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:40:20.518 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:40:20.518 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:40:20.518 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:40:20.518 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:40:20.518 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:40:20.519 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: main() 2024-01-13T07:40:20.519 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:40:20.519 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:40:20.519 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:40:20.519 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:20.519 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:40:20.519 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:20.519 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:40:20.519 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:20.519 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:40:20.519 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:20.519 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:40:20.519 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:40:20.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:40:20.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:40:20.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp3ssdig2w:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpaeyp5wqa:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:20.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:40:20.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 521, in _apply_all_services 2024-01-13T07:40:20.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: if self._apply_service(spec): 2024-01-13T07:40:20.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 595, in _apply_service 2024-01-13T07:40:20.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: self.mgr.osd_service.create_from_spec(cast(DriveGroupSpec, spec)) 2024-01-13T07:40:20.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 73, in create_from_spec 2024-01-13T07:40:20.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: ret = create_from_spec_one(self.prepare_drivegroup(drive_group)) 2024-01-13T07:40:20.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 83, in forall_hosts_wrapper 2024-01-13T07:40:20.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: return CephadmOrchestrator.instance._worker_pool.map(do_work, vals) 2024-01-13T07:40:20.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 266, in map 2024-01-13T07:40:20.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: return self._map_async(func, iterable, mapstar, chunksize).get() 2024-01-13T07:40:20.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 644, in get 2024-01-13T07:40:20.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: raise self._value 2024-01-13T07:40:20.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 119, in worker 2024-01-13T07:40:20.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: result = (True, func(*args, **kwds)) 2024-01-13T07:40:20.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 44, in mapstar 2024-01-13T07:40:20.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: return list(map(*args)) 2024-01-13T07:40:20.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:40:20.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:40:20.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:40:20.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:40:20.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:40:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:40:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:40:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp3ssdig2w:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpaeyp5wqa:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:40:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:40:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:40:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new e2130364-b63e-43eb-99b7-0973507c622d 2024-01-13T07:40:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:40:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:40:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:40:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:40:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:40:20.522 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:40:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:40:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:40:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:40:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:40:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:40:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:40:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:40:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:40:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:40:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:40:20.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:40:20.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:40:20.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:40:20.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:40:20.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:40:20.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:40:20.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:40:20.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:20.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:20.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:40:20.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:40:20.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:40:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:40:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:40:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:40:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:40:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:40:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:40:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:40:20.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:40:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:40:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:40:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:40:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:40:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:40:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:40:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:40:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:40:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:40:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:40:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: main() 2024-01-13T07:40:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:40:20.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:40:20.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:40:20.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:20.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:40:20.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:20.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:40:20.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:20.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:40:20.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:40:20.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:40:20.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:40:20.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:40:20.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:40:20.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp3ssdig2w:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpaeyp5wqa:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:20.528 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: cluster 2024-01-13T07:40:19.353237+0000 mgr.smithi039.fbdzkl (mgr.14184) 97 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:20.528 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:20 smithi039 bash[16208]: cluster 2024-01-13T07:40:19.541912+0000 mon.smithi039 (mon.0) 329 : cluster [WRN] Health check failed: Failed to apply 1 service(s): osd.all-available-devices (CEPHADM_APPLY_SPEC_FAIL) 2024-01-13T07:40:20.529 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:40:20.529 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:40:20.529 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:40:20.529 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:20.529 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:40:20.529 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:40:20.529 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:20.529 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:20.530 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:40:20.530 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:40:20.530 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:40:20.530 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:40:20.530 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:40:20.530 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:40:20.530 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:40:20.530 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:40:20.530 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:40:20.530 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:40:20.530 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:20.530 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:40:20.530 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:40:20.530 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:40:20.530 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:40:20.531 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:40:20.531 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:40:20.531 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:40:20.531 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:40:20.531 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:20.531 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:20.531 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:40:20.531 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:40:20.531 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:20.531 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:20.531 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:20.531 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:20.531 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:40:20.531 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:40:20.532 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:40:20.532 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:40:20.532 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:20.532 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:20.532 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:40:20.532 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:40:20.532 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:40:20.532 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:40:20.532 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:40:20.532 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:40:20.532 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:40:20.532 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:40:20.532 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:20.532 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:20.533 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:40:20.533 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:40:20.533 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:40:20.533 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:40:20.533 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:40:20.533 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:40:20.533 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:40:20.533 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: main() 2024-01-13T07:40:20.533 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:40:20.533 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:40:20.533 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:40:20.533 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:20.533 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:40:20.533 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:20.534 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:40:20.534 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:20.534 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:40:20.534 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:20.534 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:40:20.534 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:40:20.534 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:40:20.534 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:40:20.534 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp3ssdig2w:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpaeyp5wqa:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:20.534 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:40:20.534 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 521, in _apply_all_services 2024-01-13T07:40:20.534 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: if self._apply_service(spec): 2024-01-13T07:40:20.534 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 595, in _apply_service 2024-01-13T07:40:20.534 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: self.mgr.osd_service.create_from_spec(cast(DriveGroupSpec, spec)) 2024-01-13T07:40:20.535 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 73, in create_from_spec 2024-01-13T07:40:20.535 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: ret = create_from_spec_one(self.prepare_drivegroup(drive_group)) 2024-01-13T07:40:20.535 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 83, in forall_hosts_wrapper 2024-01-13T07:40:20.535 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: return CephadmOrchestrator.instance._worker_pool.map(do_work, vals) 2024-01-13T07:40:20.535 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 266, in map 2024-01-13T07:40:20.535 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: return self._map_async(func, iterable, mapstar, chunksize).get() 2024-01-13T07:40:20.535 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 644, in get 2024-01-13T07:40:20.535 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: raise self._value 2024-01-13T07:40:20.535 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 119, in worker 2024-01-13T07:40:20.535 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: result = (True, func(*args, **kwds)) 2024-01-13T07:40:20.535 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 44, in mapstar 2024-01-13T07:40:20.535 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: return list(map(*args)) 2024-01-13T07:40:20.535 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:40:20.535 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:40:20.535 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:40:20.535 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:40:20.536 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:40:20.536 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:40:20.536 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:40:20.536 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp3ssdig2w:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpaeyp5wqa:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:20.536 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:40:20.536 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:40:20.536 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:40:20.536 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new e2130364-b63e-43eb-99b7-0973507c622d 2024-01-13T07:40:20.536 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:40:20.536 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:40:20.536 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:40:20.536 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:20.536 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:40:20.536 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:40:20.536 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:20.537 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:20.537 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:40:20.537 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:40:20.537 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:40:20.537 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:40:20.537 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:40:20.537 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:40:20.537 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:40:20.537 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:40:20.537 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:40:20.537 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:40:20.537 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:40:20.537 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:40:20.538 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:40:20.538 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:40:20.538 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:40:20.538 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:40:20.538 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:40:20.538 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:40:20.538 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:40:20.538 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:20.538 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:20.538 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:40:20.538 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:40:20.538 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:40:20.538 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:40:20.538 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:20.538 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:20.539 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:40:20.539 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:40:20.539 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:40:20.539 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:40:20.539 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:20.539 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:20.539 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:40:20.539 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:40:20.539 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:40:20.539 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:40:20.539 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:40:20.539 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:40:20.539 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:40:20.540 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:40:20.540 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:40:20.540 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:40:20.540 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:40:20.540 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:40:20.540 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:40:20.540 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:40:20.540 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:40:20.540 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:40:20.540 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:40:20.540 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: main() 2024-01-13T07:40:20.540 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:40:20.540 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:40:20.541 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:40:20.541 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:20.541 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:40:20.541 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:20.541 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:40:20.541 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:20.541 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:40:20.541 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:40:20.541 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:40:20.541 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:40:20.541 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:40:20.541 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:40:20.542 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp3ssdig2w:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpaeyp5wqa:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:40:20.542 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: cluster 2024-01-13T07:40:19.353237+0000 mgr.smithi039.fbdzkl (mgr.14184) 97 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:20.542 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:20 smithi100 bash[20091]: cluster 2024-01-13T07:40:19.541912+0000 mon.smithi039 (mon.0) 329 : cluster [WRN] Health check failed: Failed to apply 1 service(s): osd.all-available-devices (CEPHADM_APPLY_SPEC_FAIL) 2024-01-13T07:40:21.039 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:40:21.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:21 smithi039 bash[16208]: audit 2024-01-13T07:40:21.038786+0000 mon.smithi039 (mon.0) 330 : audit [DBG] from='client.? 172.21.15.39:0/2265762580' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:40:21.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:21 smithi100 bash[20091]: audit 2024-01-13T07:40:21.038786+0000 mon.smithi039 (mon.0) 330 : audit [DBG] from='client.? 172.21.15.39:0/2265762580' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:40:21.638 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":17,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:40:22.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:22 smithi039 bash[16208]: cluster 2024-01-13T07:40:21.354333+0000 mgr.smithi039.fbdzkl (mgr.14184) 98 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:22.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:22 smithi100 bash[20091]: cluster 2024-01-13T07:40:21.354333+0000 mgr.smithi039.fbdzkl (mgr.14184) 98 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:22.639 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:40:24.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:24 smithi039 bash[16208]: cluster 2024-01-13T07:40:23.355422+0000 mgr.smithi039.fbdzkl (mgr.14184) 99 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:24.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:24 smithi100 bash[20091]: cluster 2024-01-13T07:40:23.355422+0000 mgr.smithi039.fbdzkl (mgr.14184) 99 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:25.497 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:40:25.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:25 smithi039 bash[16208]: cluster 2024-01-13T07:40:25.356436+0000 mgr.smithi039.fbdzkl (mgr.14184) 100 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:25.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:25 smithi039 bash[16208]: audit 2024-01-13T07:40:25.497030+0000 mon.smithi039 (mon.0) 331 : audit [DBG] from='client.? 172.21.15.39:0/4268224218' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:40:26.039 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":17,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:40:26.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:25 smithi100 bash[20091]: cluster 2024-01-13T07:40:25.356436+0000 mgr.smithi039.fbdzkl (mgr.14184) 100 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:26.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:25 smithi100 bash[20091]: audit 2024-01-13T07:40:25.497030+0000 mon.smithi039 (mon.0) 331 : audit [DBG] from='client.? 172.21.15.39:0/4268224218' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:40:27.040 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:40:28.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:28 smithi039 bash[16208]: cluster 2024-01-13T07:40:27.357483+0000 mgr.smithi039.fbdzkl (mgr.14184) 101 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:28.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:28 smithi100 bash[20091]: cluster 2024-01-13T07:40:27.357483+0000 mgr.smithi039.fbdzkl (mgr.14184) 101 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:29.894 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:40:30.508 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":17,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:40:30.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:30 smithi039 bash[16208]: cluster 2024-01-13T07:40:29.358557+0000 mgr.smithi039.fbdzkl (mgr.14184) 102 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:30.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:30 smithi039 bash[16208]: audit 2024-01-13T07:40:29.893482+0000 mon.smithi039 (mon.0) 332 : audit [DBG] from='client.? 172.21.15.39:0/1383553817' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:40:30.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:30 smithi039 bash[16208]: audit 2024-01-13T07:40:30.356424+0000 mon.smithi039 (mon.0) 333 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:40:30.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:30 smithi100 bash[20091]: cluster 2024-01-13T07:40:29.358557+0000 mgr.smithi039.fbdzkl (mgr.14184) 102 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:30.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:30 smithi100 bash[20091]: audit 2024-01-13T07:40:29.893482+0000 mon.smithi039 (mon.0) 332 : audit [DBG] from='client.? 172.21.15.39:0/1383553817' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:40:30.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:30 smithi100 bash[20091]: audit 2024-01-13T07:40:30.356424+0000 mon.smithi039 (mon.0) 333 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:40:31.509 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:40:32.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:32 smithi039 bash[16208]: cluster 2024-01-13T07:40:31.359707+0000 mgr.smithi039.fbdzkl (mgr.14184) 103 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:32.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:32 smithi100 bash[20091]: cluster 2024-01-13T07:40:31.359707+0000 mgr.smithi039.fbdzkl (mgr.14184) 103 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:34.388 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:40:34.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:34 smithi039 bash[16208]: cluster 2024-01-13T07:40:33.360814+0000 mgr.smithi039.fbdzkl (mgr.14184) 104 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:34.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:34 smithi039 bash[16208]: audit 2024-01-13T07:40:34.388029+0000 mon.smithi039 (mon.0) 334 : audit [DBG] from='client.? 172.21.15.39:0/2581867081' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:40:34.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:34 smithi100 bash[20091]: cluster 2024-01-13T07:40:33.360814+0000 mgr.smithi039.fbdzkl (mgr.14184) 104 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:34.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:34 smithi100 bash[20091]: audit 2024-01-13T07:40:34.388029+0000 mon.smithi039 (mon.0) 334 : audit [DBG] from='client.? 172.21.15.39:0/2581867081' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:40:35.002 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":17,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:40:36.003 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:40:36.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:35 smithi039 bash[16208]: cluster 2024-01-13T07:40:35.361875+0000 mgr.smithi039.fbdzkl (mgr.14184) 105 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:36.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:35 smithi100 bash[20091]: cluster 2024-01-13T07:40:35.361875+0000 mgr.smithi039.fbdzkl (mgr.14184) 105 : cluster [DBG] pgmap v71: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:38.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:38 smithi039 bash[16208]: cluster 2024-01-13T07:40:37.362941+0000 mgr.smithi039.fbdzkl (mgr.14184) 106 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:38.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:38 smithi100 bash[20091]: cluster 2024-01-13T07:40:37.362941+0000 mgr.smithi039.fbdzkl (mgr.14184) 106 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:38.792 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:40:39.389 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":17,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:40:39.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:39 smithi039 bash[16208]: audit 2024-01-13T07:40:38.791822+0000 mon.smithi039 (mon.0) 335 : audit [DBG] from='client.? 172.21.15.39:0/864144682' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:40:39.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:39 smithi100 bash[20091]: audit 2024-01-13T07:40:38.791822+0000 mon.smithi039 (mon.0) 335 : audit [DBG] from='client.? 172.21.15.39:0/864144682' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:40:40.390 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:40:40.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:40 smithi039 bash[16208]: cluster 2024-01-13T07:40:39.364001+0000 mgr.smithi039.fbdzkl (mgr.14184) 107 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:40.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:40 smithi100 bash[20091]: cluster 2024-01-13T07:40:39.364001+0000 mgr.smithi039.fbdzkl (mgr.14184) 107 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:42.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:42 smithi039 bash[16208]: cluster 2024-01-13T07:40:41.365043+0000 mgr.smithi039.fbdzkl (mgr.14184) 108 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:42.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:42 smithi100 bash[20091]: cluster 2024-01-13T07:40:41.365043+0000 mgr.smithi039.fbdzkl (mgr.14184) 108 : cluster [DBG] pgmap v74: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:43.437 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:40:43.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:43 smithi039 bash[16208]: audit 2024-01-13T07:40:43.437227+0000 mon.smithi039 (mon.0) 336 : audit [DBG] from='client.? 172.21.15.39:0/3129517318' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:40:43.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:43 smithi100 bash[20091]: audit 2024-01-13T07:40:43.437227+0000 mon.smithi039 (mon.0) 336 : audit [DBG] from='client.? 172.21.15.39:0/3129517318' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:40:44.009 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":17,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:40:44.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:44 smithi039 bash[16208]: cluster 2024-01-13T07:40:43.366060+0000 mgr.smithi039.fbdzkl (mgr.14184) 109 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:44.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:44 smithi100 bash[20091]: cluster 2024-01-13T07:40:43.366060+0000 mgr.smithi039.fbdzkl (mgr.14184) 109 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:45.010 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:40:46.083 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:45 smithi039 bash[16208]: cluster 2024-01-13T07:40:45.367054+0000 mgr.smithi039.fbdzkl (mgr.14184) 110 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:46.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:45 smithi100 bash[20091]: cluster 2024-01-13T07:40:45.367054+0000 mgr.smithi039.fbdzkl (mgr.14184) 110 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:47.863 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:40:48.432 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":17,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:40:48.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:48 smithi039 bash[16208]: cluster 2024-01-13T07:40:47.368143+0000 mgr.smithi039.fbdzkl (mgr.14184) 111 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:48.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:48 smithi039 bash[16208]: audit 2024-01-13T07:40:47.862687+0000 mon.smithi039 (mon.0) 337 : audit [DBG] from='client.? 172.21.15.39:0/3369939054' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:40:48.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:48 smithi100 bash[20091]: cluster 2024-01-13T07:40:47.368143+0000 mgr.smithi039.fbdzkl (mgr.14184) 111 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:48.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:48 smithi100 bash[20091]: audit 2024-01-13T07:40:47.862687+0000 mon.smithi039 (mon.0) 337 : audit [DBG] from='client.? 172.21.15.39:0/3369939054' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:40:49.434 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:40:50.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:50 smithi039 bash[16208]: cluster 2024-01-13T07:40:49.369273+0000 mgr.smithi039.fbdzkl (mgr.14184) 112 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:50.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:50 smithi100 bash[20091]: cluster 2024-01-13T07:40:49.369273+0000 mgr.smithi039.fbdzkl (mgr.14184) 112 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:52.417 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:40:52.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:52 smithi039 bash[16208]: cluster 2024-01-13T07:40:51.370400+0000 mgr.smithi039.fbdzkl (mgr.14184) 113 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:52.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:52 smithi039 bash[16208]: audit 2024-01-13T07:40:52.416678+0000 mon.smithi039 (mon.0) 338 : audit [DBG] from='client.? 172.21.15.39:0/2962649566' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:40:52.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:52 smithi100 bash[20091]: cluster 2024-01-13T07:40:51.370400+0000 mgr.smithi039.fbdzkl (mgr.14184) 113 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:52.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:52 smithi100 bash[20091]: audit 2024-01-13T07:40:52.416678+0000 mon.smithi039 (mon.0) 338 : audit [DBG] from='client.? 172.21.15.39:0/2962649566' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:40:52.995 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":17,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:40:53.996 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:40:54.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:54 smithi039 bash[16208]: cluster 2024-01-13T07:40:53.371564+0000 mgr.smithi039.fbdzkl (mgr.14184) 114 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:54.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:54 smithi100 bash[20091]: cluster 2024-01-13T07:40:53.371564+0000 mgr.smithi039.fbdzkl (mgr.14184) 114 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:56.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:55 smithi039 bash[16208]: cluster 2024-01-13T07:40:55.372682+0000 mgr.smithi039.fbdzkl (mgr.14184) 115 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:56.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:55 smithi100 bash[20091]: cluster 2024-01-13T07:40:55.372682+0000 mgr.smithi039.fbdzkl (mgr.14184) 115 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:57.065 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:40:57.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:57 smithi039 bash[16208]: audit 2024-01-13T07:40:57.064826+0000 mon.smithi039 (mon.0) 339 : audit [DBG] from='client.? 172.21.15.39:0/2121981971' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:40:57.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:57 smithi100 bash[20091]: audit 2024-01-13T07:40:57.064826+0000 mon.smithi039 (mon.0) 339 : audit [DBG] from='client.? 172.21.15.39:0/2121981971' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:40:57.652 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":17,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:40:58.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:40:58 smithi039 bash[16208]: cluster 2024-01-13T07:40:57.373749+0000 mgr.smithi039.fbdzkl (mgr.14184) 116 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:58.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:40:58 smithi100 bash[20091]: cluster 2024-01-13T07:40:57.373749+0000 mgr.smithi039.fbdzkl (mgr.14184) 116 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:40:58.653 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:41:00.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:00 smithi039 bash[16208]: cluster 2024-01-13T07:40:59.374828+0000 mgr.smithi039.fbdzkl (mgr.14184) 117 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:00.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:00 smithi100 bash[20091]: cluster 2024-01-13T07:40:59.374828+0000 mgr.smithi039.fbdzkl (mgr.14184) 117 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:01.651 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:41:02.205 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":17,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:41:02.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:02 smithi039 bash[16208]: cluster 2024-01-13T07:41:01.375532+0000 mgr.smithi039.fbdzkl (mgr.14184) 118 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:02.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:02 smithi039 bash[16208]: audit 2024-01-13T07:41:01.651311+0000 mon.smithi039 (mon.0) 340 : audit [DBG] from='client.? 172.21.15.39:0/4218923546' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:41:02.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:02 smithi100 bash[20091]: cluster 2024-01-13T07:41:01.375532+0000 mgr.smithi039.fbdzkl (mgr.14184) 118 : cluster [DBG] pgmap v84: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:02.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:02 smithi100 bash[20091]: audit 2024-01-13T07:41:01.651311+0000 mon.smithi039 (mon.0) 340 : audit [DBG] from='client.? 172.21.15.39:0/4218923546' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:41:03.206 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:41:04.475 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:04 smithi039 bash[16208]: cluster 2024-01-13T07:41:03.376513+0000 mgr.smithi039.fbdzkl (mgr.14184) 119 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:04.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:04 smithi100 bash[20091]: cluster 2024-01-13T07:41:03.376513+0000 mgr.smithi039.fbdzkl (mgr.14184) 119 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:05.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:05 smithi039 bash[16208]: cluster 2024-01-13T07:41:05.377417+0000 mgr.smithi039.fbdzkl (mgr.14184) 120 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:06.116 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:41:06.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:05 smithi100 bash[20091]: cluster 2024-01-13T07:41:05.377417+0000 mgr.smithi039.fbdzkl (mgr.14184) 120 : cluster [DBG] pgmap v86: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:06.693 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":17,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:41:06.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:06 smithi039 bash[16208]: audit 2024-01-13T07:41:06.116154+0000 mon.smithi039 (mon.0) 341 : audit [DBG] from='client.? 172.21.15.39:0/980804682' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:41:07.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:06 smithi100 bash[20091]: audit 2024-01-13T07:41:06.116154+0000 mon.smithi039 (mon.0) 341 : audit [DBG] from='client.? 172.21.15.39:0/980804682' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:41:07.694 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:41:07.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:07 smithi039 bash[16208]: cluster 2024-01-13T07:41:07.378475+0000 mgr.smithi039.fbdzkl (mgr.14184) 121 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:08.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:07 smithi100 bash[20091]: cluster 2024-01-13T07:41:07.378475+0000 mgr.smithi039.fbdzkl (mgr.14184) 121 : cluster [DBG] pgmap v87: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:10.522 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:41:10.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:10 smithi039 bash[16208]: cluster 2024-01-13T07:41:09.379203+0000 mgr.smithi039.fbdzkl (mgr.14184) 122 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:10.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:10 smithi100 bash[20091]: cluster 2024-01-13T07:41:09.379203+0000 mgr.smithi039.fbdzkl (mgr.14184) 122 : cluster [DBG] pgmap v88: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:11.056 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":17,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:41:11.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:11 smithi039 bash[16208]: audit 2024-01-13T07:41:10.522092+0000 mon.smithi039 (mon.0) 342 : audit [DBG] from='client.? 172.21.15.39:0/3073042436' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:41:11.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:11 smithi100 bash[20091]: audit 2024-01-13T07:41:10.522092+0000 mon.smithi039 (mon.0) 342 : audit [DBG] from='client.? 172.21.15.39:0/3073042436' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:41:12.058 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:41:12.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:12 smithi039 bash[16208]: cluster 2024-01-13T07:41:11.380319+0000 mgr.smithi039.fbdzkl (mgr.14184) 123 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:12.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:12 smithi100 bash[20091]: cluster 2024-01-13T07:41:11.380319+0000 mgr.smithi039.fbdzkl (mgr.14184) 123 : cluster [DBG] pgmap v89: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:14.707 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:14 smithi039 bash[16208]: cluster 2024-01-13T07:41:13.381263+0000 mgr.smithi039.fbdzkl (mgr.14184) 124 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:14.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:14 smithi100 bash[20091]: cluster 2024-01-13T07:41:13.381263+0000 mgr.smithi039.fbdzkl (mgr.14184) 124 : cluster [DBG] pgmap v90: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:15.048 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:41:15.615 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":17,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:41:15.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:15 smithi039 bash[16208]: audit 2024-01-13T07:41:15.047656+0000 mon.smithi039 (mon.0) 343 : audit [DBG] from='client.? 172.21.15.39:0/2241808869' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:41:15.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:15 smithi039 bash[16208]: cluster 2024-01-13T07:41:15.382162+0000 mgr.smithi039.fbdzkl (mgr.14184) 125 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:16.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:15 smithi100 bash[20091]: audit 2024-01-13T07:41:15.047656+0000 mon.smithi039 (mon.0) 343 : audit [DBG] from='client.? 172.21.15.39:0/2241808869' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:41:16.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:15 smithi100 bash[20091]: cluster 2024-01-13T07:41:15.382162+0000 mgr.smithi039.fbdzkl (mgr.14184) 125 : cluster [DBG] pgmap v91: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:16.617 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:41:18.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:18 smithi039 bash[16208]: cluster 2024-01-13T07:41:17.382814+0000 mgr.smithi039.fbdzkl (mgr.14184) 126 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:18.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:18 smithi100 bash[20091]: cluster 2024-01-13T07:41:17.382814+0000 mgr.smithi039.fbdzkl (mgr.14184) 126 : cluster [DBG] pgmap v92: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:19.511 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:41:19.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:19 smithi039 bash[16208]: audit 2024-01-13T07:41:19.355864+0000 mon.smithi039 (mon.0) 344 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:41:19.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:19 smithi100 bash[20091]: audit 2024-01-13T07:41:19.355864+0000 mon.smithi039 (mon.0) 344 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:41:20.071 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":17,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:41:20.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:20 smithi039 bash[16208]: cluster 2024-01-13T07:41:19.383532+0000 mgr.smithi039.fbdzkl (mgr.14184) 127 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:20.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:20 smithi039 bash[16208]: audit 2024-01-13T07:41:19.510878+0000 mon.smithi039 (mon.0) 345 : audit [DBG] from='client.? 172.21.15.39:0/1856142124' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:41:20.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:20 smithi100 bash[20091]: cluster 2024-01-13T07:41:19.383532+0000 mgr.smithi039.fbdzkl (mgr.14184) 127 : cluster [DBG] pgmap v93: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:20.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:20 smithi100 bash[20091]: audit 2024-01-13T07:41:19.510878+0000 mon.smithi039 (mon.0) 345 : audit [DBG] from='client.? 172.21.15.39:0/1856142124' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:41:21.072 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:41:22.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:22 smithi039 bash[16208]: cluster 2024-01-13T07:41:21.384595+0000 mgr.smithi039.fbdzkl (mgr.14184) 128 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:22.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:22 smithi100 bash[20091]: cluster 2024-01-13T07:41:21.384595+0000 mgr.smithi039.fbdzkl (mgr.14184) 128 : cluster [DBG] pgmap v94: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:23.993 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:41:24.552 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":17,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:41:24.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:24 smithi039 bash[16208]: cluster 2024-01-13T07:41:23.385506+0000 mgr.smithi039.fbdzkl (mgr.14184) 129 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:24.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:24 smithi039 bash[16208]: audit 2024-01-13T07:41:23.993320+0000 mon.smithi039 (mon.0) 346 : audit [DBG] from='client.? 172.21.15.39:0/1793401124' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:41:24.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:24 smithi100 bash[20091]: cluster 2024-01-13T07:41:23.385506+0000 mgr.smithi039.fbdzkl (mgr.14184) 129 : cluster [DBG] pgmap v95: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:24.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:24 smithi100 bash[20091]: audit 2024-01-13T07:41:23.993320+0000 mon.smithi039 (mon.0) 346 : audit [DBG] from='client.? 172.21.15.39:0/1793401124' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:41:25.553 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:41:26.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:25 smithi100 bash[20091]: audit 2024-01-13T07:41:24.975082+0000 mon.smithi039 (mon.0) 347 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:41:26.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:25 smithi100 bash[20091]: audit 2024-01-13T07:41:25.269703+0000 mon.smithi039 (mon.0) 348 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:41:26.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:25 smithi100 bash[20091]: audit 2024-01-13T07:41:25.271692+0000 mon.smithi039 (mon.0) 349 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-13T07:41:26.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:25 smithi100 bash[20091]: audit 2024-01-13T07:41:25.282621+0000 mon.smithi039 (mon.0) 350 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:41:26.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:25 smithi100 bash[20091]: cluster 2024-01-13T07:41:25.283551+0000 mgr.smithi039.fbdzkl (mgr.14184) 130 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:26.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:25 smithi100 bash[20091]: audit 2024-01-13T07:41:25.292103+0000 mon.smithi039 (mon.0) 351 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-13T07:41:26.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:25 smithi100 bash[20091]: audit 2024-01-13T07:41:25.299635+0000 mon.smithi039 (mon.0) 352 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:41:26.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:25 smithi100 bash[20091]: audit 2024-01-13T07:41:25.301897+0000 mon.smithi039 (mon.0) 353 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:41:26.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:25 smithi100 bash[20091]: audit 2024-01-13T07:41:25.302425+0000 mon.smithi039 (mon.0) 354 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:41:26.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:25 smithi100 bash[20091]: audit 2024-01-13T07:41:25.303567+0000 mon.smithi039 (mon.0) 355 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:41:26.301 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:25 smithi039 bash[16208]: audit 2024-01-13T07:41:24.975082+0000 mon.smithi039 (mon.0) 347 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:41:26.301 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:25 smithi039 bash[16208]: audit 2024-01-13T07:41:25.269703+0000 mon.smithi039 (mon.0) 348 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:41:26.301 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:25 smithi039 bash[16208]: audit 2024-01-13T07:41:25.271692+0000 mon.smithi039 (mon.0) 349 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-13T07:41:26.301 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:25 smithi039 bash[16208]: audit 2024-01-13T07:41:25.282621+0000 mon.smithi039 (mon.0) 350 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:41:26.301 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:25 smithi039 bash[16208]: cluster 2024-01-13T07:41:25.283551+0000 mgr.smithi039.fbdzkl (mgr.14184) 130 : cluster [DBG] pgmap v96: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:26.301 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:25 smithi039 bash[16208]: audit 2024-01-13T07:41:25.292103+0000 mon.smithi039 (mon.0) 351 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-13T07:41:26.301 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:25 smithi039 bash[16208]: audit 2024-01-13T07:41:25.299635+0000 mon.smithi039 (mon.0) 352 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:41:26.301 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:25 smithi039 bash[16208]: audit 2024-01-13T07:41:25.301897+0000 mon.smithi039 (mon.0) 353 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:41:26.302 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:25 smithi039 bash[16208]: audit 2024-01-13T07:41:25.302425+0000 mon.smithi039 (mon.0) 354 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:41:26.302 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:25 smithi039 bash[16208]: audit 2024-01-13T07:41:25.303567+0000 mon.smithi039 (mon.0) 355 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:41:27.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:26 smithi039 bash[16208]: cluster 2024-01-13T07:41:26.278724+0000 mon.smithi039 (mon.0) 356 : cluster [INF] Health check cleared: CEPHADM_APPLY_SPEC_FAIL (was: Failed to apply 1 service(s): osd.all-available-devices) 2024-01-13T07:41:27.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:26 smithi039 bash[16208]: cluster 2024-01-13T07:41:26.278791+0000 mon.smithi039 (mon.0) 357 : cluster [INF] Cluster is now healthy 2024-01-13T07:41:27.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:26 smithi100 bash[20091]: cluster 2024-01-13T07:41:26.278724+0000 mon.smithi039 (mon.0) 356 : cluster [INF] Health check cleared: CEPHADM_APPLY_SPEC_FAIL (was: Failed to apply 1 service(s): osd.all-available-devices) 2024-01-13T07:41:27.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:26 smithi100 bash[20091]: cluster 2024-01-13T07:41:26.278791+0000 mon.smithi039 (mon.0) 357 : cluster [INF] Cluster is now healthy 2024-01-13T07:41:28.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:27 smithi039 bash[16208]: cluster 2024-01-13T07:41:27.284001+0000 mgr.smithi039.fbdzkl (mgr.14184) 131 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:28.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:27 smithi100 bash[20091]: cluster 2024-01-13T07:41:27.284001+0000 mgr.smithi039.fbdzkl (mgr.14184) 131 : cluster [DBG] pgmap v97: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:28.464 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:41:29.009 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":17,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:41:29.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:28 smithi039 bash[16208]: audit 2024-01-13T07:41:28.464651+0000 mon.smithi039 (mon.0) 358 : audit [DBG] from='client.? 172.21.15.39:0/1697293438' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:41:29.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:28 smithi100 bash[20091]: audit 2024-01-13T07:41:28.464651+0000 mon.smithi039 (mon.0) 358 : audit [DBG] from='client.? 172.21.15.39:0/1697293438' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:41:30.011 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:41:30.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:30 smithi039 bash[16208]: cluster 2024-01-13T07:41:29.284386+0000 mgr.smithi039.fbdzkl (mgr.14184) 132 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:30.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:30 smithi100 bash[20091]: cluster 2024-01-13T07:41:29.284386+0000 mgr.smithi039.fbdzkl (mgr.14184) 132 : cluster [DBG] pgmap v98: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:31.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:31 smithi100 bash[20091]: audit 2024-01-13T07:41:30.359858+0000 mon.smithi039 (mon.0) 359 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:41:31.711 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:31 smithi039 bash[16208]: audit 2024-01-13T07:41:30.359858+0000 mon.smithi039 (mon.0) 359 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:41:32.742 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:32 smithi039 bash[16208]: cluster 2024-01-13T07:41:31.284823+0000 mgr.smithi039.fbdzkl (mgr.14184) 133 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:32.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:32 smithi100 bash[20091]: cluster 2024-01-13T07:41:31.284823+0000 mgr.smithi039.fbdzkl (mgr.14184) 133 : cluster [DBG] pgmap v99: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:34.009 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:41:34.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:34 smithi100 bash[20091]: cluster 2024-01-13T07:41:33.285231+0000 mgr.smithi039.fbdzkl (mgr.14184) 134 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:34.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:34 smithi100 bash[20091]: audit 2024-01-13T07:41:33.643956+0000 mon.smithi100 (mon.1) 8 : audit [INF] from='client.? 172.21.15.100:0/2636221663' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "af955c7a-baeb-401d-a675-7875eb343087"}]: dispatch 2024-01-13T07:41:34.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:34 smithi100 bash[20091]: audit 2024-01-13T07:41:33.644358+0000 mon.smithi039 (mon.0) 360 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "af955c7a-baeb-401d-a675-7875eb343087"}]: dispatch 2024-01-13T07:41:34.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:34 smithi100 bash[20091]: audit 2024-01-13T07:41:33.652582+0000 mon.smithi039 (mon.0) 361 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "af955c7a-baeb-401d-a675-7875eb343087"}]': finished 2024-01-13T07:41:34.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:34 smithi100 bash[20091]: cluster 2024-01-13T07:41:33.652680+0000 mon.smithi039 (mon.0) 362 : cluster [DBG] osdmap e18: 1 total, 0 up, 1 in 2024-01-13T07:41:34.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:34 smithi100 bash[20091]: audit 2024-01-13T07:41:33.652826+0000 mon.smithi039 (mon.0) 363 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:41:34.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:34 smithi100 bash[20091]: audit 2024-01-13T07:41:34.000319+0000 mon.smithi100 (mon.1) 9 : audit [INF] from='client.? 172.21.15.100:0/4294957392' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:41:34.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:34 smithi100 bash[20091]: audit 2024-01-13T07:41:34.000504+0000 mon.smithi039 (mon.0) 364 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:41:34.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:34 smithi100 bash[20091]: audit 2024-01-13T07:41:34.008200+0000 mon.smithi039 (mon.0) 365 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:41:34.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:34 smithi100 bash[20091]: cluster 2024-01-13T07:41:34.008312+0000 mon.smithi039 (mon.0) 366 : cluster [DBG] osdmap e19: 0 total, 0 up, 0 in 2024-01-13T07:41:34.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:34 smithi100 bash[20091]: audit 2024-01-13T07:41:34.008727+0000 mon.smithi039 (mon.0) 367 : audit [DBG] from='client.? 172.21.15.39:0/1908023378' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:41:34.698 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:34 smithi039 bash[16208]: cluster 2024-01-13T07:41:33.285231+0000 mgr.smithi039.fbdzkl (mgr.14184) 134 : cluster [DBG] pgmap v100: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:34.699 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:34 smithi039 bash[16208]: audit 2024-01-13T07:41:33.643956+0000 mon.smithi100 (mon.1) 8 : audit [INF] from='client.? 172.21.15.100:0/2636221663' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "af955c7a-baeb-401d-a675-7875eb343087"}]: dispatch 2024-01-13T07:41:34.699 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:34 smithi039 bash[16208]: audit 2024-01-13T07:41:33.644358+0000 mon.smithi039 (mon.0) 360 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "af955c7a-baeb-401d-a675-7875eb343087"}]: dispatch 2024-01-13T07:41:34.699 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:34 smithi039 bash[16208]: audit 2024-01-13T07:41:33.652582+0000 mon.smithi039 (mon.0) 361 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "af955c7a-baeb-401d-a675-7875eb343087"}]': finished 2024-01-13T07:41:34.699 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:34 smithi039 bash[16208]: cluster 2024-01-13T07:41:33.652680+0000 mon.smithi039 (mon.0) 362 : cluster [DBG] osdmap e18: 1 total, 0 up, 1 in 2024-01-13T07:41:34.699 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:34 smithi039 bash[16208]: audit 2024-01-13T07:41:33.652826+0000 mon.smithi039 (mon.0) 363 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:41:34.699 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:34 smithi039 bash[16208]: audit 2024-01-13T07:41:34.000319+0000 mon.smithi100 (mon.1) 9 : audit [INF] from='client.? 172.21.15.100:0/4294957392' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:41:34.699 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:34 smithi039 bash[16208]: audit 2024-01-13T07:41:34.000504+0000 mon.smithi039 (mon.0) 364 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:41:34.699 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:34 smithi039 bash[16208]: audit 2024-01-13T07:41:34.008200+0000 mon.smithi039 (mon.0) 365 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:41:34.699 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:34 smithi039 bash[16208]: cluster 2024-01-13T07:41:34.008312+0000 mon.smithi039 (mon.0) 366 : cluster [DBG] osdmap e19: 0 total, 0 up, 0 in 2024-01-13T07:41:34.699 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:34 smithi039 bash[16208]: audit 2024-01-13T07:41:34.008727+0000 mon.smithi039 (mon.0) 367 : audit [DBG] from='client.? 172.21.15.39:0/1908023378' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:41:34.714 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":19,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:41:35.715 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:41:35.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: cephadm 2024-01-13T07:41:34.698438+0000 mgr.smithi039.fbdzkl (mgr.14184) 135 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:41:35.994 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:41:35.994 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:41:35.994 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:41:35.994 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:41:35.994 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:41:35.994 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:41:35.994 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:41:35.994 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:41:35.994 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp0_tmpjgn:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmphbsgr9wi:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:41:35.994 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:41:35.994 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:41:35.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:41:35.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new af955c7a-baeb-401d-a675-7875eb343087 2024-01-13T07:41:35.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:41:35.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:41:35.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:41:35.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:41:35.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:41:35.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:41:35.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:35.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:35.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:41:35.995 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:41:35.996 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:41:35.996 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:41:35.996 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:41:35.996 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:41:35.996 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:41:35.996 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:41:35.996 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:41:35.996 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:41:35.996 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:41:35.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:41:35.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:41:35.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:41:35.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:41:35.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:41:35.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:41:35.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:41:35.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:41:35.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:41:35.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:41:35.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:41:35.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:41:35.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:41:35.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:41:35.997 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:35.998 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:35.998 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:41:35.998 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:41:35.998 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:41:35.998 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:41:35.998 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:35.998 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:35.998 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:41:35.999 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:41:35.999 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:41:35.999 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:41:35.999 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:41:35.999 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:41:35.999 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:41:35.999 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:41:35.999 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:35.999 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:35.999 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:41:35.999 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:41:35.999 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:41:35.999 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:41:35.999 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:41:35.999 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:41:36.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:41:36.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: main() 2024-01-13T07:41:36.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:41:36.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:41:36.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:41:36.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:41:36.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:41:36.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:41:36.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:41:36.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:41:36.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:41:36.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:41:36.000 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:41:36.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:41:36.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:41:36.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:41:36.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp0_tmpjgn:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmphbsgr9wi:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:41:36.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: audit 2024-01-13T07:41:35.107791+0000 mon.smithi039 (mon.0) 368 : audit [INF] from='client.? 172.21.15.39:0/2406349757' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6b3300c6-4199-4f03-8464-6b35a1ff9e06"}]: dispatch 2024-01-13T07:41:36.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: audit 2024-01-13T07:41:35.118874+0000 mon.smithi039 (mon.0) 369 : audit [INF] from='client.? 172.21.15.39:0/2406349757' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "6b3300c6-4199-4f03-8464-6b35a1ff9e06"}]': finished 2024-01-13T07:41:36.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: cluster 2024-01-13T07:41:35.119033+0000 mon.smithi039 (mon.0) 370 : cluster [DBG] osdmap e20: 1 total, 0 up, 1 in 2024-01-13T07:41:36.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: audit 2024-01-13T07:41:35.119178+0000 mon.smithi039 (mon.0) 371 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:41:36.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: cluster 2024-01-13T07:41:35.285495+0000 mgr.smithi039.fbdzkl (mgr.14184) 136 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:36.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: audit 2024-01-13T07:41:35.482472+0000 mon.smithi039 (mon.0) 372 : audit [INF] from='client.? 172.21.15.39:0/858072142' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:41:36.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: audit 2024-01-13T07:41:35.498095+0000 mon.smithi039 (mon.0) 373 : audit [INF] from='client.? 172.21.15.39:0/858072142' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:41:36.001 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:35 smithi039 bash[16208]: cluster 2024-01-13T07:41:35.498215+0000 mon.smithi039 (mon.0) 374 : cluster [DBG] osdmap e21: 0 total, 0 up, 0 in 2024-01-13T07:41:36.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: cephadm 2024-01-13T07:41:34.698438+0000 mgr.smithi039.fbdzkl (mgr.14184) 135 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:41:36.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:41:36.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:41:36.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:41:36.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:41:36.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:41:36.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:41:36.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:41:36.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:41:36.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp0_tmpjgn:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmphbsgr9wi:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:41:36.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:41:36.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:41:36.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:41:36.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new af955c7a-baeb-401d-a675-7875eb343087 2024-01-13T07:41:36.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:41:36.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:41:36.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:41:36.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:41:36.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:41:36.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:41:36.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:36.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:36.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:41:36.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:41:36.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:41:36.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:41:36.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:41:36.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:41:36.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:41:36.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:41:36.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:41:36.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:41:36.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:41:36.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:41:36.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:41:36.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:41:36.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:41:36.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:41:36.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:41:36.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:41:36.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:41:36.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:41:36.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:41:36.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:41:36.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:41:36.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:41:36.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:41:36.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:36.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:36.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:41:36.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:41:36.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:41:36.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:41:36.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:36.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:36.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:41:36.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:41:36.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:41:36.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:41:36.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:41:36.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:41:36.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:41:36.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:41:36.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:36.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:36.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:41:36.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:41:36.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:41:36.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:41:36.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:41:36.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:41:36.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:41:36.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: main() 2024-01-13T07:41:36.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:41:36.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:41:36.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:41:36.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:41:36.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:41:36.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:41:36.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:41:36.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:41:36.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:41:36.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:41:36.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:41:36.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:41:36.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:41:36.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:41:36.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp0_tmpjgn:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmphbsgr9wi:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:41:36.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: audit 2024-01-13T07:41:35.107791+0000 mon.smithi039 (mon.0) 368 : audit [INF] from='client.? 172.21.15.39:0/2406349757' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "6b3300c6-4199-4f03-8464-6b35a1ff9e06"}]: dispatch 2024-01-13T07:41:36.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: audit 2024-01-13T07:41:35.118874+0000 mon.smithi039 (mon.0) 369 : audit [INF] from='client.? 172.21.15.39:0/2406349757' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "6b3300c6-4199-4f03-8464-6b35a1ff9e06"}]': finished 2024-01-13T07:41:36.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: cluster 2024-01-13T07:41:35.119033+0000 mon.smithi039 (mon.0) 370 : cluster [DBG] osdmap e20: 1 total, 0 up, 1 in 2024-01-13T07:41:36.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: audit 2024-01-13T07:41:35.119178+0000 mon.smithi039 (mon.0) 371 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:41:36.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: cluster 2024-01-13T07:41:35.285495+0000 mgr.smithi039.fbdzkl (mgr.14184) 136 : cluster [DBG] pgmap v104: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:36.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: audit 2024-01-13T07:41:35.482472+0000 mon.smithi039 (mon.0) 372 : audit [INF] from='client.? 172.21.15.39:0/858072142' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:41:36.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: audit 2024-01-13T07:41:35.498095+0000 mon.smithi039 (mon.0) 373 : audit [INF] from='client.? 172.21.15.39:0/858072142' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:41:36.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:35 smithi100 bash[20091]: cluster 2024-01-13T07:41:35.498215+0000 mon.smithi039 (mon.0) 374 : cluster [DBG] osdmap e21: 0 total, 0 up, 0 in 2024-01-13T07:41:37.233 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:37 smithi039 bash[16208]: cluster 2024-01-13T07:41:37.120408+0000 mon.smithi039 (mon.0) 375 : cluster [WRN] Health check failed: Failed to apply 1 service(s): osd.all-available-devices (CEPHADM_APPLY_SPEC_FAIL) 2024-01-13T07:41:37.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:37 smithi100 bash[20091]: cluster 2024-01-13T07:41:37.120408+0000 mon.smithi039 (mon.0) 375 : cluster [WRN] Health check failed: Failed to apply 1 service(s): osd.all-available-devices (CEPHADM_APPLY_SPEC_FAIL) 2024-01-13T07:41:38.448 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: cephadm 2024-01-13T07:41:36.582498+0000 mgr.smithi039.fbdzkl (mgr.14184) 137 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:41:38.448 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:41:38.448 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:41:38.448 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:41:38.449 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:41:38.449 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:41:38.449 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:41:38.449 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:41:38.449 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi039/config 2024-01-13T07:41:38.449 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpts8o8l82:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpgl_4h0b0:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:41:38.449 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:41:38.449 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:41:38.449 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:41:38.449 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new 6b3300c6-4199-4f03-8464-6b35a1ff9e06 2024-01-13T07:41:38.449 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:41:38.449 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:41:38.449 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:41:38.450 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:41:38.450 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:41:38.450 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:41:38.450 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:38.451 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:38.451 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:41:38.451 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:41:38.451 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:41:38.451 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:41:38.451 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:41:38.451 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:41:38.451 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:41:38.451 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:41:38.451 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:41:38.451 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:41:38.451 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:41:38.452 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:41:38.452 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:41:38.452 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:41:38.452 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:41:38.452 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:41:38.452 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:41:38.452 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:41:38.452 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:41:38.452 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:41:38.452 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:41:38.452 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:41:38.452 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:41:38.452 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:41:38.452 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:41:38.453 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:38.453 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:38.453 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:41:38.453 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:41:38.453 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:41:38.453 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:41:38.453 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:38.453 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:38.453 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:41:38.453 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:41:38.453 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:41:38.453 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:41:38.453 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:41:38.453 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:41:38.454 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:41:38.454 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:41:38.454 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:38.454 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:38.454 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:41:38.454 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:41:38.454 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:41:38.454 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:41:38.454 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:41:38.454 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:41:38.454 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:41:38.454 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: main() 2024-01-13T07:41:38.454 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:41:38.454 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:41:38.454 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:41:38.455 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:41:38.455 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:41:38.455 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:41:38.455 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:41:38.455 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:41:38.455 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:41:38.455 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:41:38.455 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:41:38.455 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:41:38.456 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:41:38.456 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:41:38.456 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpts8o8l82:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpgl_4h0b0:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:41:38.456 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: cephadm 2024-01-13T07:41:36.584781+0000 mgr.smithi039.fbdzkl (mgr.14184) 138 : cephadm [ERR] Failed to apply osd.all-available-devices spec DriveGroupSpec.from_json(yaml.safe_load('''service_type: osd 2024-01-13T07:41:38.456 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: service_id: all-available-devices 2024-01-13T07:41:38.456 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: service_name: osd.all-available-devices 2024-01-13T07:41:38.456 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: placement: 2024-01-13T07:41:38.456 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: host_pattern: '*' 2024-01-13T07:41:38.456 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: spec: 2024-01-13T07:41:38.456 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: data_devices: 2024-01-13T07:41:38.456 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: all: true 2024-01-13T07:41:38.456 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: filter_logic: AND 2024-01-13T07:41:38.456 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: objectstore: bluestore 2024-01-13T07:41:38.457 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: ''')): cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:41:38.457 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp0_tmpjgn:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmphbsgr9wi:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:41:38.457 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:41:38.457 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:41:38.457 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:41:38.457 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new af955c7a-baeb-401d-a675-7875eb343087 2024-01-13T07:41:38.457 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:41:38.457 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:41:38.457 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:41:38.457 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:41:38.457 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:41:38.457 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:41:38.457 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:38.457 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:38.458 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:41:38.458 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:41:38.458 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:41:38.458 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:41:38.458 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:41:38.458 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:41:38.458 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:41:38.458 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:41:38.458 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:41:38.458 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:41:38.458 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:41:38.458 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:41:38.458 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:41:38.459 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:41:38.459 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:41:38.459 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:41:38.459 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:41:38.459 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:41:38.459 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:41:38.459 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:41:38.459 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:41:38.459 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:41:38.459 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:41:38.459 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:41:38.459 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:41:38.459 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:38.459 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:38.459 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:41:38.460 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:41:38.460 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:41:38.460 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:41:38.460 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:38.460 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:38.460 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:41:38.460 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:41:38.460 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:41:38.460 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:41:38.460 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:41:38.460 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:41:38.460 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:41:38.460 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:41:38.460 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:38.461 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:38.461 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:41:38.461 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:41:38.461 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:41:38.461 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:41:38.461 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:41:38.461 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:41:38.461 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:41:38.461 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: main() 2024-01-13T07:41:38.461 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:41:38.461 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:41:38.461 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:41:38.461 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:41:38.461 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:41:38.462 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:41:38.462 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:41:38.462 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:41:38.462 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:41:38.463 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:41:38.463 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:41:38.463 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:41:38.463 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:41:38.463 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:41:38.463 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp0_tmpjgn:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmphbsgr9wi:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:41:38.463 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:41:38.463 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 521, in _apply_all_services 2024-01-13T07:41:38.463 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: if self._apply_service(spec): 2024-01-13T07:41:38.463 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 595, in _apply_service 2024-01-13T07:41:38.463 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: self.mgr.osd_service.create_from_spec(cast(DriveGroupSpec, spec)) 2024-01-13T07:41:38.463 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 73, in create_from_spec 2024-01-13T07:41:38.463 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: ret = create_from_spec_one(self.prepare_drivegroup(drive_group)) 2024-01-13T07:41:38.464 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 83, in forall_hosts_wrapper 2024-01-13T07:41:38.464 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: return CephadmOrchestrator.instance._worker_pool.map(do_work, vals) 2024-01-13T07:41:38.464 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 266, in map 2024-01-13T07:41:38.464 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: return self._map_async(func, iterable, mapstar, chunksize).get() 2024-01-13T07:41:38.464 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 644, in get 2024-01-13T07:41:38.464 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: raise self._value 2024-01-13T07:41:38.464 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 119, in worker 2024-01-13T07:41:38.464 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: result = (True, func(*args, **kwds)) 2024-01-13T07:41:38.464 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 44, in mapstar 2024-01-13T07:41:38.464 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: return list(map(*args)) 2024-01-13T07:41:38.464 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:41:38.464 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:41:38.464 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:41:38.464 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:41:38.464 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:41:38.465 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:41:38.465 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:41:38.465 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp0_tmpjgn:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmphbsgr9wi:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:41:38.465 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:41:38.465 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:41:38.465 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:41:38.465 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new af955c7a-baeb-401d-a675-7875eb343087 2024-01-13T07:41:38.465 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:41:38.465 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:41:38.465 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:41:38.465 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:41:38.465 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:41:38.465 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:41:38.465 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:38.466 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:38.466 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:41:38.466 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:41:38.466 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:41:38.466 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:41:38.466 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:41:38.466 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:41:38.466 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:41:38.466 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:41:38.466 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:41:38.466 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:41:38.466 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:41:38.466 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:41:38.466 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:41:38.466 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:41:38.467 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:41:38.467 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:41:38.467 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:41:38.467 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:41:38.467 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:41:38.467 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:41:38.467 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:41:38.467 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:41:38.467 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:41:38.467 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:41:38.467 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:41:38.467 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:38.467 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:38.467 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:41:38.467 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:41:38.468 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:41:38.468 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:41:38.468 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:38.468 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:38.468 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:41:38.468 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:41:38.468 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:41:38.468 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:41:38.468 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:41:38.468 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:41:38.468 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:41:38.468 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:41:38.468 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:38.469 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:38.469 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:41:38.469 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:41:38.469 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:41:38.469 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:41:38.469 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:41:38.469 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:41:38.469 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:41:38.469 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: main() 2024-01-13T07:41:38.469 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:41:38.469 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:41:38.469 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:41:38.469 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:41:38.469 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:41:38.470 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:41:38.470 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:41:38.470 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:41:38.470 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:41:38.470 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:41:38.470 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:41:38.470 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:41:38.470 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:41:38.470 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:41:38.470 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp0_tmpjgn:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmphbsgr9wi:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:41:38.470 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:38 smithi039 bash[16208]: cluster 2024-01-13T07:41:36.586220+0000 mgr.smithi039.fbdzkl (mgr.14184) 139 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:38.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: cephadm 2024-01-13T07:41:36.582498+0000 mgr.smithi039.fbdzkl (mgr.14184) 137 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:41:38.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:41:38.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:41:38.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:41:38.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:41:38.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:41:38.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:41:38.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:41:38.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi039/config 2024-01-13T07:41:38.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpts8o8l82:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpgl_4h0b0:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:41:38.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:41:38.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:41:38.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:41:38.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new 6b3300c6-4199-4f03-8464-6b35a1ff9e06 2024-01-13T07:41:38.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:41:38.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:41:38.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:41:38.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:41:38.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:41:38.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:41:38.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:38.496 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:38.496 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:41:38.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:41:38.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:41:38.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:41:38.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:41:38.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:41:38.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:41:38.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:41:38.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:41:38.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:41:38.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:41:38.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:41:38.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:41:38.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:41:38.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:41:38.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:41:38.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:41:38.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:41:38.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:41:38.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:41:38.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:41:38.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:41:38.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:41:38.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:41:38.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:41:38.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:38.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:38.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:41:38.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:41:38.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:41:38.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:41:38.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:38.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:38.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:41:38.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:41:38.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:41:38.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:41:38.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:41:38.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:41:38.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:41:38.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:41:38.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:38.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:38.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:41:38.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:41:38.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:41:38.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:41:38.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:41:38.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:41:38.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:41:38.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: main() 2024-01-13T07:41:38.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:41:38.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:41:38.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:41:38.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:41:38.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:41:38.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:41:38.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:41:38.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:41:38.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:41:38.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:41:38.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:41:38.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:41:38.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:41:38.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:41:38.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpts8o8l82:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpgl_4h0b0:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:41:38.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: cephadm 2024-01-13T07:41:36.584781+0000 mgr.smithi039.fbdzkl (mgr.14184) 138 : cephadm [ERR] Failed to apply osd.all-available-devices spec DriveGroupSpec.from_json(yaml.safe_load('''service_type: osd 2024-01-13T07:41:38.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: service_id: all-available-devices 2024-01-13T07:41:38.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: service_name: osd.all-available-devices 2024-01-13T07:41:38.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: placement: 2024-01-13T07:41:38.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: host_pattern: '*' 2024-01-13T07:41:38.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: spec: 2024-01-13T07:41:38.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: data_devices: 2024-01-13T07:41:38.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: all: true 2024-01-13T07:41:38.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: filter_logic: AND 2024-01-13T07:41:38.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: objectstore: bluestore 2024-01-13T07:41:38.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: ''')): cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:41:38.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp0_tmpjgn:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmphbsgr9wi:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:41:38.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:41:38.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:41:38.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:41:38.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new af955c7a-baeb-401d-a675-7875eb343087 2024-01-13T07:41:38.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:41:38.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:41:38.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:41:38.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:41:38.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:41:38.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:41:38.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:38.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:38.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:41:38.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:41:38.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:41:38.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:41:38.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:41:38.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:41:38.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:41:38.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:41:38.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:41:38.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:41:38.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:41:38.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:41:38.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:41:38.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:41:38.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:41:38.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:41:38.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:41:38.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:41:38.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:41:38.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:41:38.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:41:38.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:41:38.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:41:38.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:41:38.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:41:38.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:38.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:38.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:41:38.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:41:38.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:41:38.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:41:38.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:38.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:38.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:41:38.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:41:38.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:41:38.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:41:38.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:41:38.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:41:38.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:41:38.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:41:38.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:38.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:38.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:41:38.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:41:38.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:41:38.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:41:38.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:41:38.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:41:38.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:41:38.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: main() 2024-01-13T07:41:38.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:41:38.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:41:38.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:41:38.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:41:38.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:41:38.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:41:38.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:41:38.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:41:38.508 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:41:38.508 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:41:38.508 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:41:38.508 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:41:38.508 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:41:38.508 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:41:38.508 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp0_tmpjgn:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmphbsgr9wi:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:41:38.508 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:41:38.508 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 521, in _apply_all_services 2024-01-13T07:41:38.508 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: if self._apply_service(spec): 2024-01-13T07:41:38.508 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 595, in _apply_service 2024-01-13T07:41:38.508 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: self.mgr.osd_service.create_from_spec(cast(DriveGroupSpec, spec)) 2024-01-13T07:41:38.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 73, in create_from_spec 2024-01-13T07:41:38.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: ret = create_from_spec_one(self.prepare_drivegroup(drive_group)) 2024-01-13T07:41:38.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 83, in forall_hosts_wrapper 2024-01-13T07:41:38.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: return CephadmOrchestrator.instance._worker_pool.map(do_work, vals) 2024-01-13T07:41:38.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 266, in map 2024-01-13T07:41:38.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: return self._map_async(func, iterable, mapstar, chunksize).get() 2024-01-13T07:41:38.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 644, in get 2024-01-13T07:41:38.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: raise self._value 2024-01-13T07:41:38.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 119, in worker 2024-01-13T07:41:38.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: result = (True, func(*args, **kwds)) 2024-01-13T07:41:38.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 44, in mapstar 2024-01-13T07:41:38.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: return list(map(*args)) 2024-01-13T07:41:38.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:41:38.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:41:38.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:41:38.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:41:38.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:41:38.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:41:38.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:41:38.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp0_tmpjgn:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmphbsgr9wi:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:41:38.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:41:38.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:41:38.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:41:38.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new af955c7a-baeb-401d-a675-7875eb343087 2024-01-13T07:41:38.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:41:38.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:41:38.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:41:38.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:41:38.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:41:38.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:41:38.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:38.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:38.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:41:38.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:41:38.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:41:38.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:41:38.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:41:38.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:41:38.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:41:38.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:41:38.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:41:38.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:41:38.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:41:38.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:41:38.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:41:38.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:41:38.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:41:38.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:41:38.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:41:38.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:41:38.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:41:38.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:41:38.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:41:38.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:41:38.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:41:38.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:41:38.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:41:38.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:38.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:38.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:41:38.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:41:38.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:41:38.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:41:38.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:38.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:38.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:41:38.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:41:38.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:41:38.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:41:38.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:41:38.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:41:38.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:41:38.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:41:38.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:41:38.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:41:38.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:41:38.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:41:38.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:41:38.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:41:38.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:41:38.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:41:38.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:41:38.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: main() 2024-01-13T07:41:38.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:41:38.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:41:38.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:41:38.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:41:38.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:41:38.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:41:38.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:41:38.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:41:38.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:41:38.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:41:38.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:41:38.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:41:38.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:41:38.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:41:38.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp0_tmpjgn:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmphbsgr9wi:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:41:38.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:38 smithi100 bash[20091]: cluster 2024-01-13T07:41:36.586220+0000 mgr.smithi039.fbdzkl (mgr.14184) 139 : cluster [DBG] pgmap v106: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:38.853 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:41:39.477 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:39 smithi039 bash[16208]: audit 2024-01-13T07:41:38.852507+0000 mon.smithi039 (mon.0) 376 : audit [DBG] from='client.? 172.21.15.39:0/2449673364' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:41:39.478 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":21,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:41:39.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:39 smithi100 bash[20091]: audit 2024-01-13T07:41:38.852507+0000 mon.smithi039 (mon.0) 376 : audit [DBG] from='client.? 172.21.15.39:0/2449673364' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:41:40.479 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:41:40.492 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:40 smithi039 bash[16208]: cluster 2024-01-13T07:41:38.586898+0000 mgr.smithi039.fbdzkl (mgr.14184) 140 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:40.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:40 smithi100 bash[20091]: cluster 2024-01-13T07:41:38.586898+0000 mgr.smithi039.fbdzkl (mgr.14184) 140 : cluster [DBG] pgmap v107: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:42.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:42 smithi039 bash[16208]: cluster 2024-01-13T07:41:40.587925+0000 mgr.smithi039.fbdzkl (mgr.14184) 141 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:42.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:42 smithi100 bash[20091]: cluster 2024-01-13T07:41:40.587925+0000 mgr.smithi039.fbdzkl (mgr.14184) 141 : cluster [DBG] pgmap v108: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:43.396 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:41:43.960 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":21,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:41:44.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:44 smithi039 bash[16208]: cluster 2024-01-13T07:41:42.588418+0000 mgr.smithi039.fbdzkl (mgr.14184) 142 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:44.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:44 smithi039 bash[16208]: audit 2024-01-13T07:41:43.395885+0000 mon.smithi039 (mon.0) 377 : audit [DBG] from='client.? 172.21.15.39:0/1387408935' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:41:44.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:44 smithi100 bash[20091]: cluster 2024-01-13T07:41:42.588418+0000 mgr.smithi039.fbdzkl (mgr.14184) 142 : cluster [DBG] pgmap v109: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:44.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:44 smithi100 bash[20091]: audit 2024-01-13T07:41:43.395885+0000 mon.smithi039 (mon.0) 377 : audit [DBG] from='client.? 172.21.15.39:0/1387408935' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:41:44.961 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:41:46.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:46 smithi039 bash[16208]: cluster 2024-01-13T07:41:44.589411+0000 mgr.smithi039.fbdzkl (mgr.14184) 143 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:46.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:46 smithi039 bash[16208]: audit 2024-01-13T07:41:45.359872+0000 mon.smithi039 (mon.0) 378 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:41:46.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:46 smithi100 bash[20091]: cluster 2024-01-13T07:41:44.589411+0000 mgr.smithi039.fbdzkl (mgr.14184) 143 : cluster [DBG] pgmap v110: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:46.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:46 smithi100 bash[20091]: audit 2024-01-13T07:41:45.359872+0000 mon.smithi039 (mon.0) 378 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:41:47.964 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:41:48.497 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":21,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:41:48.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:48 smithi039 bash[16208]: cluster 2024-01-13T07:41:46.590272+0000 mgr.smithi039.fbdzkl (mgr.14184) 144 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:48.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:48 smithi039 bash[16208]: audit 2024-01-13T07:41:47.963937+0000 mon.smithi039 (mon.0) 379 : audit [DBG] from='client.? 172.21.15.39:0/2583400919' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:41:48.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:48 smithi100 bash[20091]: cluster 2024-01-13T07:41:46.590272+0000 mgr.smithi039.fbdzkl (mgr.14184) 144 : cluster [DBG] pgmap v111: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:48.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:48 smithi100 bash[20091]: audit 2024-01-13T07:41:47.963937+0000 mon.smithi039 (mon.0) 379 : audit [DBG] from='client.? 172.21.15.39:0/2583400919' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:41:49.498 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:41:50.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:50 smithi039 bash[16208]: cluster 2024-01-13T07:41:48.591275+0000 mgr.smithi039.fbdzkl (mgr.14184) 145 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:50.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:50 smithi100 bash[20091]: cluster 2024-01-13T07:41:48.591275+0000 mgr.smithi039.fbdzkl (mgr.14184) 145 : cluster [DBG] pgmap v112: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:52.303 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:41:52.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:52 smithi039 bash[16208]: cluster 2024-01-13T07:41:50.592281+0000 mgr.smithi039.fbdzkl (mgr.14184) 146 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:52.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:52 smithi039 bash[16208]: audit 2024-01-13T07:41:52.303177+0000 mon.smithi039 (mon.0) 380 : audit [DBG] from='client.? 172.21.15.39:0/2491087739' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:41:52.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:52 smithi100 bash[20091]: cluster 2024-01-13T07:41:50.592281+0000 mgr.smithi039.fbdzkl (mgr.14184) 146 : cluster [DBG] pgmap v113: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:52.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:52 smithi100 bash[20091]: audit 2024-01-13T07:41:52.303177+0000 mon.smithi039 (mon.0) 380 : audit [DBG] from='client.? 172.21.15.39:0/2491087739' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:41:52.847 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":21,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:41:53.848 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:41:54.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:54 smithi039 bash[16208]: cluster 2024-01-13T07:41:52.593318+0000 mgr.smithi039.fbdzkl (mgr.14184) 147 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:54.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:54 smithi100 bash[20091]: cluster 2024-01-13T07:41:52.593318+0000 mgr.smithi039.fbdzkl (mgr.14184) 147 : cluster [DBG] pgmap v114: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:56.742 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:41:56.742 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:56 smithi039 bash[16208]: cluster 2024-01-13T07:41:54.594278+0000 mgr.smithi039.fbdzkl (mgr.14184) 148 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:56.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:56 smithi100 bash[20091]: cluster 2024-01-13T07:41:54.594278+0000 mgr.smithi039.fbdzkl (mgr.14184) 148 : cluster [DBG] pgmap v115: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:57.306 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":21,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:41:57.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:57 smithi039 bash[16208]: audit 2024-01-13T07:41:56.741586+0000 mon.smithi039 (mon.0) 381 : audit [DBG] from='client.? 172.21.15.39:0/3483700918' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:41:57.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:57 smithi100 bash[20091]: audit 2024-01-13T07:41:56.741586+0000 mon.smithi039 (mon.0) 381 : audit [DBG] from='client.? 172.21.15.39:0/3483700918' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:41:58.308 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:41:58.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:41:58 smithi039 bash[16208]: cluster 2024-01-13T07:41:56.595202+0000 mgr.smithi039.fbdzkl (mgr.14184) 149 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:41:58.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:41:58 smithi100 bash[20091]: cluster 2024-01-13T07:41:56.595202+0000 mgr.smithi039.fbdzkl (mgr.14184) 149 : cluster [DBG] pgmap v116: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:00.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:00 smithi039 bash[16208]: cluster 2024-01-13T07:41:58.596104+0000 mgr.smithi039.fbdzkl (mgr.14184) 150 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:00.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:00 smithi100 bash[20091]: cluster 2024-01-13T07:41:58.596104+0000 mgr.smithi039.fbdzkl (mgr.14184) 150 : cluster [DBG] pgmap v117: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:01.092 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:42:01.648 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":21,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:42:01.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:01 smithi039 bash[16208]: audit 2024-01-13T07:42:01.091742+0000 mon.smithi039 (mon.0) 382 : audit [DBG] from='client.? 172.21.15.39:0/3185467808' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:42:01.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:01 smithi100 bash[20091]: audit 2024-01-13T07:42:01.091742+0000 mon.smithi039 (mon.0) 382 : audit [DBG] from='client.? 172.21.15.39:0/3185467808' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:42:02.649 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:42:02.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:02 smithi039 bash[16208]: cluster 2024-01-13T07:42:00.597392+0000 mgr.smithi039.fbdzkl (mgr.14184) 151 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:02.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:02 smithi100 bash[20091]: cluster 2024-01-13T07:42:00.597392+0000 mgr.smithi039.fbdzkl (mgr.14184) 151 : cluster [DBG] pgmap v118: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:04.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:04 smithi039 bash[16208]: cluster 2024-01-13T07:42:02.598470+0000 mgr.smithi039.fbdzkl (mgr.14184) 152 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:04.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:04 smithi100 bash[20091]: cluster 2024-01-13T07:42:02.598470+0000 mgr.smithi039.fbdzkl (mgr.14184) 152 : cluster [DBG] pgmap v119: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:05.699 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:42:06.197 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":21,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:42:06.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:06 smithi039 bash[16208]: cluster 2024-01-13T07:42:04.599521+0000 mgr.smithi039.fbdzkl (mgr.14184) 153 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:06.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:06 smithi039 bash[16208]: audit 2024-01-13T07:42:05.698644+0000 mon.smithi039 (mon.0) 383 : audit [DBG] from='client.? 172.21.15.39:0/882215042' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:42:06.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:06 smithi100 bash[20091]: cluster 2024-01-13T07:42:04.599521+0000 mgr.smithi039.fbdzkl (mgr.14184) 153 : cluster [DBG] pgmap v120: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:06.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:06 smithi100 bash[20091]: audit 2024-01-13T07:42:05.698644+0000 mon.smithi039 (mon.0) 383 : audit [DBG] from='client.? 172.21.15.39:0/882215042' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:42:07.198 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:42:08.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:08 smithi039 bash[16208]: cluster 2024-01-13T07:42:06.600540+0000 mgr.smithi039.fbdzkl (mgr.14184) 154 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:08.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:08 smithi100 bash[20091]: cluster 2024-01-13T07:42:06.600540+0000 mgr.smithi039.fbdzkl (mgr.14184) 154 : cluster [DBG] pgmap v121: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:09.908 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:42:10.456 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":21,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:42:10.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:10 smithi039 bash[16208]: cluster 2024-01-13T07:42:08.601609+0000 mgr.smithi039.fbdzkl (mgr.14184) 155 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:10.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:10 smithi039 bash[16208]: audit 2024-01-13T07:42:09.907904+0000 mon.smithi039 (mon.0) 384 : audit [DBG] from='client.? 172.21.15.39:0/1203783647' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:42:10.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:10 smithi100 bash[20091]: cluster 2024-01-13T07:42:08.601609+0000 mgr.smithi039.fbdzkl (mgr.14184) 155 : cluster [DBG] pgmap v122: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:10.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:10 smithi100 bash[20091]: audit 2024-01-13T07:42:09.907904+0000 mon.smithi039 (mon.0) 384 : audit [DBG] from='client.? 172.21.15.39:0/1203783647' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:42:11.458 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:42:12.697 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:12 smithi039 bash[16208]: cluster 2024-01-13T07:42:10.602625+0000 mgr.smithi039.fbdzkl (mgr.14184) 156 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:12.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:12 smithi100 bash[20091]: cluster 2024-01-13T07:42:10.602625+0000 mgr.smithi039.fbdzkl (mgr.14184) 156 : cluster [DBG] pgmap v123: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:14.366 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:42:14.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:14 smithi039 bash[16208]: cluster 2024-01-13T07:42:12.603699+0000 mgr.smithi039.fbdzkl (mgr.14184) 157 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:14.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:14 smithi039 bash[16208]: audit 2024-01-13T07:42:14.365478+0000 mon.smithi039 (mon.0) 385 : audit [DBG] from='client.? 172.21.15.39:0/4049110717' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:42:14.979 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":21,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:42:14.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:14 smithi100 bash[20091]: cluster 2024-01-13T07:42:12.603699+0000 mgr.smithi039.fbdzkl (mgr.14184) 157 : cluster [DBG] pgmap v124: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:14.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:14 smithi100 bash[20091]: audit 2024-01-13T07:42:14.365478+0000 mon.smithi039 (mon.0) 385 : audit [DBG] from='client.? 172.21.15.39:0/4049110717' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:42:15.980 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:42:16.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:16 smithi039 bash[16208]: cluster 2024-01-13T07:42:14.604759+0000 mgr.smithi039.fbdzkl (mgr.14184) 158 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:16.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:16 smithi100 bash[20091]: cluster 2024-01-13T07:42:14.604759+0000 mgr.smithi039.fbdzkl (mgr.14184) 158 : cluster [DBG] pgmap v125: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:18.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:18 smithi039 bash[16208]: cluster 2024-01-13T07:42:16.605886+0000 mgr.smithi039.fbdzkl (mgr.14184) 159 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:18.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:18 smithi100 bash[20091]: cluster 2024-01-13T07:42:16.605886+0000 mgr.smithi039.fbdzkl (mgr.14184) 159 : cluster [DBG] pgmap v126: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:18.994 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:42:19.588 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":21,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:42:19.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:19 smithi039 bash[16208]: audit 2024-01-13T07:42:18.994280+0000 mon.smithi039 (mon.0) 386 : audit [DBG] from='client.? 172.21.15.39:0/3586134215' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:42:19.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:19 smithi100 bash[20091]: audit 2024-01-13T07:42:18.994280+0000 mon.smithi039 (mon.0) 386 : audit [DBG] from='client.? 172.21.15.39:0/3586134215' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:42:20.589 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:42:20.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:20 smithi039 bash[16208]: cluster 2024-01-13T07:42:18.607050+0000 mgr.smithi039.fbdzkl (mgr.14184) 160 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:20.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:20 smithi100 bash[20091]: cluster 2024-01-13T07:42:18.607050+0000 mgr.smithi039.fbdzkl (mgr.14184) 160 : cluster [DBG] pgmap v127: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:22.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:22 smithi039 bash[16208]: cluster 2024-01-13T07:42:20.608456+0000 mgr.smithi039.fbdzkl (mgr.14184) 161 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:22.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:22 smithi100 bash[20091]: cluster 2024-01-13T07:42:20.608456+0000 mgr.smithi039.fbdzkl (mgr.14184) 161 : cluster [DBG] pgmap v128: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:23.495 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:42:23.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:23 smithi039 bash[16208]: audit 2024-01-13T07:42:23.494458+0000 mon.smithi039 (mon.0) 387 : audit [DBG] from='client.? 172.21.15.39:0/850106680' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:42:23.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:23 smithi100 bash[20091]: audit 2024-01-13T07:42:23.494458+0000 mon.smithi039 (mon.0) 387 : audit [DBG] from='client.? 172.21.15.39:0/850106680' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:42:24.087 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":21,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:42:24.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:24 smithi039 bash[16208]: cluster 2024-01-13T07:42:22.609578+0000 mgr.smithi039.fbdzkl (mgr.14184) 162 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:24.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:24 smithi100 bash[20091]: cluster 2024-01-13T07:42:22.609578+0000 mgr.smithi039.fbdzkl (mgr.14184) 162 : cluster [DBG] pgmap v129: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:25.088 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:42:26.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:26 smithi039 bash[16208]: cluster 2024-01-13T07:42:24.610602+0000 mgr.smithi039.fbdzkl (mgr.14184) 163 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:26.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:26 smithi100 bash[20091]: cluster 2024-01-13T07:42:24.610602+0000 mgr.smithi039.fbdzkl (mgr.14184) 163 : cluster [DBG] pgmap v130: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:27.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:27 smithi039 bash[16208]: cluster 2024-01-13T07:42:26.611655+0000 mgr.smithi039.fbdzkl (mgr.14184) 164 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:27.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:27 smithi100 bash[20091]: cluster 2024-01-13T07:42:26.611655+0000 mgr.smithi039.fbdzkl (mgr.14184) 164 : cluster [DBG] pgmap v131: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:28.073 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:42:28.677 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":21,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:42:28.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:28 smithi039 bash[16208]: audit 2024-01-13T07:42:28.072985+0000 mon.smithi039 (mon.0) 388 : audit [DBG] from='client.? 172.21.15.39:0/3555409273' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:42:28.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:28 smithi100 bash[20091]: audit 2024-01-13T07:42:28.072985+0000 mon.smithi039 (mon.0) 388 : audit [DBG] from='client.? 172.21.15.39:0/3555409273' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:42:29.678 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:42:29.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:29 smithi039 bash[16208]: cluster 2024-01-13T07:42:28.612720+0000 mgr.smithi039.fbdzkl (mgr.14184) 165 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:29.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:29 smithi100 bash[20091]: cluster 2024-01-13T07:42:28.612720+0000 mgr.smithi039.fbdzkl (mgr.14184) 165 : cluster [DBG] pgmap v132: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:32.166 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:31 smithi039 bash[16208]: cluster 2024-01-13T07:42:30.613751+0000 mgr.smithi039.fbdzkl (mgr.14184) 166 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:32.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:31 smithi100 bash[20091]: cluster 2024-01-13T07:42:30.613751+0000 mgr.smithi039.fbdzkl (mgr.14184) 166 : cluster [DBG] pgmap v133: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:32.588 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:42:32.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:32 smithi039 bash[16208]: audit 2024-01-13T07:42:32.587326+0000 mon.smithi039 (mon.0) 389 : audit [DBG] from='client.? 172.21.15.39:0/3793104577' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:42:33.188 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":21,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:42:33.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:32 smithi100 bash[20091]: audit 2024-01-13T07:42:32.587326+0000 mon.smithi039 (mon.0) 389 : audit [DBG] from='client.? 172.21.15.39:0/3793104577' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:42:33.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:33 smithi100 bash[20091]: cluster 2024-01-13T07:42:32.614353+0000 mgr.smithi039.fbdzkl (mgr.14184) 167 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:34.190 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:42:34.202 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:33 smithi039 bash[16208]: cluster 2024-01-13T07:42:32.614353+0000 mgr.smithi039.fbdzkl (mgr.14184) 167 : cluster [DBG] pgmap v134: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:36.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:35 smithi039 bash[16208]: cluster 2024-01-13T07:42:34.615366+0000 mgr.smithi039.fbdzkl (mgr.14184) 168 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:36.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:35 smithi100 bash[20091]: cluster 2024-01-13T07:42:34.615366+0000 mgr.smithi039.fbdzkl (mgr.14184) 168 : cluster [DBG] pgmap v135: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:37.212 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:42:37.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:36 smithi039 bash[16208]: audit 2024-01-13T07:42:36.587431+0000 mon.smithi039 (mon.0) 390 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:42:37.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:36 smithi100 bash[20091]: audit 2024-01-13T07:42:36.587431+0000 mon.smithi039 (mon.0) 390 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:42:37.837 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":21,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:42:38.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:37 smithi039 bash[16208]: cluster 2024-01-13T07:42:36.616335+0000 mgr.smithi039.fbdzkl (mgr.14184) 169 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:38.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:37 smithi039 bash[16208]: audit 2024-01-13T07:42:37.211331+0000 mon.smithi039 (mon.0) 391 : audit [DBG] from='client.? 172.21.15.39:0/2127294618' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:42:38.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:37 smithi100 bash[20091]: cluster 2024-01-13T07:42:36.616335+0000 mgr.smithi039.fbdzkl (mgr.14184) 169 : cluster [DBG] pgmap v136: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:38.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:37 smithi100 bash[20091]: audit 2024-01-13T07:42:37.211331+0000 mon.smithi039 (mon.0) 391 : audit [DBG] from='client.? 172.21.15.39:0/2127294618' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:42:38.838 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:42:40.069 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:39 smithi039 bash[16208]: cluster 2024-01-13T07:42:38.617334+0000 mgr.smithi039.fbdzkl (mgr.14184) 170 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:40.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:39 smithi100 bash[20091]: cluster 2024-01-13T07:42:38.617334+0000 mgr.smithi039.fbdzkl (mgr.14184) 170 : cluster [DBG] pgmap v137: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:41.742 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:42:42.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:41 smithi039 bash[16208]: cluster 2024-01-13T07:42:40.618151+0000 mgr.smithi039.fbdzkl (mgr.14184) 171 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:42.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:41 smithi039 bash[16208]: audit 2024-01-13T07:42:41.741840+0000 mon.smithi039 (mon.0) 392 : audit [DBG] from='client.? 172.21.15.39:0/2012389423' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:42:42.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:41 smithi100 bash[20091]: cluster 2024-01-13T07:42:40.618151+0000 mgr.smithi039.fbdzkl (mgr.14184) 171 : cluster [DBG] pgmap v138: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:42.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:41 smithi100 bash[20091]: audit 2024-01-13T07:42:41.741840+0000 mon.smithi039 (mon.0) 392 : audit [DBG] from='client.? 172.21.15.39:0/2012389423' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:42:42.328 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":21,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:42:43.331 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:42:43.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:43 smithi039 bash[16208]: audit 2024-01-13T07:42:42.188833+0000 mon.smithi039 (mon.0) 393 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:42:43.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:43 smithi039 bash[16208]: audit 2024-01-13T07:42:42.482992+0000 mon.smithi039 (mon.0) 394 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:42:43.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:43 smithi039 bash[16208]: audit 2024-01-13T07:42:42.485098+0000 mon.smithi039 (mon.0) 395 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-13T07:42:43.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:43 smithi039 bash[16208]: audit 2024-01-13T07:42:42.494905+0000 mon.smithi039 (mon.0) 396 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:42:43.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:43 smithi039 bash[16208]: cluster 2024-01-13T07:42:42.495792+0000 mgr.smithi039.fbdzkl (mgr.14184) 172 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:43.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:43 smithi039 bash[16208]: audit 2024-01-13T07:42:42.501832+0000 mon.smithi039 (mon.0) 397 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-13T07:42:43.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:43 smithi039 bash[16208]: audit 2024-01-13T07:42:42.511436+0000 mon.smithi039 (mon.0) 398 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:42:43.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:43 smithi039 bash[16208]: audit 2024-01-13T07:42:42.515012+0000 mon.smithi039 (mon.0) 399 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:42:43.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:43 smithi039 bash[16208]: audit 2024-01-13T07:42:42.515583+0000 mon.smithi039 (mon.0) 400 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:42:43.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:43 smithi039 bash[16208]: audit 2024-01-13T07:42:42.516646+0000 mon.smithi039 (mon.0) 401 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:42:43.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:43 smithi100 bash[20091]: audit 2024-01-13T07:42:42.188833+0000 mon.smithi039 (mon.0) 393 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:42:43.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:43 smithi100 bash[20091]: audit 2024-01-13T07:42:42.482992+0000 mon.smithi039 (mon.0) 394 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:42:43.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:43 smithi100 bash[20091]: audit 2024-01-13T07:42:42.485098+0000 mon.smithi039 (mon.0) 395 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-13T07:42:43.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:43 smithi100 bash[20091]: audit 2024-01-13T07:42:42.494905+0000 mon.smithi039 (mon.0) 396 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:42:43.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:43 smithi100 bash[20091]: cluster 2024-01-13T07:42:42.495792+0000 mgr.smithi039.fbdzkl (mgr.14184) 172 : cluster [DBG] pgmap v139: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:43.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:43 smithi100 bash[20091]: audit 2024-01-13T07:42:42.501832+0000 mon.smithi039 (mon.0) 397 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-13T07:42:43.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:43 smithi100 bash[20091]: audit 2024-01-13T07:42:42.511436+0000 mon.smithi039 (mon.0) 398 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:42:43.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:43 smithi100 bash[20091]: audit 2024-01-13T07:42:42.515012+0000 mon.smithi039 (mon.0) 399 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:42:43.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:43 smithi100 bash[20091]: audit 2024-01-13T07:42:42.515583+0000 mon.smithi039 (mon.0) 400 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:42:43.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:43 smithi100 bash[20091]: audit 2024-01-13T07:42:42.516646+0000 mon.smithi039 (mon.0) 401 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:42:44.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:44 smithi039 bash[16208]: cluster 2024-01-13T07:42:43.491319+0000 mon.smithi039 (mon.0) 402 : cluster [INF] Health check cleared: CEPHADM_APPLY_SPEC_FAIL (was: Failed to apply 1 service(s): osd.all-available-devices) 2024-01-13T07:42:44.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:44 smithi039 bash[16208]: cluster 2024-01-13T07:42:43.491386+0000 mon.smithi039 (mon.0) 403 : cluster [INF] Cluster is now healthy 2024-01-13T07:42:44.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:44 smithi100 bash[20091]: cluster 2024-01-13T07:42:43.491319+0000 mon.smithi039 (mon.0) 402 : cluster [INF] Health check cleared: CEPHADM_APPLY_SPEC_FAIL (was: Failed to apply 1 service(s): osd.all-available-devices) 2024-01-13T07:42:44.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:44 smithi100 bash[20091]: cluster 2024-01-13T07:42:43.491386+0000 mon.smithi039 (mon.0) 403 : cluster [INF] Cluster is now healthy 2024-01-13T07:42:45.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:45 smithi039 bash[16208]: cluster 2024-01-13T07:42:44.496092+0000 mgr.smithi039.fbdzkl (mgr.14184) 173 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:45.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:45 smithi100 bash[20091]: cluster 2024-01-13T07:42:44.496092+0000 mgr.smithi039.fbdzkl (mgr.14184) 173 : cluster [DBG] pgmap v140: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:46.260 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:42:46.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:46 smithi039 bash[16208]: audit 2024-01-13T07:42:45.362062+0000 mon.smithi039 (mon.0) 404 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:42:46.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:46 smithi039 bash[16208]: audit 2024-01-13T07:42:46.259501+0000 mon.smithi039 (mon.0) 405 : audit [DBG] from='client.? 172.21.15.39:0/3182237422' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:42:46.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:46 smithi100 bash[20091]: audit 2024-01-13T07:42:45.362062+0000 mon.smithi039 (mon.0) 404 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:42:46.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:46 smithi100 bash[20091]: audit 2024-01-13T07:42:46.259501+0000 mon.smithi039 (mon.0) 405 : audit [DBG] from='client.? 172.21.15.39:0/3182237422' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:42:46.836 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":21,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:42:47.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:47 smithi039 bash[16208]: cluster 2024-01-13T07:42:46.496491+0000 mgr.smithi039.fbdzkl (mgr.14184) 174 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:47.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:47 smithi100 bash[20091]: cluster 2024-01-13T07:42:46.496491+0000 mgr.smithi039.fbdzkl (mgr.14184) 174 : cluster [DBG] pgmap v141: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:47.838 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:42:49.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:49 smithi100 bash[20091]: cluster 2024-01-13T07:42:48.496933+0000 mgr.smithi039.fbdzkl (mgr.14184) 175 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:50.010 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:49 smithi039 bash[16208]: cluster 2024-01-13T07:42:48.496933+0000 mgr.smithi039.fbdzkl (mgr.14184) 175 : cluster [DBG] pgmap v142: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:51.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:50 smithi039 bash[16208]: cluster 2024-01-13T07:42:50.497353+0000 mgr.smithi039.fbdzkl (mgr.14184) 176 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:51.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:50 smithi100 bash[20091]: cluster 2024-01-13T07:42:50.497353+0000 mgr.smithi039.fbdzkl (mgr.14184) 176 : cluster [DBG] pgmap v143: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:51.817 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:42:51.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:51 smithi100 bash[20091]: audit 2024-01-13T07:42:51.215221+0000 mon.smithi039 (mon.0) 406 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c829f91d-010f-4908-846a-c91ba2cc7765"}]: dispatch 2024-01-13T07:42:51.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:51 smithi100 bash[20091]: audit 2024-01-13T07:42:51.215408+0000 mon.smithi100 (mon.1) 10 : audit [INF] from='client.? 172.21.15.100:0/543545142' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c829f91d-010f-4908-846a-c91ba2cc7765"}]: dispatch 2024-01-13T07:42:51.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:51 smithi100 bash[20091]: audit 2024-01-13T07:42:51.224777+0000 mon.smithi039 (mon.0) 407 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c829f91d-010f-4908-846a-c91ba2cc7765"}]': finished 2024-01-13T07:42:51.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:51 smithi100 bash[20091]: cluster 2024-01-13T07:42:51.224860+0000 mon.smithi039 (mon.0) 408 : cluster [DBG] osdmap e22: 1 total, 0 up, 1 in 2024-01-13T07:42:51.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:51 smithi100 bash[20091]: audit 2024-01-13T07:42:51.225052+0000 mon.smithi039 (mon.0) 409 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:42:51.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:51 smithi100 bash[20091]: audit 2024-01-13T07:42:51.567062+0000 mon.smithi100 (mon.1) 11 : audit [INF] from='client.? 172.21.15.100:0/1122457778' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:42:51.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:51 smithi100 bash[20091]: audit 2024-01-13T07:42:51.567144+0000 mon.smithi039 (mon.0) 410 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:42:51.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:51 smithi100 bash[20091]: audit 2024-01-13T07:42:51.574220+0000 mon.smithi039 (mon.0) 411 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:42:51.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:51 smithi100 bash[20091]: cluster 2024-01-13T07:42:51.574373+0000 mon.smithi039 (mon.0) 412 : cluster [DBG] osdmap e23: 0 total, 0 up, 0 in 2024-01-13T07:42:51.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:51 smithi100 bash[20091]: audit 2024-01-13T07:42:51.816637+0000 mon.smithi039 (mon.0) 413 : audit [DBG] from='client.? 172.21.15.39:0/79819761' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:42:52.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:51 smithi039 bash[16208]: audit 2024-01-13T07:42:51.215221+0000 mon.smithi039 (mon.0) 406 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c829f91d-010f-4908-846a-c91ba2cc7765"}]: dispatch 2024-01-13T07:42:52.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:51 smithi039 bash[16208]: audit 2024-01-13T07:42:51.215408+0000 mon.smithi100 (mon.1) 10 : audit [INF] from='client.? 172.21.15.100:0/543545142' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c829f91d-010f-4908-846a-c91ba2cc7765"}]: dispatch 2024-01-13T07:42:52.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:51 smithi039 bash[16208]: audit 2024-01-13T07:42:51.224777+0000 mon.smithi039 (mon.0) 407 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c829f91d-010f-4908-846a-c91ba2cc7765"}]': finished 2024-01-13T07:42:52.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:51 smithi039 bash[16208]: cluster 2024-01-13T07:42:51.224860+0000 mon.smithi039 (mon.0) 408 : cluster [DBG] osdmap e22: 1 total, 0 up, 1 in 2024-01-13T07:42:52.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:51 smithi039 bash[16208]: audit 2024-01-13T07:42:51.225052+0000 mon.smithi039 (mon.0) 409 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:42:52.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:51 smithi039 bash[16208]: audit 2024-01-13T07:42:51.567062+0000 mon.smithi100 (mon.1) 11 : audit [INF] from='client.? 172.21.15.100:0/1122457778' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:42:52.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:51 smithi039 bash[16208]: audit 2024-01-13T07:42:51.567144+0000 mon.smithi039 (mon.0) 410 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:42:52.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:51 smithi039 bash[16208]: audit 2024-01-13T07:42:51.574220+0000 mon.smithi039 (mon.0) 411 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:42:52.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:51 smithi039 bash[16208]: cluster 2024-01-13T07:42:51.574373+0000 mon.smithi039 (mon.0) 412 : cluster [DBG] osdmap e23: 0 total, 0 up, 0 in 2024-01-13T07:42:52.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:51 smithi039 bash[16208]: audit 2024-01-13T07:42:51.816637+0000 mon.smithi039 (mon.0) 413 : audit [DBG] from='client.? 172.21.15.39:0/79819761' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:42:52.388 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":23,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:42:53.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: audit 2024-01-13T07:42:51.921270+0000 mon.smithi039 (mon.0) 414 : audit [INF] from='client.? 172.21.15.39:0/2755099577' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1da55a79-cb99-4db8-b1a4-3fc59b6012c4"}]: dispatch 2024-01-13T07:42:53.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: audit 2024-01-13T07:42:51.931377+0000 mon.smithi039 (mon.0) 415 : audit [INF] from='client.? 172.21.15.39:0/2755099577' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1da55a79-cb99-4db8-b1a4-3fc59b6012c4"}]': finished 2024-01-13T07:42:53.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: cluster 2024-01-13T07:42:51.931524+0000 mon.smithi039 (mon.0) 416 : cluster [DBG] osdmap e24: 1 total, 0 up, 1 in 2024-01-13T07:42:53.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: audit 2024-01-13T07:42:51.931691+0000 mon.smithi039 (mon.0) 417 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:42:53.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: audit 2024-01-13T07:42:52.286832+0000 mon.smithi039 (mon.0) 418 : audit [INF] from='client.? 172.21.15.39:0/1134762037' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:42:53.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: cephadm 2024-01-13T07:42:52.294133+0000 mgr.smithi039.fbdzkl (mgr.14184) 177 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:42:53.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:42:53.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:42:53.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:42:53.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:42:53.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:42:53.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:42:53.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:42:53.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:42:53.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpexto299n:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpgr_7vdtv:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:42:53.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:42:53.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:42:53.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:42:53.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new c829f91d-010f-4908-846a-c91ba2cc7765 2024-01-13T07:42:53.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:42:53.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:42:53.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:42:53.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:42:53.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:42:53.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:42:53.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:53.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:53.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:42:53.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:42:53.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:42:53.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:42:53.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:42:53.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:42:53.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:42:53.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:42:53.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:42:53.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:42:53.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:42:53.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:42:53.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:42:53.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:42:53.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:42:53.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:42:53.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:42:53.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:42:53.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:42:53.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:42:53.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:42:53.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:42:53.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:42:53.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:42:53.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:42:53.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:53.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:53.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:42:53.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:42:53.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:42:53.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:42:53.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:53.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:53.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:42:53.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:42:53.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:42:53.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:42:53.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:42:53.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:42:53.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:42:53.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:42:53.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:53.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:53.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:42:53.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:42:53.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:42:53.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:42:53.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:42:53.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:42:53.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:42:53.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: main() 2024-01-13T07:42:53.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:42:53.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:42:53.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:42:53.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:42:53.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:42:53.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:42:53.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:42:53.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:42:53.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:42:53.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:42:53.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:42:53.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:42:53.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:42:53.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:42:53.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpexto299n:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpgr_7vdtv:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:42:53.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: audit 2024-01-13T07:42:52.294415+0000 mon.smithi039 (mon.0) 419 : audit [INF] from='client.? 172.21.15.39:0/1134762037' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:42:53.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: cluster 2024-01-13T07:42:52.294633+0000 mon.smithi039 (mon.0) 420 : cluster [DBG] osdmap e25: 0 total, 0 up, 0 in 2024-01-13T07:42:53.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:52 smithi039 bash[16208]: cluster 2024-01-13T07:42:52.497898+0000 mgr.smithi039.fbdzkl (mgr.14184) 178 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:53.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: audit 2024-01-13T07:42:51.921270+0000 mon.smithi039 (mon.0) 414 : audit [INF] from='client.? 172.21.15.39:0/2755099577' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1da55a79-cb99-4db8-b1a4-3fc59b6012c4"}]: dispatch 2024-01-13T07:42:53.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: audit 2024-01-13T07:42:51.931377+0000 mon.smithi039 (mon.0) 415 : audit [INF] from='client.? 172.21.15.39:0/2755099577' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1da55a79-cb99-4db8-b1a4-3fc59b6012c4"}]': finished 2024-01-13T07:42:53.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: cluster 2024-01-13T07:42:51.931524+0000 mon.smithi039 (mon.0) 416 : cluster [DBG] osdmap e24: 1 total, 0 up, 1 in 2024-01-13T07:42:53.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: audit 2024-01-13T07:42:51.931691+0000 mon.smithi039 (mon.0) 417 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:42:53.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: audit 2024-01-13T07:42:52.286832+0000 mon.smithi039 (mon.0) 418 : audit [INF] from='client.? 172.21.15.39:0/1134762037' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:42:53.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: cephadm 2024-01-13T07:42:52.294133+0000 mgr.smithi039.fbdzkl (mgr.14184) 177 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:42:53.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:42:53.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:42:53.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:42:53.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:42:53.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:42:53.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:42:53.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:42:53.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:42:53.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpexto299n:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpgr_7vdtv:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:42:53.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:42:53.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:42:53.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:42:53.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new c829f91d-010f-4908-846a-c91ba2cc7765 2024-01-13T07:42:53.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:42:53.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:42:53.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:42:53.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:42:53.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:42:53.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:42:53.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:53.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:53.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:42:53.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:42:53.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:42:53.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:42:53.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:42:53.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:42:53.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:42:53.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:42:53.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:42:53.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:42:53.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:42:53.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:42:53.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:42:53.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:42:53.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:42:53.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:42:53.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:42:53.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:42:53.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:42:53.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:42:53.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:42:53.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:42:53.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:42:53.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:42:53.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:42:53.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:53.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:53.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:42:53.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:42:53.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:42:53.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:42:53.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:53.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:53.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:42:53.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:42:53.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:42:53.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:42:53.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:42:53.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:42:53.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:42:53.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:42:53.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:53.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:53.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:42:53.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:42:53.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:42:53.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:42:53.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:42:53.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:42:53.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:42:53.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: main() 2024-01-13T07:42:53.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:42:53.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:42:53.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:42:53.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:42:53.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:42:53.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:42:53.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:42:53.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:42:53.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:42:53.258 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:42:53.258 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:42:53.258 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:42:53.258 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:42:53.258 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:42:53.258 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpexto299n:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpgr_7vdtv:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:42:53.258 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: audit 2024-01-13T07:42:52.294415+0000 mon.smithi039 (mon.0) 419 : audit [INF] from='client.? 172.21.15.39:0/1134762037' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:42:53.258 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: cluster 2024-01-13T07:42:52.294633+0000 mon.smithi039 (mon.0) 420 : cluster [DBG] osdmap e25: 0 total, 0 up, 0 in 2024-01-13T07:42:53.258 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:52 smithi100 bash[20091]: cluster 2024-01-13T07:42:52.497898+0000 mgr.smithi039.fbdzkl (mgr.14184) 178 : cluster [DBG] pgmap v148: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:53.389 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:42:53.851 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: cephadm 2024-01-13T07:42:53.044482+0000 mgr.smithi039.fbdzkl (mgr.14184) 179 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:42:53.852 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:42:53.852 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:42:53.852 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:42:53.852 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:42:53.852 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:42:53.852 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:42:53.852 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:42:53.852 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi039/config 2024-01-13T07:42:53.852 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpg8sfh6xa:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpok85o626:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:42:53.852 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:42:53.852 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:42:53.853 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:42:53.853 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new 1da55a79-cb99-4db8-b1a4-3fc59b6012c4 2024-01-13T07:42:53.853 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:42:53.853 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:42:53.853 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:42:53.853 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:42:53.853 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:42:53.853 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:42:53.853 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:53.854 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:53.854 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:42:53.854 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:42:53.854 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:42:53.854 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:42:53.855 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:42:53.855 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:42:53.855 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:42:53.855 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:42:53.855 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:42:53.855 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:42:53.855 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:42:53.855 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:42:53.855 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:42:53.855 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:42:53.855 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:42:53.855 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:42:53.855 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:42:53.855 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:42:53.856 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:42:53.856 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:42:53.856 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:42:53.856 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:42:53.856 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:42:53.856 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:42:53.856 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:42:53.856 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:53.856 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:53.856 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:42:53.856 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:42:53.856 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:42:53.856 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:42:53.856 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:53.857 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:53.857 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:42:53.857 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:42:53.857 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:42:53.857 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:42:53.857 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:42:53.857 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:42:53.857 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:42:53.857 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:42:53.857 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:53.857 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:53.857 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:42:53.857 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:42:53.857 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:42:53.857 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:42:53.858 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:42:53.858 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:42:53.858 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:42:53.858 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: main() 2024-01-13T07:42:53.858 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:42:53.858 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:42:53.858 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:42:53.858 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:42:53.858 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:42:53.858 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:42:53.858 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:42:53.858 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:42:53.858 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:42:53.858 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:42:53.859 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:42:53.859 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:42:53.859 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:42:53.859 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:42:53.859 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpg8sfh6xa:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpok85o626:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:42:53.859 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: cephadm 2024-01-13T07:42:53.049011+0000 mgr.smithi039.fbdzkl (mgr.14184) 180 : cephadm [ERR] Failed to apply osd.all-available-devices spec DriveGroupSpec.from_json(yaml.safe_load('''service_type: osd 2024-01-13T07:42:53.859 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: service_id: all-available-devices 2024-01-13T07:42:53.859 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: service_name: osd.all-available-devices 2024-01-13T07:42:53.859 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: placement: 2024-01-13T07:42:53.859 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: host_pattern: '*' 2024-01-13T07:42:53.859 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: spec: 2024-01-13T07:42:53.859 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: data_devices: 2024-01-13T07:42:53.859 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: all: true 2024-01-13T07:42:53.859 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: filter_logic: AND 2024-01-13T07:42:53.860 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: objectstore: bluestore 2024-01-13T07:42:53.860 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: ''')): cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:42:53.860 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpexto299n:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpgr_7vdtv:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:42:53.860 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:42:53.860 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:42:53.860 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:42:53.860 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new c829f91d-010f-4908-846a-c91ba2cc7765 2024-01-13T07:42:53.860 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:42:53.860 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:42:53.860 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:42:53.860 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:42:53.860 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:42:53.860 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:42:53.860 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:53.861 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:53.861 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:42:53.861 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:42:53.861 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:42:53.861 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:42:53.861 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:42:53.861 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:42:53.861 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:42:53.861 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:42:53.861 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:42:53.861 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:42:53.861 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:42:53.861 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:42:53.861 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:42:53.862 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:42:53.862 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:42:53.862 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:42:53.862 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:42:53.862 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:42:53.862 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:42:53.862 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:42:53.862 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:42:53.862 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:42:53.862 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:42:53.862 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:42:53.862 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:42:53.863 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:53.863 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:53.863 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:42:53.863 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:42:53.863 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:42:53.863 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:42:53.863 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:53.863 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:53.863 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:42:53.863 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:42:53.863 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:42:53.863 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:42:53.863 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:42:53.863 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:42:53.863 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:42:53.864 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:42:53.864 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:53.864 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:53.864 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:42:53.864 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:42:53.864 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:42:53.864 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:42:53.864 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:42:53.865 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:42:53.865 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:42:53.865 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: main() 2024-01-13T07:42:53.865 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:42:53.865 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:42:53.865 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:42:53.865 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:42:53.865 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:42:53.865 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:42:53.865 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:42:53.865 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:42:53.866 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:42:53.866 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:42:53.867 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:42:53.867 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:42:53.867 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:42:53.867 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:42:53.867 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpexto299n:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpgr_7vdtv:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:42:53.867 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:42:53.867 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 521, in _apply_all_services 2024-01-13T07:42:53.867 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: if self._apply_service(spec): 2024-01-13T07:42:53.867 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 595, in _apply_service 2024-01-13T07:42:53.867 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: self.mgr.osd_service.create_from_spec(cast(DriveGroupSpec, spec)) 2024-01-13T07:42:53.867 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 73, in create_from_spec 2024-01-13T07:42:53.867 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: ret = create_from_spec_one(self.prepare_drivegroup(drive_group)) 2024-01-13T07:42:53.867 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 83, in forall_hosts_wrapper 2024-01-13T07:42:53.867 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: return CephadmOrchestrator.instance._worker_pool.map(do_work, vals) 2024-01-13T07:42:53.868 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 266, in map 2024-01-13T07:42:53.868 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: return self._map_async(func, iterable, mapstar, chunksize).get() 2024-01-13T07:42:53.868 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 644, in get 2024-01-13T07:42:53.869 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: raise self._value 2024-01-13T07:42:53.869 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 119, in worker 2024-01-13T07:42:53.869 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: result = (True, func(*args, **kwds)) 2024-01-13T07:42:53.869 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 44, in mapstar 2024-01-13T07:42:53.869 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: return list(map(*args)) 2024-01-13T07:42:53.869 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:42:53.869 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:42:53.869 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:42:53.869 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:42:53.870 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:42:53.870 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:42:53.870 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:42:53.870 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpexto299n:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpgr_7vdtv:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:42:53.870 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:42:53.870 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:42:53.870 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:42:53.870 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new c829f91d-010f-4908-846a-c91ba2cc7765 2024-01-13T07:42:53.870 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:42:53.870 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:42:53.871 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:42:53.871 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:42:53.871 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:42:53.871 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:42:53.871 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:53.871 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:53.871 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:42:53.871 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:42:53.871 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:42:53.871 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:42:53.871 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:42:53.871 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:42:53.871 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:42:53.872 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:42:53.872 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:42:53.872 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:42:53.872 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:42:53.872 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:42:53.872 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:42:53.872 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:42:53.872 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:42:53.872 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:42:53.872 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:42:53.872 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:42:53.873 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:42:53.873 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:42:53.873 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:42:53.873 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:42:53.873 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:42:53.873 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:42:53.873 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:42:53.873 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:53.873 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:53.873 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:42:53.873 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:42:53.873 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:42:53.873 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:42:53.874 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:53.874 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:53.874 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:42:53.874 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:42:53.874 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:42:53.874 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:42:53.874 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:42:53.874 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:42:53.874 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:42:53.875 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:42:53.875 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:53.875 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:53.875 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:42:53.876 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:42:53.876 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:42:53.876 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:42:53.876 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:42:53.876 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:42:53.876 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:42:53.876 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: main() 2024-01-13T07:42:53.876 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:42:53.876 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:42:53.876 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:42:53.876 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:42:53.876 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:42:53.876 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:42:53.877 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:42:53.877 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:42:53.877 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:42:53.877 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:42:53.877 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:42:53.877 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:42:53.877 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:42:53.877 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:42:53.877 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpexto299n:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpgr_7vdtv:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:42:53.877 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: cluster 2024-01-13T07:42:53.051147+0000 mgr.smithi039.fbdzkl (mgr.14184) 181 : cluster [DBG] pgmap v149: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:54.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: cephadm 2024-01-13T07:42:53.044482+0000 mgr.smithi039.fbdzkl (mgr.14184) 179 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:42:54.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:42:54.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:42:54.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:42:54.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:42:54.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:42:54.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:42:54.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:42:54.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi039/config 2024-01-13T07:42:54.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpg8sfh6xa:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpok85o626:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:42:54.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:42:54.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:42:54.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:42:54.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new 1da55a79-cb99-4db8-b1a4-3fc59b6012c4 2024-01-13T07:42:54.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:42:54.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:42:54.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:42:54.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:42:54.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:42:54.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:42:54.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:54.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:54.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:42:54.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:42:54.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:42:54.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:42:54.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:42:54.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:42:54.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:42:54.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:42:54.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:42:54.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:42:54.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:42:54.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:42:54.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:42:54.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:42:54.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:42:54.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:42:54.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:42:54.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:42:54.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:42:54.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:42:54.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:42:54.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:42:54.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:42:54.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:42:54.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:42:54.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:54.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:54.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:42:54.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:42:54.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:42:54.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:42:54.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:54.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:54.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:42:54.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:42:54.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:42:54.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:42:54.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:42:54.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:42:54.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:42:54.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:42:54.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:54.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:54.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:42:54.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:42:54.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:42:54.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:42:54.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:42:54.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:42:54.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:42:54.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: main() 2024-01-13T07:42:54.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:42:54.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:42:54.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:42:54.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:42:54.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:42:54.249 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:42:54.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:42:54.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:42:54.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:42:54.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:42:54.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:42:54.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:42:54.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:42:54.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:42:54.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpg8sfh6xa:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpok85o626:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:42:54.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: cephadm 2024-01-13T07:42:53.049011+0000 mgr.smithi039.fbdzkl (mgr.14184) 180 : cephadm [ERR] Failed to apply osd.all-available-devices spec DriveGroupSpec.from_json(yaml.safe_load('''service_type: osd 2024-01-13T07:42:54.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: service_id: all-available-devices 2024-01-13T07:42:54.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: service_name: osd.all-available-devices 2024-01-13T07:42:54.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: placement: 2024-01-13T07:42:54.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: host_pattern: '*' 2024-01-13T07:42:54.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: spec: 2024-01-13T07:42:54.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: data_devices: 2024-01-13T07:42:54.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: all: true 2024-01-13T07:42:54.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: filter_logic: AND 2024-01-13T07:42:54.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: objectstore: bluestore 2024-01-13T07:42:54.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: ''')): cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:42:54.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpexto299n:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpgr_7vdtv:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:42:54.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:42:54.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:42:54.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:42:54.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new c829f91d-010f-4908-846a-c91ba2cc7765 2024-01-13T07:42:54.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:42:54.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:42:54.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:42:54.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:42:54.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:42:54.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:42:54.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:54.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:54.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:42:54.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:42:54.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:42:54.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:42:54.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:42:54.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:42:54.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:42:54.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:42:54.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:42:54.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:42:54.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:42:54.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:42:54.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:42:54.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:42:54.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:42:54.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:42:54.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:42:54.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:42:54.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:42:54.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:42:54.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:42:54.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:42:54.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:42:54.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:42:54.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:42:54.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:54.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:54.254 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:42:54.254 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:42:54.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:42:54.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:42:54.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:54.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:54.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:42:54.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:42:54.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:42:54.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:42:54.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:42:54.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:42:54.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:42:54.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:42:54.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:54.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:54.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:42:54.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:42:54.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:42:54.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:42:54.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:42:54.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:42:54.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:42:54.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: main() 2024-01-13T07:42:54.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:42:54.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:42:54.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:42:54.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:42:54.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:42:54.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:42:54.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:42:54.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:42:54.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:42:54.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:42:54.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:42:54.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:42:54.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:42:54.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:42:54.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpexto299n:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpgr_7vdtv:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:42:54.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:42:54.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 521, in _apply_all_services 2024-01-13T07:42:54.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: if self._apply_service(spec): 2024-01-13T07:42:54.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 595, in _apply_service 2024-01-13T07:42:54.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: self.mgr.osd_service.create_from_spec(cast(DriveGroupSpec, spec)) 2024-01-13T07:42:54.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 73, in create_from_spec 2024-01-13T07:42:54.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: ret = create_from_spec_one(self.prepare_drivegroup(drive_group)) 2024-01-13T07:42:54.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 83, in forall_hosts_wrapper 2024-01-13T07:42:54.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: return CephadmOrchestrator.instance._worker_pool.map(do_work, vals) 2024-01-13T07:42:54.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 266, in map 2024-01-13T07:42:54.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: return self._map_async(func, iterable, mapstar, chunksize).get() 2024-01-13T07:42:54.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 644, in get 2024-01-13T07:42:54.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: raise self._value 2024-01-13T07:42:54.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 119, in worker 2024-01-13T07:42:54.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: result = (True, func(*args, **kwds)) 2024-01-13T07:42:54.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 44, in mapstar 2024-01-13T07:42:54.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: return list(map(*args)) 2024-01-13T07:42:54.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:42:54.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:42:54.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:42:54.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:42:54.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:42:54.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:42:54.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:42:54.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpexto299n:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpgr_7vdtv:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:42:54.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:42:54.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:42:54.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:42:54.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new c829f91d-010f-4908-846a-c91ba2cc7765 2024-01-13T07:42:54.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:42:54.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:42:54.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:42:54.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:42:54.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:42:54.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:42:54.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:54.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:54.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:42:54.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:42:54.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:42:54.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:42:54.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:42:54.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:42:54.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:42:54.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:42:54.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:42:54.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:42:54.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:42:54.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:42:54.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:42:54.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:42:54.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:42:54.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:42:54.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:42:54.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:42:54.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:42:54.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:42:54.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:42:54.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:42:54.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:42:54.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:42:54.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:42:54.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:54.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:54.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:42:54.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:42:54.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:42:54.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:42:54.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:54.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:54.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:42:54.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:42:54.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:42:54.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:42:54.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:42:54.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:42:54.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:42:54.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:42:54.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:42:54.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:42:54.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:42:54.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:42:54.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:42:54.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:42:54.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:42:54.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:42:54.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:42:54.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: main() 2024-01-13T07:42:54.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:42:54.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:42:54.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:42:54.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:42:54.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:42:54.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:42:54.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:42:54.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:42:54.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:42:54.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:42:54.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:42:54.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:42:54.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:42:54.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:42:54.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpexto299n:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpgr_7vdtv:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:42:54.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: cluster 2024-01-13T07:42:53.051147+0000 mgr.smithi039.fbdzkl (mgr.14184) 181 : cluster [DBG] pgmap v149: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:54.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:53 smithi039 bash[16208]: cluster 2024-01-13T07:42:53.289990+0000 mon.smithi039 (mon.0) 421 : cluster [WRN] Health check failed: Failed to apply 1 service(s): osd.all-available-devices (CEPHADM_APPLY_SPEC_FAIL) 2024-01-13T07:42:56.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:55 smithi039 bash[16208]: cluster 2024-01-13T07:42:55.052329+0000 mgr.smithi039.fbdzkl (mgr.14184) 182 : cluster [DBG] pgmap v150: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:56.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:53 smithi100 bash[20091]: cluster 2024-01-13T07:42:53.289990+0000 mon.smithi039 (mon.0) 421 : cluster [WRN] Health check failed: Failed to apply 1 service(s): osd.all-available-devices (CEPHADM_APPLY_SPEC_FAIL) 2024-01-13T07:42:56.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:55 smithi100 bash[20091]: cluster 2024-01-13T07:42:55.052329+0000 mgr.smithi039.fbdzkl (mgr.14184) 182 : cluster [DBG] pgmap v150: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:56.393 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:42:56.930 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":25,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:42:57.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:56 smithi039 bash[16208]: audit 2024-01-13T07:42:56.393026+0000 mon.smithi039 (mon.0) 422 : audit [DBG] from='client.? 172.21.15.39:0/3202211192' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:42:57.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:56 smithi100 bash[20091]: audit 2024-01-13T07:42:56.393026+0000 mon.smithi039 (mon.0) 422 : audit [DBG] from='client.? 172.21.15.39:0/3202211192' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:42:57.931 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:42:58.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:42:57 smithi039 bash[16208]: cluster 2024-01-13T07:42:57.053515+0000 mgr.smithi039.fbdzkl (mgr.14184) 183 : cluster [DBG] pgmap v151: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:42:58.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:42:57 smithi100 bash[20091]: cluster 2024-01-13T07:42:57.053515+0000 mgr.smithi039.fbdzkl (mgr.14184) 183 : cluster [DBG] pgmap v151: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:00.371 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:00 smithi039 bash[16208]: cluster 2024-01-13T07:42:59.054645+0000 mgr.smithi039.fbdzkl (mgr.14184) 184 : cluster [DBG] pgmap v152: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:00.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:00 smithi100 bash[20091]: cluster 2024-01-13T07:42:59.054645+0000 mgr.smithi039.fbdzkl (mgr.14184) 184 : cluster [DBG] pgmap v152: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:00.790 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:43:01.392 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":25,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:43:01.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:01 smithi039 bash[16208]: audit 2024-01-13T07:43:00.363633+0000 mon.smithi039 (mon.0) 423 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:43:01.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:01 smithi039 bash[16208]: audit 2024-01-13T07:43:00.790091+0000 mon.smithi039 (mon.0) 424 : audit [DBG] from='client.? 172.21.15.39:0/1287426732' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:01.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:01 smithi100 bash[20091]: audit 2024-01-13T07:43:00.363633+0000 mon.smithi039 (mon.0) 423 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:43:01.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:01 smithi100 bash[20091]: audit 2024-01-13T07:43:00.790091+0000 mon.smithi039 (mon.0) 424 : audit [DBG] from='client.? 172.21.15.39:0/1287426732' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:02.394 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:43:02.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:02 smithi039 bash[16208]: cluster 2024-01-13T07:43:01.055709+0000 mgr.smithi039.fbdzkl (mgr.14184) 185 : cluster [DBG] pgmap v153: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:02.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:02 smithi100 bash[20091]: cluster 2024-01-13T07:43:01.055709+0000 mgr.smithi039.fbdzkl (mgr.14184) 185 : cluster [DBG] pgmap v153: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:04.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:04 smithi039 bash[16208]: cluster 2024-01-13T07:43:03.056792+0000 mgr.smithi039.fbdzkl (mgr.14184) 186 : cluster [DBG] pgmap v154: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:04.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:04 smithi100 bash[20091]: cluster 2024-01-13T07:43:03.056792+0000 mgr.smithi039.fbdzkl (mgr.14184) 186 : cluster [DBG] pgmap v154: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:05.273 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:43:05.887 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":25,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:43:06.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:05 smithi039 bash[16208]: cluster 2024-01-13T07:43:05.057349+0000 mgr.smithi039.fbdzkl (mgr.14184) 187 : cluster [DBG] pgmap v155: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:06.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:05 smithi039 bash[16208]: audit 2024-01-13T07:43:05.273361+0000 mon.smithi039 (mon.0) 425 : audit [DBG] from='client.? 172.21.15.39:0/2064364209' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:06.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:05 smithi100 bash[20091]: cluster 2024-01-13T07:43:05.057349+0000 mgr.smithi039.fbdzkl (mgr.14184) 187 : cluster [DBG] pgmap v155: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:06.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:05 smithi100 bash[20091]: audit 2024-01-13T07:43:05.273361+0000 mon.smithi039 (mon.0) 425 : audit [DBG] from='client.? 172.21.15.39:0/2064364209' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:06.888 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:43:08.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:08 smithi039 bash[16208]: cluster 2024-01-13T07:43:07.058401+0000 mgr.smithi039.fbdzkl (mgr.14184) 188 : cluster [DBG] pgmap v156: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:08.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:08 smithi100 bash[20091]: cluster 2024-01-13T07:43:07.058401+0000 mgr.smithi039.fbdzkl (mgr.14184) 188 : cluster [DBG] pgmap v156: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:09.740 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:43:10.290 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":25,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:43:10.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:10 smithi039 bash[16208]: cluster 2024-01-13T07:43:09.059575+0000 mgr.smithi039.fbdzkl (mgr.14184) 189 : cluster [DBG] pgmap v157: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:10.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:10 smithi039 bash[16208]: audit 2024-01-13T07:43:09.739828+0000 mon.smithi039 (mon.0) 426 : audit [DBG] from='client.? 172.21.15.39:0/1396013615' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:10.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:10 smithi100 bash[20091]: cluster 2024-01-13T07:43:09.059575+0000 mgr.smithi039.fbdzkl (mgr.14184) 189 : cluster [DBG] pgmap v157: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:10.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:10 smithi100 bash[20091]: audit 2024-01-13T07:43:09.739828+0000 mon.smithi039 (mon.0) 426 : audit [DBG] from='client.? 172.21.15.39:0/1396013615' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:11.291 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:43:12.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:12 smithi039 bash[16208]: cluster 2024-01-13T07:43:11.060605+0000 mgr.smithi039.fbdzkl (mgr.14184) 190 : cluster [DBG] pgmap v158: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:12.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:12 smithi100 bash[20091]: cluster 2024-01-13T07:43:11.060605+0000 mgr.smithi039.fbdzkl (mgr.14184) 190 : cluster [DBG] pgmap v158: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:14.133 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:43:14.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:14 smithi039 bash[16208]: cluster 2024-01-13T07:43:13.061166+0000 mgr.smithi039.fbdzkl (mgr.14184) 191 : cluster [DBG] pgmap v159: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:14.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:14 smithi039 bash[16208]: audit 2024-01-13T07:43:14.132776+0000 mon.smithi039 (mon.0) 427 : audit [DBG] from='client.? 172.21.15.39:0/2032275377' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:14.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:14 smithi100 bash[20091]: cluster 2024-01-13T07:43:13.061166+0000 mgr.smithi039.fbdzkl (mgr.14184) 191 : cluster [DBG] pgmap v159: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:14.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:14 smithi100 bash[20091]: audit 2024-01-13T07:43:14.132776+0000 mon.smithi039 (mon.0) 427 : audit [DBG] from='client.? 172.21.15.39:0/2032275377' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:14.740 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":25,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:43:15.741 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:43:16.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:15 smithi039 bash[16208]: cluster 2024-01-13T07:43:15.062424+0000 mgr.smithi039.fbdzkl (mgr.14184) 192 : cluster [DBG] pgmap v160: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:16.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:15 smithi100 bash[20091]: cluster 2024-01-13T07:43:15.062424+0000 mgr.smithi039.fbdzkl (mgr.14184) 192 : cluster [DBG] pgmap v160: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:18.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:18 smithi039 bash[16208]: cluster 2024-01-13T07:43:17.063023+0000 mgr.smithi039.fbdzkl (mgr.14184) 193 : cluster [DBG] pgmap v161: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:18.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:18 smithi100 bash[20091]: cluster 2024-01-13T07:43:17.063023+0000 mgr.smithi039.fbdzkl (mgr.14184) 193 : cluster [DBG] pgmap v161: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:18.627 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:43:19.236 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":25,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:43:19.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:19 smithi039 bash[16208]: audit 2024-01-13T07:43:18.627289+0000 mon.smithi039 (mon.0) 428 : audit [DBG] from='client.? 172.21.15.39:0/3266621954' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:19.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:19 smithi100 bash[20091]: audit 2024-01-13T07:43:18.627289+0000 mon.smithi039 (mon.0) 428 : audit [DBG] from='client.? 172.21.15.39:0/3266621954' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:20.238 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:43:20.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:20 smithi039 bash[16208]: cluster 2024-01-13T07:43:19.064085+0000 mgr.smithi039.fbdzkl (mgr.14184) 194 : cluster [DBG] pgmap v162: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:20.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:20 smithi100 bash[20091]: cluster 2024-01-13T07:43:19.064085+0000 mgr.smithi039.fbdzkl (mgr.14184) 194 : cluster [DBG] pgmap v162: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:22.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:22 smithi039 bash[16208]: cluster 2024-01-13T07:43:21.065176+0000 mgr.smithi039.fbdzkl (mgr.14184) 195 : cluster [DBG] pgmap v163: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:22.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:22 smithi100 bash[20091]: cluster 2024-01-13T07:43:21.065176+0000 mgr.smithi039.fbdzkl (mgr.14184) 195 : cluster [DBG] pgmap v163: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:23.123 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:43:23.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:23 smithi039 bash[16208]: audit 2024-01-13T07:43:23.122678+0000 mon.smithi039 (mon.0) 429 : audit [DBG] from='client.? 172.21.15.39:0/3931363728' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:23.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:23 smithi100 bash[20091]: audit 2024-01-13T07:43:23.122678+0000 mon.smithi039 (mon.0) 429 : audit [DBG] from='client.? 172.21.15.39:0/3931363728' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:23.716 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":25,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:43:24.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:24 smithi039 bash[16208]: cluster 2024-01-13T07:43:23.066199+0000 mgr.smithi039.fbdzkl (mgr.14184) 196 : cluster [DBG] pgmap v164: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:24.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:24 smithi100 bash[20091]: cluster 2024-01-13T07:43:23.066199+0000 mgr.smithi039.fbdzkl (mgr.14184) 196 : cluster [DBG] pgmap v164: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:24.718 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:43:26.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:25 smithi039 bash[16208]: cluster 2024-01-13T07:43:25.067267+0000 mgr.smithi039.fbdzkl (mgr.14184) 197 : cluster [DBG] pgmap v165: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:26.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:25 smithi100 bash[20091]: cluster 2024-01-13T07:43:25.067267+0000 mgr.smithi039.fbdzkl (mgr.14184) 197 : cluster [DBG] pgmap v165: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:27.581 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:43:28.204 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":25,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:43:28.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:28 smithi039 bash[16208]: cluster 2024-01-13T07:43:27.067805+0000 mgr.smithi039.fbdzkl (mgr.14184) 198 : cluster [DBG] pgmap v166: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:28.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:28 smithi039 bash[16208]: audit 2024-01-13T07:43:27.580450+0000 mon.smithi039 (mon.0) 430 : audit [DBG] from='client.? 172.21.15.39:0/445914555' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:28.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:28 smithi100 bash[20091]: cluster 2024-01-13T07:43:27.067805+0000 mgr.smithi039.fbdzkl (mgr.14184) 198 : cluster [DBG] pgmap v166: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:28.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:28 smithi100 bash[20091]: audit 2024-01-13T07:43:27.580450+0000 mon.smithi039 (mon.0) 430 : audit [DBG] from='client.? 172.21.15.39:0/445914555' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:29.206 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:43:30.457 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:30 smithi039 bash[16208]: cluster 2024-01-13T07:43:29.068830+0000 mgr.smithi039.fbdzkl (mgr.14184) 199 : cluster [DBG] pgmap v167: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:30.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:30 smithi100 bash[20091]: cluster 2024-01-13T07:43:29.068830+0000 mgr.smithi039.fbdzkl (mgr.14184) 199 : cluster [DBG] pgmap v167: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:32.164 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:43:32.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:32 smithi039 bash[16208]: cluster 2024-01-13T07:43:31.069865+0000 mgr.smithi039.fbdzkl (mgr.14184) 200 : cluster [DBG] pgmap v168: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:32.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:32 smithi100 bash[20091]: cluster 2024-01-13T07:43:31.069865+0000 mgr.smithi039.fbdzkl (mgr.14184) 200 : cluster [DBG] pgmap v168: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:32.743 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":25,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:43:33.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:33 smithi039 bash[16208]: audit 2024-01-13T07:43:32.163574+0000 mon.smithi039 (mon.0) 431 : audit [DBG] from='client.? 172.21.15.39:0/77530940' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:33.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:33 smithi100 bash[20091]: audit 2024-01-13T07:43:32.163574+0000 mon.smithi039 (mon.0) 431 : audit [DBG] from='client.? 172.21.15.39:0/77530940' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:33.744 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:43:34.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:34 smithi039 bash[16208]: cluster 2024-01-13T07:43:33.070960+0000 mgr.smithi039.fbdzkl (mgr.14184) 201 : cluster [DBG] pgmap v169: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:34.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:34 smithi100 bash[20091]: cluster 2024-01-13T07:43:33.070960+0000 mgr.smithi039.fbdzkl (mgr.14184) 201 : cluster [DBG] pgmap v169: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:36.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:35 smithi039 bash[16208]: cluster 2024-01-13T07:43:35.071666+0000 mgr.smithi039.fbdzkl (mgr.14184) 202 : cluster [DBG] pgmap v170: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:36.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:35 smithi100 bash[20091]: cluster 2024-01-13T07:43:35.071666+0000 mgr.smithi039.fbdzkl (mgr.14184) 202 : cluster [DBG] pgmap v170: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:36.749 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:43:37.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:36 smithi100 bash[20091]: audit 2024-01-13T07:43:36.748373+0000 mon.smithi039 (mon.0) 432 : audit [DBG] from='client.? 172.21.15.39:0/1843553148' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:37.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:36 smithi039 bash[16208]: audit 2024-01-13T07:43:36.748373+0000 mon.smithi039 (mon.0) 432 : audit [DBG] from='client.? 172.21.15.39:0/1843553148' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:37.316 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":25,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:43:38.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:37 smithi039 bash[16208]: cluster 2024-01-13T07:43:37.072790+0000 mgr.smithi039.fbdzkl (mgr.14184) 203 : cluster [DBG] pgmap v171: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:38.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:37 smithi100 bash[20091]: cluster 2024-01-13T07:43:37.072790+0000 mgr.smithi039.fbdzkl (mgr.14184) 203 : cluster [DBG] pgmap v171: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:38.318 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:43:40.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:40 smithi039 bash[16208]: cluster 2024-01-13T07:43:39.073759+0000 mgr.smithi039.fbdzkl (mgr.14184) 204 : cluster [DBG] pgmap v172: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:40.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:40 smithi100 bash[20091]: cluster 2024-01-13T07:43:39.073759+0000 mgr.smithi039.fbdzkl (mgr.14184) 204 : cluster [DBG] pgmap v172: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:41.241 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:43:41.801 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":25,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:43:42.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:42 smithi039 bash[16208]: cluster 2024-01-13T07:43:41.074355+0000 mgr.smithi039.fbdzkl (mgr.14184) 205 : cluster [DBG] pgmap v173: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:42.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:42 smithi039 bash[16208]: audit 2024-01-13T07:43:41.240327+0000 mon.smithi039 (mon.0) 433 : audit [DBG] from='client.? 172.21.15.39:0/1681517787' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:42.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:42 smithi100 bash[20091]: cluster 2024-01-13T07:43:41.074355+0000 mgr.smithi039.fbdzkl (mgr.14184) 205 : cluster [DBG] pgmap v173: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:42.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:42 smithi100 bash[20091]: audit 2024-01-13T07:43:41.240327+0000 mon.smithi039 (mon.0) 433 : audit [DBG] from='client.? 172.21.15.39:0/1681517787' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:42.802 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:43:44.370 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:44 smithi039 bash[16208]: cluster 2024-01-13T07:43:43.074832+0000 mgr.smithi039.fbdzkl (mgr.14184) 206 : cluster [DBG] pgmap v174: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:44.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:44 smithi100 bash[20091]: cluster 2024-01-13T07:43:43.074832+0000 mgr.smithi039.fbdzkl (mgr.14184) 206 : cluster [DBG] pgmap v174: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:45.774 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:43:46.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:45 smithi039 bash[16208]: cluster 2024-01-13T07:43:45.075931+0000 mgr.smithi039.fbdzkl (mgr.14184) 207 : cluster [DBG] pgmap v175: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:46.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:45 smithi039 bash[16208]: audit 2024-01-13T07:43:45.774188+0000 mon.smithi039 (mon.0) 434 : audit [DBG] from='client.? 172.21.15.39:0/786676683' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:46.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:45 smithi100 bash[20091]: cluster 2024-01-13T07:43:45.075931+0000 mgr.smithi039.fbdzkl (mgr.14184) 207 : cluster [DBG] pgmap v175: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:46.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:45 smithi100 bash[20091]: audit 2024-01-13T07:43:45.774188+0000 mon.smithi039 (mon.0) 434 : audit [DBG] from='client.? 172.21.15.39:0/786676683' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:46.345 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":25,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:43:47.346 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:43:48.479 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:48 smithi039 bash[16208]: cluster 2024-01-13T07:43:47.076961+0000 mgr.smithi039.fbdzkl (mgr.14184) 208 : cluster [DBG] pgmap v176: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:48.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:48 smithi100 bash[20091]: cluster 2024-01-13T07:43:47.076961+0000 mgr.smithi039.fbdzkl (mgr.14184) 208 : cluster [DBG] pgmap v176: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:50.256 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:43:50.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:50 smithi039 bash[16208]: cluster 2024-01-13T07:43:49.077875+0000 mgr.smithi039.fbdzkl (mgr.14184) 209 : cluster [DBG] pgmap v177: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:50.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:50 smithi100 bash[20091]: cluster 2024-01-13T07:43:49.077875+0000 mgr.smithi039.fbdzkl (mgr.14184) 209 : cluster [DBG] pgmap v177: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:50.916 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":25,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:43:51.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:51 smithi039 bash[16208]: audit 2024-01-13T07:43:50.255826+0000 mon.smithi039 (mon.0) 435 : audit [DBG] from='client.? 172.21.15.39:0/4268194470' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:51.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:51 smithi100 bash[20091]: audit 2024-01-13T07:43:50.255826+0000 mon.smithi039 (mon.0) 435 : audit [DBG] from='client.? 172.21.15.39:0/4268194470' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:51.918 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:43:52.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:52 smithi039 bash[16208]: cluster 2024-01-13T07:43:51.078941+0000 mgr.smithi039.fbdzkl (mgr.14184) 210 : cluster [DBG] pgmap v178: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:52.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:52 smithi100 bash[20091]: cluster 2024-01-13T07:43:51.078941+0000 mgr.smithi039.fbdzkl (mgr.14184) 210 : cluster [DBG] pgmap v178: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:53.195 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:53 smithi039 bash[16208]: audit 2024-01-13T07:43:53.054224+0000 mon.smithi039 (mon.0) 436 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:43:53.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:53 smithi100 bash[20091]: audit 2024-01-13T07:43:53.054224+0000 mon.smithi039 (mon.0) 436 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:43:54.456 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:54 smithi039 bash[16208]: cluster 2024-01-13T07:43:53.080010+0000 mgr.smithi039.fbdzkl (mgr.14184) 211 : cluster [DBG] pgmap v179: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:54.456 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:54 smithi039 bash[16208]: audit 2024-01-13T07:43:53.379815+0000 mon.smithi039 (mon.0) 437 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:43:54.456 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:54 smithi039 bash[16208]: audit 2024-01-13T07:43:53.381253+0000 mon.smithi039 (mon.0) 438 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-13T07:43:54.456 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:54 smithi039 bash[16208]: audit 2024-01-13T07:43:53.389697+0000 mon.smithi039 (mon.0) 439 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:43:54.456 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:54 smithi039 bash[16208]: cluster 2024-01-13T07:43:53.390411+0000 mgr.smithi039.fbdzkl (mgr.14184) 212 : cluster [DBG] pgmap v180: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:54.457 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:54 smithi039 bash[16208]: audit 2024-01-13T07:43:53.398366+0000 mon.smithi039 (mon.0) 440 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-13T07:43:54.457 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:54 smithi039 bash[16208]: audit 2024-01-13T07:43:53.405678+0000 mon.smithi039 (mon.0) 441 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:43:54.457 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:54 smithi039 bash[16208]: audit 2024-01-13T07:43:53.406736+0000 mon.smithi039 (mon.0) 442 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:43:54.457 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:54 smithi039 bash[16208]: audit 2024-01-13T07:43:53.407178+0000 mon.smithi039 (mon.0) 443 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:43:54.457 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:54 smithi039 bash[16208]: audit 2024-01-13T07:43:53.408039+0000 mon.smithi039 (mon.0) 444 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:43:54.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:54 smithi100 bash[20091]: cluster 2024-01-13T07:43:53.080010+0000 mgr.smithi039.fbdzkl (mgr.14184) 211 : cluster [DBG] pgmap v179: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:54.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:54 smithi100 bash[20091]: audit 2024-01-13T07:43:53.379815+0000 mon.smithi039 (mon.0) 437 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:43:54.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:54 smithi100 bash[20091]: audit 2024-01-13T07:43:53.381253+0000 mon.smithi039 (mon.0) 438 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-13T07:43:54.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:54 smithi100 bash[20091]: audit 2024-01-13T07:43:53.389697+0000 mon.smithi039 (mon.0) 439 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:43:54.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:54 smithi100 bash[20091]: cluster 2024-01-13T07:43:53.390411+0000 mgr.smithi039.fbdzkl (mgr.14184) 212 : cluster [DBG] pgmap v180: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:54.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:54 smithi100 bash[20091]: audit 2024-01-13T07:43:53.398366+0000 mon.smithi039 (mon.0) 440 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-13T07:43:54.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:54 smithi100 bash[20091]: audit 2024-01-13T07:43:53.405678+0000 mon.smithi039 (mon.0) 441 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:43:54.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:54 smithi100 bash[20091]: audit 2024-01-13T07:43:53.406736+0000 mon.smithi039 (mon.0) 442 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:43:54.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:54 smithi100 bash[20091]: audit 2024-01-13T07:43:53.407178+0000 mon.smithi039 (mon.0) 443 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:43:54.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:54 smithi100 bash[20091]: audit 2024-01-13T07:43:53.408039+0000 mon.smithi039 (mon.0) 444 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:43:54.795 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:43:55.362 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":25,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:43:55.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:55 smithi039 bash[16208]: cluster 2024-01-13T07:43:54.386440+0000 mon.smithi039 (mon.0) 445 : cluster [INF] Health check cleared: CEPHADM_APPLY_SPEC_FAIL (was: Failed to apply 1 service(s): osd.all-available-devices) 2024-01-13T07:43:55.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:55 smithi039 bash[16208]: cluster 2024-01-13T07:43:54.386497+0000 mon.smithi039 (mon.0) 446 : cluster [INF] Cluster is now healthy 2024-01-13T07:43:55.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:55 smithi039 bash[16208]: audit 2024-01-13T07:43:54.794611+0000 mon.smithi039 (mon.0) 447 : audit [DBG] from='client.? 172.21.15.39:0/2560805564' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:55.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:55 smithi100 bash[20091]: cluster 2024-01-13T07:43:54.386440+0000 mon.smithi039 (mon.0) 445 : cluster [INF] Health check cleared: CEPHADM_APPLY_SPEC_FAIL (was: Failed to apply 1 service(s): osd.all-available-devices) 2024-01-13T07:43:55.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:55 smithi100 bash[20091]: cluster 2024-01-13T07:43:54.386497+0000 mon.smithi039 (mon.0) 446 : cluster [INF] Cluster is now healthy 2024-01-13T07:43:55.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:55 smithi100 bash[20091]: audit 2024-01-13T07:43:54.794611+0000 mon.smithi039 (mon.0) 447 : audit [DBG] from='client.? 172.21.15.39:0/2560805564' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:56.363 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:43:56.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:56 smithi039 bash[16208]: cluster 2024-01-13T07:43:55.390806+0000 mgr.smithi039.fbdzkl (mgr.14184) 213 : cluster [DBG] pgmap v181: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:56.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:56 smithi100 bash[20091]: cluster 2024-01-13T07:43:55.390806+0000 mgr.smithi039.fbdzkl (mgr.14184) 213 : cluster [DBG] pgmap v181: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:58.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:58 smithi100 bash[20091]: cluster 2024-01-13T07:43:57.391211+0000 mgr.smithi039.fbdzkl (mgr.14184) 214 : cluster [DBG] pgmap v182: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:58.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:58 smithi039 bash[16208]: cluster 2024-01-13T07:43:57.391211+0000 mgr.smithi039.fbdzkl (mgr.14184) 214 : cluster [DBG] pgmap v182: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:43:59.414 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:43:59.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:43:59 smithi100 bash[20091]: audit 2024-01-13T07:43:59.413817+0000 mon.smithi039 (mon.0) 448 : audit [DBG] from='client.? 172.21.15.39:0/541554779' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:43:59.689 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:43:59 smithi039 bash[16208]: audit 2024-01-13T07:43:59.413817+0000 mon.smithi039 (mon.0) 448 : audit [DBG] from='client.? 172.21.15.39:0/541554779' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:44:00.209 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":25,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:44:00.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:00 smithi039 bash[16208]: cluster 2024-01-13T07:43:59.391670+0000 mgr.smithi039.fbdzkl (mgr.14184) 215 : cluster [DBG] pgmap v183: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:00.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:00 smithi039 bash[16208]: audit 2024-01-13T07:44:00.365044+0000 mon.smithi039 (mon.0) 449 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:44:00.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:00 smithi100 bash[20091]: cluster 2024-01-13T07:43:59.391670+0000 mgr.smithi039.fbdzkl (mgr.14184) 215 : cluster [DBG] pgmap v183: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:00.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:00 smithi100 bash[20091]: audit 2024-01-13T07:44:00.365044+0000 mon.smithi039 (mon.0) 449 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:44:01.209 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:44:02.641 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:02 smithi039 bash[16208]: cluster 2024-01-13T07:44:01.392069+0000 mgr.smithi039.fbdzkl (mgr.14184) 216 : cluster [DBG] pgmap v184: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:02.641 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:02 smithi039 bash[16208]: audit 2024-01-13T07:44:02.074066+0000 mon.smithi039 (mon.0) 450 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c5a3832d-df4e-472c-b0ed-2d0698ef371f"}]: dispatch 2024-01-13T07:44:02.641 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:02 smithi039 bash[16208]: audit 2024-01-13T07:44:02.074118+0000 mon.smithi100 (mon.1) 12 : audit [INF] from='client.? 172.21.15.100:0/1279906517' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c5a3832d-df4e-472c-b0ed-2d0698ef371f"}]: dispatch 2024-01-13T07:44:02.641 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:02 smithi039 bash[16208]: audit 2024-01-13T07:44:02.087944+0000 mon.smithi039 (mon.0) 451 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c5a3832d-df4e-472c-b0ed-2d0698ef371f"}]': finished 2024-01-13T07:44:02.641 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:02 smithi039 bash[16208]: cluster 2024-01-13T07:44:02.088090+0000 mon.smithi039 (mon.0) 452 : cluster [DBG] osdmap e26: 1 total, 0 up, 1 in 2024-01-13T07:44:02.641 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:02 smithi039 bash[16208]: audit 2024-01-13T07:44:02.088278+0000 mon.smithi039 (mon.0) 453 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:44:02.641 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:02 smithi039 bash[16208]: audit 2024-01-13T07:44:02.435913+0000 mon.smithi039 (mon.0) 454 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:44:02.641 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:02 smithi039 bash[16208]: audit 2024-01-13T07:44:02.436492+0000 mon.smithi100 (mon.1) 13 : audit [INF] from='client.? 172.21.15.100:0/2679965846' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:44:02.641 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:02 smithi039 bash[16208]: audit 2024-01-13T07:44:02.447174+0000 mon.smithi039 (mon.0) 455 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:44:02.641 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:02 smithi039 bash[16208]: cluster 2024-01-13T07:44:02.447291+0000 mon.smithi039 (mon.0) 456 : cluster [DBG] osdmap e27: 0 total, 0 up, 0 in 2024-01-13T07:44:02.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:02 smithi100 bash[20091]: cluster 2024-01-13T07:44:01.392069+0000 mgr.smithi039.fbdzkl (mgr.14184) 216 : cluster [DBG] pgmap v184: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:02.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:02 smithi100 bash[20091]: audit 2024-01-13T07:44:02.074066+0000 mon.smithi039 (mon.0) 450 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c5a3832d-df4e-472c-b0ed-2d0698ef371f"}]: dispatch 2024-01-13T07:44:02.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:02 smithi100 bash[20091]: audit 2024-01-13T07:44:02.074118+0000 mon.smithi100 (mon.1) 12 : audit [INF] from='client.? 172.21.15.100:0/1279906517' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c5a3832d-df4e-472c-b0ed-2d0698ef371f"}]: dispatch 2024-01-13T07:44:02.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:02 smithi100 bash[20091]: audit 2024-01-13T07:44:02.087944+0000 mon.smithi039 (mon.0) 451 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c5a3832d-df4e-472c-b0ed-2d0698ef371f"}]': finished 2024-01-13T07:44:02.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:02 smithi100 bash[20091]: cluster 2024-01-13T07:44:02.088090+0000 mon.smithi039 (mon.0) 452 : cluster [DBG] osdmap e26: 1 total, 0 up, 1 in 2024-01-13T07:44:02.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:02 smithi100 bash[20091]: audit 2024-01-13T07:44:02.088278+0000 mon.smithi039 (mon.0) 453 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:44:02.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:02 smithi100 bash[20091]: audit 2024-01-13T07:44:02.435913+0000 mon.smithi039 (mon.0) 454 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:44:02.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:02 smithi100 bash[20091]: audit 2024-01-13T07:44:02.436492+0000 mon.smithi100 (mon.1) 13 : audit [INF] from='client.? 172.21.15.100:0/2679965846' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:44:02.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:02 smithi100 bash[20091]: audit 2024-01-13T07:44:02.447174+0000 mon.smithi039 (mon.0) 455 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:44:02.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:02 smithi100 bash[20091]: cluster 2024-01-13T07:44:02.447291+0000 mon.smithi039 (mon.0) 456 : cluster [DBG] osdmap e27: 0 total, 0 up, 0 in 2024-01-13T07:44:03.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:03 smithi039 bash[16208]: audit 2024-01-13T07:44:02.628091+0000 mon.smithi039 (mon.0) 457 : audit [INF] from='client.? 172.21.15.39:0/872150019' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f6221623-bb28-4bc5-80e4-7b6a9b0697a0"}]: dispatch 2024-01-13T07:44:03.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:03 smithi039 bash[16208]: audit 2024-01-13T07:44:02.638007+0000 mon.smithi039 (mon.0) 458 : audit [INF] from='client.? 172.21.15.39:0/872150019' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f6221623-bb28-4bc5-80e4-7b6a9b0697a0"}]': finished 2024-01-13T07:44:03.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:03 smithi039 bash[16208]: cluster 2024-01-13T07:44:02.638092+0000 mon.smithi039 (mon.0) 459 : cluster [DBG] osdmap e28: 1 total, 0 up, 1 in 2024-01-13T07:44:03.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:03 smithi039 bash[16208]: audit 2024-01-13T07:44:02.638339+0000 mon.smithi039 (mon.0) 460 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:44:03.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:03 smithi039 bash[16208]: audit 2024-01-13T07:44:02.985063+0000 mon.smithi039 (mon.0) 461 : audit [INF] from='client.? 172.21.15.39:0/300558411' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:44:03.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:03 smithi039 bash[16208]: audit 2024-01-13T07:44:03.000324+0000 mon.smithi039 (mon.0) 462 : audit [INF] from='client.? 172.21.15.39:0/300558411' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:44:03.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:03 smithi039 bash[16208]: cluster 2024-01-13T07:44:03.000393+0000 mon.smithi039 (mon.0) 463 : cluster [DBG] osdmap e29: 0 total, 0 up, 0 in 2024-01-13T07:44:03.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:03 smithi100 bash[20091]: audit 2024-01-13T07:44:02.628091+0000 mon.smithi039 (mon.0) 457 : audit [INF] from='client.? 172.21.15.39:0/872150019' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f6221623-bb28-4bc5-80e4-7b6a9b0697a0"}]: dispatch 2024-01-13T07:44:03.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:03 smithi100 bash[20091]: audit 2024-01-13T07:44:02.638007+0000 mon.smithi039 (mon.0) 458 : audit [INF] from='client.? 172.21.15.39:0/872150019' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f6221623-bb28-4bc5-80e4-7b6a9b0697a0"}]': finished 2024-01-13T07:44:03.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:03 smithi100 bash[20091]: cluster 2024-01-13T07:44:02.638092+0000 mon.smithi039 (mon.0) 459 : cluster [DBG] osdmap e28: 1 total, 0 up, 1 in 2024-01-13T07:44:03.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:03 smithi100 bash[20091]: audit 2024-01-13T07:44:02.638339+0000 mon.smithi039 (mon.0) 460 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:44:03.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:03 smithi100 bash[20091]: audit 2024-01-13T07:44:02.985063+0000 mon.smithi039 (mon.0) 461 : audit [INF] from='client.? 172.21.15.39:0/300558411' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:44:03.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:03 smithi100 bash[20091]: audit 2024-01-13T07:44:03.000324+0000 mon.smithi039 (mon.0) 462 : audit [INF] from='client.? 172.21.15.39:0/300558411' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:44:03.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:03 smithi100 bash[20091]: cluster 2024-01-13T07:44:03.000393+0000 mon.smithi039 (mon.0) 463 : cluster [DBG] osdmap e29: 0 total, 0 up, 0 in 2024-01-13T07:44:04.668 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:44:04.726 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: cephadm 2024-01-13T07:44:03.157299+0000 mgr.smithi039.fbdzkl (mgr.14184) 217 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:44:04.726 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:44:04.726 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:44:04.726 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:44:04.726 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:44:04.726 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:44:04.727 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:44:04.727 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:44:04.727 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:44:04.727 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp71ka976c:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpoznxmxdu:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:44:04.727 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:44:04.727 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:44:04.727 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:44:04.727 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new c5a3832d-df4e-472c-b0ed-2d0698ef371f 2024-01-13T07:44:04.727 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:44:04.727 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:44:04.727 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:44:04.727 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:44:04.727 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:44:04.727 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:44:04.727 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:04.728 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:04.728 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:44:04.728 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:44:04.728 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:44:04.728 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:44:04.728 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:44:04.728 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:44:04.728 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:44:04.728 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:44:04.728 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:44:04.728 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:44:04.728 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:44:04.728 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:44:04.728 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:44:04.728 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:44:04.729 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:44:04.729 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:44:04.729 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:44:04.729 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:44:04.729 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:44:04.729 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:44:04.729 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:44:04.729 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:44:04.729 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:44:04.729 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:44:04.729 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:44:04.729 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:04.729 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:04.729 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:44:04.729 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:44:04.730 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:44:04.730 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:44:04.730 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:04.730 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:04.730 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:44:04.730 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:44:04.730 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:44:04.730 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:44:04.730 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:44:04.730 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:44:04.730 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:44:04.730 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:44:04.730 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:04.730 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:04.731 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:44:04.731 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:44:04.731 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:44:04.731 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:44:04.731 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:44:04.731 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:44:04.731 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:44:04.731 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: main() 2024-01-13T07:44:04.731 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:44:04.731 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:44:04.731 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:44:04.731 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:44:04.731 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:44:04.731 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:44:04.732 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:44:04.732 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:44:04.732 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:44:04.732 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:44:04.732 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:44:04.732 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:44:04.732 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:44:04.732 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:44:04.732 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp71ka976c:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpoznxmxdu:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:44:04.732 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:04 smithi039 bash[16208]: cluster 2024-01-13T07:44:03.392484+0000 mgr.smithi039.fbdzkl (mgr.14184) 218 : cluster [DBG] pgmap v189: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:04.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: cephadm 2024-01-13T07:44:03.157299+0000 mgr.smithi039.fbdzkl (mgr.14184) 217 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:44:04.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:44:04.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:44:04.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:44:04.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:44:04.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:44:04.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:44:04.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:44:04.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:44:04.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp71ka976c:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpoznxmxdu:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:44:04.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:44:04.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:44:04.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:44:04.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new c5a3832d-df4e-472c-b0ed-2d0698ef371f 2024-01-13T07:44:04.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:44:04.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:44:04.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:44:04.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:44:04.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:44:04.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:44:04.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:04.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:04.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:44:04.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:44:04.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:44:04.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:44:04.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:44:04.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:44:04.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:44:04.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:44:04.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:44:04.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:44:04.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:44:04.746 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:44:04.747 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:44:04.747 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:44:04.747 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:44:04.747 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:44:04.747 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:44:04.747 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:44:04.747 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:44:04.747 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:44:04.747 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:44:04.747 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:44:04.747 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:44:04.747 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:44:04.747 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:44:04.747 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:04.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:04.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:44:04.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:44:04.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:44:04.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:44:04.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:04.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:04.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:44:04.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:44:04.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:44:04.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:44:04.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:44:04.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:44:04.748 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:44:04.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:44:04.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:04.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:04.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:44:04.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:44:04.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:44:04.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:44:04.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:44:04.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:44:04.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:44:04.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: main() 2024-01-13T07:44:04.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:44:04.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:44:04.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:44:04.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:44:04.749 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:44:04.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:44:04.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:44:04.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:44:04.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:44:04.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:44:04.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:44:04.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:44:04.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:44:04.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:44:04.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp71ka976c:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpoznxmxdu:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:44:04.750 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:04 smithi100 bash[20091]: cluster 2024-01-13T07:44:03.392484+0000 mgr.smithi039.fbdzkl (mgr.14184) 218 : cluster [DBG] pgmap v189: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:05.298 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":29,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:44:05.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: cephadm 2024-01-13T07:44:04.084243+0000 mgr.smithi039.fbdzkl (mgr.14184) 219 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:44:05.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:44:05.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:44:05.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:44:05.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:44:05.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:44:05.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:44:05.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:44:05.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi039/config 2024-01-13T07:44:05.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpp1ibkaf4:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpm5wifxc4:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:44:05.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:44:05.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:44:05.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:44:05.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new f6221623-bb28-4bc5-80e4-7b6a9b0697a0 2024-01-13T07:44:05.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:44:05.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:44:05.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:44:05.745 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:44:05.745 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:44:05.745 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:44:05.745 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:05.745 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:05.746 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:44:05.746 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:44:05.746 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:44:05.746 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:44:05.746 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:44:05.746 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:44:05.746 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:44:05.746 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:44:05.746 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:44:05.746 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:44:05.746 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:44:05.746 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:44:05.746 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:44:05.746 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:44:05.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:44:05.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:44:05.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:44:05.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:44:05.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:44:05.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:44:05.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:44:05.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:44:05.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:44:05.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:44:05.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:44:05.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:05.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:05.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:44:05.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:44:05.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:44:05.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:44:05.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:05.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:05.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:44:05.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:44:05.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:44:05.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:44:05.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:44:05.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:44:05.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:44:05.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:44:05.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:05.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:05.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:44:05.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:44:05.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:44:05.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:44:05.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:44:05.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:44:05.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:44:05.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: main() 2024-01-13T07:44:05.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:44:05.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:44:05.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:44:05.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:44:05.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:44:05.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:44:05.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:44:05.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:44:05.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:44:05.750 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:44:05.750 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:44:05.750 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:44:05.750 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:44:05.750 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:44:05.750 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpp1ibkaf4:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpm5wifxc4:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:44:05.750 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: cephadm 2024-01-13T07:44:04.089833+0000 mgr.smithi039.fbdzkl (mgr.14184) 220 : cephadm [ERR] Failed to apply osd.all-available-devices spec DriveGroupSpec.from_json(yaml.safe_load('''service_type: osd 2024-01-13T07:44:05.750 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: service_id: all-available-devices 2024-01-13T07:44:05.750 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: service_name: osd.all-available-devices 2024-01-13T07:44:05.750 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: placement: 2024-01-13T07:44:05.750 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: host_pattern: '*' 2024-01-13T07:44:05.750 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: spec: 2024-01-13T07:44:05.750 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: data_devices: 2024-01-13T07:44:05.750 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: all: true 2024-01-13T07:44:05.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: filter_logic: AND 2024-01-13T07:44:05.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: objectstore: bluestore 2024-01-13T07:44:05.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: ''')): cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:44:05.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp71ka976c:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpoznxmxdu:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:44:05.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:44:05.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:44:05.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:44:05.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new c5a3832d-df4e-472c-b0ed-2d0698ef371f 2024-01-13T07:44:05.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:44:05.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:44:05.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:44:05.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:44:05.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:44:05.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:44:05.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:05.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:05.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:44:05.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:44:05.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:44:05.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:44:05.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:44:05.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:44:05.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:44:05.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:44:05.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:44:05.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:44:05.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:44:05.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:44:05.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:44:05.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:44:05.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:44:05.753 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:44:05.753 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:44:05.753 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:44:05.753 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:44:05.753 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:44:05.753 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:44:05.753 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:44:05.753 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:44:05.753 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:44:05.753 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:44:05.753 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:05.753 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:05.754 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:44:05.754 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:44:05.754 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:44:05.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:44:05.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:05.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:05.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:44:05.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:44:05.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:44:05.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:44:05.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:44:05.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:44:05.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:44:05.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:44:05.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:05.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:05.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:44:05.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:44:05.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:44:05.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:44:05.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:44:05.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:44:05.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:44:05.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: main() 2024-01-13T07:44:05.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:44:05.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:44:05.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:44:05.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:44:05.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:44:05.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:44:05.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:44:05.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:44:05.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:44:05.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:44:05.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:44:05.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:44:05.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:44:05.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:44:05.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp71ka976c:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpoznxmxdu:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:44:05.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:44:05.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 521, in _apply_all_services 2024-01-13T07:44:05.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: if self._apply_service(spec): 2024-01-13T07:44:05.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 595, in _apply_service 2024-01-13T07:44:05.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: self.mgr.osd_service.create_from_spec(cast(DriveGroupSpec, spec)) 2024-01-13T07:44:05.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 73, in create_from_spec 2024-01-13T07:44:05.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: ret = create_from_spec_one(self.prepare_drivegroup(drive_group)) 2024-01-13T07:44:05.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 83, in forall_hosts_wrapper 2024-01-13T07:44:05.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: return CephadmOrchestrator.instance._worker_pool.map(do_work, vals) 2024-01-13T07:44:05.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 266, in map 2024-01-13T07:44:05.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: return self._map_async(func, iterable, mapstar, chunksize).get() 2024-01-13T07:44:05.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 644, in get 2024-01-13T07:44:05.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: raise self._value 2024-01-13T07:44:05.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 119, in worker 2024-01-13T07:44:05.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: result = (True, func(*args, **kwds)) 2024-01-13T07:44:05.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 44, in mapstar 2024-01-13T07:44:05.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: return list(map(*args)) 2024-01-13T07:44:05.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:44:05.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:44:05.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:44:05.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:44:05.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:44:05.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:44:05.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:44:05.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp71ka976c:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpoznxmxdu:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:44:05.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:44:05.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:44:05.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:44:05.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new c5a3832d-df4e-472c-b0ed-2d0698ef371f 2024-01-13T07:44:05.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:44:05.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:44:05.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:44:05.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:44:05.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:44:05.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:44:05.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:05.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:05.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:44:05.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:44:05.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:44:05.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:44:05.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:44:05.760 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:44:05.760 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:44:05.760 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:44:05.760 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:44:05.760 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:44:05.760 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:44:05.760 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:44:05.760 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:44:05.760 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:44:05.760 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:44:05.760 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:44:05.760 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:44:05.760 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:44:05.760 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:44:05.760 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:44:05.761 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:44:05.761 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:44:05.761 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:44:05.761 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:44:05.761 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:44:05.761 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:05.761 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:05.761 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:44:05.761 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:44:05.761 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:44:05.761 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:44:05.761 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:05.761 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:05.761 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:44:05.761 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:44:05.761 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:44:05.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:44:05.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:44:05.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:44:05.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:44:05.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:44:05.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:05.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:05.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:44:05.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:44:05.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:44:05.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:44:05.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:44:05.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:44:05.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:44:05.763 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: main() 2024-01-13T07:44:05.763 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:44:05.763 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:44:05.763 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:44:05.763 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:44:05.763 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:44:05.763 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:44:05.763 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:44:05.763 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:44:05.763 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:44:05.763 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:44:05.763 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:44:05.763 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:44:05.763 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:44:05.764 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:44:05.764 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp71ka976c:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpoznxmxdu:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:44:05.764 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: cluster 2024-01-13T07:44:04.090834+0000 mgr.smithi039.fbdzkl (mgr.14184) 221 : cluster [DBG] pgmap v190: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:05.764 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: audit 2024-01-13T07:44:04.668486+0000 mon.smithi039 (mon.0) 464 : audit [DBG] from='client.? 172.21.15.39:0/1538460643' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:44:05.764 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:05 smithi039 bash[16208]: cluster 2024-01-13T07:44:04.999041+0000 mon.smithi039 (mon.0) 465 : cluster [WRN] Health check failed: Failed to apply 1 service(s): osd.all-available-devices (CEPHADM_APPLY_SPEC_FAIL) 2024-01-13T07:44:05.996 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: cephadm 2024-01-13T07:44:04.084243+0000 mgr.smithi039.fbdzkl (mgr.14184) 219 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:44:05.996 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:44:05.996 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:44:05.996 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:44:05.996 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:44:05.996 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:44:05.996 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:44:05.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:44:05.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi039/config 2024-01-13T07:44:05.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpp1ibkaf4:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpm5wifxc4:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:44:05.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:44:05.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:44:05.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:44:05.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new f6221623-bb28-4bc5-80e4-7b6a9b0697a0 2024-01-13T07:44:05.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:44:05.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:44:05.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:44:05.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:44:05.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:44:05.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:44:05.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:05.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:05.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:44:05.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:44:05.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:44:05.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:44:05.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:44:05.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:44:05.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:44:05.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:44:05.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:44:05.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:44:05.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:44:05.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:44:05.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:44:05.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:44:05.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:44:05.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:44:05.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:44:05.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:44:05.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:44:05.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:44:05.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:44:05.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:44:05.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:44:05.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:44:05.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:44:05.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:05.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:05.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:44:06.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:44:06.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:44:06.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:44:06.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:06.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:06.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:44:06.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:44:06.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:44:06.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:44:06.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:44:06.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:44:06.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:44:06.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:44:06.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:06.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:06.001 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:44:06.001 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:44:06.001 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:44:06.001 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:44:06.001 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:44:06.001 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:44:06.001 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:44:06.001 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: main() 2024-01-13T07:44:06.001 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:44:06.001 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:44:06.001 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:44:06.001 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:44:06.001 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:44:06.001 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:44:06.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:44:06.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:44:06.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:44:06.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:44:06.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:44:06.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:44:06.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:44:06.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:44:06.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpp1ibkaf4:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpm5wifxc4:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:44:06.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: cephadm 2024-01-13T07:44:04.089833+0000 mgr.smithi039.fbdzkl (mgr.14184) 220 : cephadm [ERR] Failed to apply osd.all-available-devices spec DriveGroupSpec.from_json(yaml.safe_load('''service_type: osd 2024-01-13T07:44:06.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: service_id: all-available-devices 2024-01-13T07:44:06.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: service_name: osd.all-available-devices 2024-01-13T07:44:06.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: placement: 2024-01-13T07:44:06.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: host_pattern: '*' 2024-01-13T07:44:06.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: spec: 2024-01-13T07:44:06.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: data_devices: 2024-01-13T07:44:06.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: all: true 2024-01-13T07:44:06.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: filter_logic: AND 2024-01-13T07:44:06.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: objectstore: bluestore 2024-01-13T07:44:06.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: ''')): cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:44:06.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp71ka976c:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpoznxmxdu:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:44:06.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:44:06.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:44:06.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:44:06.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new c5a3832d-df4e-472c-b0ed-2d0698ef371f 2024-01-13T07:44:06.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:44:06.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:44:06.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:44:06.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:44:06.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:44:06.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:44:06.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:06.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:06.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:44:06.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:44:06.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:44:06.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:44:06.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:44:06.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:44:06.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:44:06.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:44:06.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:44:06.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:44:06.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:44:06.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:44:06.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:44:06.005 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:44:06.005 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:44:06.005 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:44:06.005 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:44:06.005 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:44:06.005 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:44:06.005 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:44:06.005 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:44:06.005 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:44:06.005 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:44:06.005 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:44:06.006 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:44:06.006 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:06.006 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:06.006 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:44:06.006 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:44:06.006 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:44:06.006 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:44:06.006 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:06.006 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:06.006 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:44:06.006 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:44:06.006 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:44:06.006 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:44:06.006 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:44:06.006 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:44:06.006 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:44:06.007 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:44:06.007 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:06.007 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:06.007 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:44:06.007 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:44:06.007 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:44:06.007 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:44:06.007 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:44:06.007 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:44:06.007 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:44:06.008 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: main() 2024-01-13T07:44:06.008 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:44:06.008 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:44:06.008 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:44:06.008 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:44:06.008 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:44:06.008 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:44:06.008 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:44:06.008 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:44:06.008 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:44:06.008 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:44:06.008 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:44:06.008 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:44:06.008 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:44:06.008 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:44:06.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp71ka976c:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpoznxmxdu:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:44:06.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:44:06.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 521, in _apply_all_services 2024-01-13T07:44:06.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: if self._apply_service(spec): 2024-01-13T07:44:06.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 595, in _apply_service 2024-01-13T07:44:06.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: self.mgr.osd_service.create_from_spec(cast(DriveGroupSpec, spec)) 2024-01-13T07:44:06.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 73, in create_from_spec 2024-01-13T07:44:06.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: ret = create_from_spec_one(self.prepare_drivegroup(drive_group)) 2024-01-13T07:44:06.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 83, in forall_hosts_wrapper 2024-01-13T07:44:06.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: return CephadmOrchestrator.instance._worker_pool.map(do_work, vals) 2024-01-13T07:44:06.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 266, in map 2024-01-13T07:44:06.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: return self._map_async(func, iterable, mapstar, chunksize).get() 2024-01-13T07:44:06.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 644, in get 2024-01-13T07:44:06.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: raise self._value 2024-01-13T07:44:06.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 119, in worker 2024-01-13T07:44:06.010 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: result = (True, func(*args, **kwds)) 2024-01-13T07:44:06.010 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 44, in mapstar 2024-01-13T07:44:06.010 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: return list(map(*args)) 2024-01-13T07:44:06.010 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:44:06.010 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:44:06.011 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:44:06.011 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:44:06.011 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:44:06.011 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:44:06.011 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:44:06.011 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp71ka976c:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpoznxmxdu:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:44:06.011 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:44:06.011 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:44:06.011 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:44:06.012 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new c5a3832d-df4e-472c-b0ed-2d0698ef371f 2024-01-13T07:44:06.012 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:44:06.012 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:44:06.012 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:44:06.013 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:44:06.013 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:44:06.013 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:44:06.013 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:06.013 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:06.013 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:44:06.014 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:44:06.014 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:44:06.014 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:44:06.014 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:44:06.014 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:44:06.015 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:44:06.015 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:44:06.015 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:44:06.015 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:44:06.016 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:44:06.016 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:44:06.016 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:44:06.016 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:44:06.016 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:44:06.016 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:44:06.016 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:44:06.016 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:44:06.016 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:44:06.016 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:44:06.016 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:44:06.017 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:44:06.017 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:44:06.017 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:44:06.017 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:44:06.017 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:06.017 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:06.017 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:44:06.017 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:44:06.017 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:44:06.017 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:44:06.017 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:06.017 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:06.017 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:44:06.018 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:44:06.018 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:44:06.018 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:44:06.018 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:44:06.018 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:44:06.018 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:44:06.018 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:44:06.018 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:44:06.018 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:44:06.018 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:44:06.018 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:44:06.018 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:44:06.018 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:44:06.019 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:44:06.019 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:44:06.019 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:44:06.019 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: main() 2024-01-13T07:44:06.019 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:44:06.019 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:44:06.019 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:44:06.019 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:44:06.019 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:44:06.019 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:44:06.019 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:44:06.019 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:44:06.019 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:44:06.019 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:44:06.019 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:44:06.020 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:44:06.020 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:44:06.020 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:44:06.020 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp71ka976c:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpoznxmxdu:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:44:06.020 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: cluster 2024-01-13T07:44:04.090834+0000 mgr.smithi039.fbdzkl (mgr.14184) 221 : cluster [DBG] pgmap v190: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:06.020 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: audit 2024-01-13T07:44:04.668486+0000 mon.smithi039 (mon.0) 464 : audit [DBG] from='client.? 172.21.15.39:0/1538460643' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:44:06.020 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:05 smithi100 bash[20091]: cluster 2024-01-13T07:44:04.999041+0000 mon.smithi039 (mon.0) 465 : cluster [WRN] Health check failed: Failed to apply 1 service(s): osd.all-available-devices (CEPHADM_APPLY_SPEC_FAIL) 2024-01-13T07:44:06.300 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:44:07.537 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:07 smithi039 bash[16208]: cluster 2024-01-13T07:44:06.091902+0000 mgr.smithi039.fbdzkl (mgr.14184) 222 : cluster [DBG] pgmap v191: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:07.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:07 smithi100 bash[20091]: cluster 2024-01-13T07:44:06.091902+0000 mgr.smithi039.fbdzkl (mgr.14184) 222 : cluster [DBG] pgmap v191: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:09.293 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:44:09.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:09 smithi039 bash[16208]: cluster 2024-01-13T07:44:08.092941+0000 mgr.smithi039.fbdzkl (mgr.14184) 223 : cluster [DBG] pgmap v192: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:09.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:09 smithi039 bash[16208]: audit 2024-01-13T07:44:09.292589+0000 mon.smithi039 (mon.0) 466 : audit [DBG] from='client.? 172.21.15.39:0/53802010' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:44:09.887 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":29,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:44:09.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:09 smithi100 bash[20091]: cluster 2024-01-13T07:44:08.092941+0000 mgr.smithi039.fbdzkl (mgr.14184) 223 : cluster [DBG] pgmap v192: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:09.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:09 smithi100 bash[20091]: audit 2024-01-13T07:44:09.292589+0000 mon.smithi039 (mon.0) 466 : audit [DBG] from='client.? 172.21.15.39:0/53802010' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:44:10.888 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:44:11.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:10 smithi039 bash[16208]: cluster 2024-01-13T07:44:10.093970+0000 mgr.smithi039.fbdzkl (mgr.14184) 224 : cluster [DBG] pgmap v193: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:11.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:10 smithi100 bash[20091]: cluster 2024-01-13T07:44:10.093970+0000 mgr.smithi039.fbdzkl (mgr.14184) 224 : cluster [DBG] pgmap v193: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:13.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:13 smithi039 bash[16208]: cluster 2024-01-13T07:44:12.094658+0000 mgr.smithi039.fbdzkl (mgr.14184) 225 : cluster [DBG] pgmap v194: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:13.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:13 smithi100 bash[20091]: cluster 2024-01-13T07:44:12.094658+0000 mgr.smithi039.fbdzkl (mgr.14184) 225 : cluster [DBG] pgmap v194: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:13.747 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:44:14.354 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":29,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:44:14.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:14 smithi039 bash[16208]: audit 2024-01-13T07:44:13.747026+0000 mon.smithi039 (mon.0) 467 : audit [DBG] from='client.? 172.21.15.39:0/2373026840' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:44:14.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:14 smithi100 bash[20091]: audit 2024-01-13T07:44:13.747026+0000 mon.smithi039 (mon.0) 467 : audit [DBG] from='client.? 172.21.15.39:0/2373026840' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:44:15.356 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:44:15.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:15 smithi039 bash[16208]: cluster 2024-01-13T07:44:14.095725+0000 mgr.smithi039.fbdzkl (mgr.14184) 226 : cluster [DBG] pgmap v195: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:15.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:15 smithi100 bash[20091]: cluster 2024-01-13T07:44:14.095725+0000 mgr.smithi039.fbdzkl (mgr.14184) 226 : cluster [DBG] pgmap v195: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:16.651 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:16 smithi039 bash[16208]: audit 2024-01-13T07:44:15.363958+0000 mon.smithi039 (mon.0) 468 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:44:16.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:16 smithi100 bash[20091]: audit 2024-01-13T07:44:15.363958+0000 mon.smithi039 (mon.0) 468 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:44:17.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:17 smithi039 bash[16208]: cluster 2024-01-13T07:44:16.096956+0000 mgr.smithi039.fbdzkl (mgr.14184) 227 : cluster [DBG] pgmap v196: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:17.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:17 smithi100 bash[20091]: cluster 2024-01-13T07:44:16.096956+0000 mgr.smithi039.fbdzkl (mgr.14184) 227 : cluster [DBG] pgmap v196: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:18.330 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:44:18.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:18 smithi039 bash[16208]: audit 2024-01-13T07:44:18.329139+0000 mon.smithi039 (mon.0) 469 : audit [DBG] from='client.? 172.21.15.39:0/3999513295' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:44:18.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:18 smithi100 bash[20091]: audit 2024-01-13T07:44:18.329139+0000 mon.smithi039 (mon.0) 469 : audit [DBG] from='client.? 172.21.15.39:0/3999513295' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:44:18.910 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":29,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:44:19.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:19 smithi039 bash[16208]: cluster 2024-01-13T07:44:18.098048+0000 mgr.smithi039.fbdzkl (mgr.14184) 228 : cluster [DBG] pgmap v197: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:19.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:19 smithi100 bash[20091]: cluster 2024-01-13T07:44:18.098048+0000 mgr.smithi039.fbdzkl (mgr.14184) 228 : cluster [DBG] pgmap v197: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:19.911 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:44:21.157 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:20 smithi039 bash[16208]: cluster 2024-01-13T07:44:20.099069+0000 mgr.smithi039.fbdzkl (mgr.14184) 229 : cluster [DBG] pgmap v198: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:21.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:20 smithi100 bash[20091]: cluster 2024-01-13T07:44:20.099069+0000 mgr.smithi039.fbdzkl (mgr.14184) 229 : cluster [DBG] pgmap v198: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:22.934 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:44:23.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:23 smithi039 bash[16208]: cluster 2024-01-13T07:44:22.100268+0000 mgr.smithi039.fbdzkl (mgr.14184) 230 : cluster [DBG] pgmap v199: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:23.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:23 smithi039 bash[16208]: audit 2024-01-13T07:44:22.933609+0000 mon.smithi039 (mon.0) 470 : audit [DBG] from='client.? 172.21.15.39:0/1200899179' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:44:23.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:23 smithi100 bash[20091]: cluster 2024-01-13T07:44:22.100268+0000 mgr.smithi039.fbdzkl (mgr.14184) 230 : cluster [DBG] pgmap v199: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:23.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:23 smithi100 bash[20091]: audit 2024-01-13T07:44:22.933609+0000 mon.smithi039 (mon.0) 470 : audit [DBG] from='client.? 172.21.15.39:0/1200899179' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:44:23.497 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":29,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:44:24.498 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:44:25.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:25 smithi039 bash[16208]: cluster 2024-01-13T07:44:24.101377+0000 mgr.smithi039.fbdzkl (mgr.14184) 231 : cluster [DBG] pgmap v200: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:25.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:25 smithi100 bash[20091]: cluster 2024-01-13T07:44:24.101377+0000 mgr.smithi039.fbdzkl (mgr.14184) 231 : cluster [DBG] pgmap v200: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:27.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:27 smithi039 bash[16208]: cluster 2024-01-13T07:44:26.102415+0000 mgr.smithi039.fbdzkl (mgr.14184) 232 : cluster [DBG] pgmap v201: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:27.387 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:44:27.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:27 smithi100 bash[20091]: cluster 2024-01-13T07:44:26.102415+0000 mgr.smithi039.fbdzkl (mgr.14184) 232 : cluster [DBG] pgmap v201: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:27.937 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":29,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:44:28.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:28 smithi039 bash[16208]: audit 2024-01-13T07:44:27.386933+0000 mon.smithi039 (mon.0) 471 : audit [DBG] from='client.? 172.21.15.39:0/450213180' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:44:28.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:28 smithi100 bash[20091]: audit 2024-01-13T07:44:27.386933+0000 mon.smithi039 (mon.0) 471 : audit [DBG] from='client.? 172.21.15.39:0/450213180' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:44:28.939 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:44:29.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:29 smithi039 bash[16208]: cluster 2024-01-13T07:44:28.103533+0000 mgr.smithi039.fbdzkl (mgr.14184) 233 : cluster [DBG] pgmap v202: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:29.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:29 smithi100 bash[20091]: cluster 2024-01-13T07:44:28.103533+0000 mgr.smithi039.fbdzkl (mgr.14184) 233 : cluster [DBG] pgmap v202: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:31.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:30 smithi039 bash[16208]: cluster 2024-01-13T07:44:30.104552+0000 mgr.smithi039.fbdzkl (mgr.14184) 234 : cluster [DBG] pgmap v203: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:31.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:30 smithi100 bash[20091]: cluster 2024-01-13T07:44:30.104552+0000 mgr.smithi039.fbdzkl (mgr.14184) 234 : cluster [DBG] pgmap v203: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:32.055 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:44:32.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:32 smithi039 bash[16208]: audit 2024-01-13T07:44:32.054912+0000 mon.smithi039 (mon.0) 472 : audit [DBG] from='client.? 172.21.15.39:0/4091868638' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:44:32.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:32 smithi100 bash[20091]: audit 2024-01-13T07:44:32.054912+0000 mon.smithi039 (mon.0) 472 : audit [DBG] from='client.? 172.21.15.39:0/4091868638' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:44:32.646 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":29,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:44:33.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:33 smithi039 bash[16208]: cluster 2024-01-13T07:44:32.105715+0000 mgr.smithi039.fbdzkl (mgr.14184) 235 : cluster [DBG] pgmap v204: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:33.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:33 smithi100 bash[20091]: cluster 2024-01-13T07:44:32.105715+0000 mgr.smithi039.fbdzkl (mgr.14184) 235 : cluster [DBG] pgmap v204: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:33.648 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:44:35.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:35 smithi039 bash[16208]: cluster 2024-01-13T07:44:34.106448+0000 mgr.smithi039.fbdzkl (mgr.14184) 236 : cluster [DBG] pgmap v205: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:35.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:35 smithi100 bash[20091]: cluster 2024-01-13T07:44:34.106448+0000 mgr.smithi039.fbdzkl (mgr.14184) 236 : cluster [DBG] pgmap v205: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:36.614 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:44:37.159 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":29,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:44:37.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:37 smithi039 bash[16208]: cluster 2024-01-13T07:44:36.107721+0000 mgr.smithi039.fbdzkl (mgr.14184) 237 : cluster [DBG] pgmap v206: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:37.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:37 smithi039 bash[16208]: audit 2024-01-13T07:44:36.613798+0000 mon.smithi039 (mon.0) 473 : audit [DBG] from='client.? 172.21.15.39:0/2175692547' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:44:37.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:37 smithi100 bash[20091]: cluster 2024-01-13T07:44:36.107721+0000 mgr.smithi039.fbdzkl (mgr.14184) 237 : cluster [DBG] pgmap v206: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:37.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:37 smithi100 bash[20091]: audit 2024-01-13T07:44:36.613798+0000 mon.smithi039 (mon.0) 473 : audit [DBG] from='client.? 172.21.15.39:0/2175692547' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:44:38.161 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:44:39.419 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:39 smithi039 bash[16208]: cluster 2024-01-13T07:44:38.108749+0000 mgr.smithi039.fbdzkl (mgr.14184) 238 : cluster [DBG] pgmap v207: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:39.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:39 smithi100 bash[20091]: cluster 2024-01-13T07:44:38.108749+0000 mgr.smithi039.fbdzkl (mgr.14184) 238 : cluster [DBG] pgmap v207: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:40.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:40 smithi039 bash[16208]: cluster 2024-01-13T07:44:40.109728+0000 mgr.smithi039.fbdzkl (mgr.14184) 239 : cluster [DBG] pgmap v208: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:41.077 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:44:41.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:40 smithi100 bash[20091]: cluster 2024-01-13T07:44:40.109728+0000 mgr.smithi039.fbdzkl (mgr.14184) 239 : cluster [DBG] pgmap v208: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:41.682 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":29,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:44:41.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:41 smithi039 bash[16208]: audit 2024-01-13T07:44:41.076239+0000 mon.smithi039 (mon.0) 474 : audit [DBG] from='client.? 172.21.15.39:0/1218456574' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:44:42.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:41 smithi100 bash[20091]: audit 2024-01-13T07:44:41.076239+0000 mon.smithi039 (mon.0) 474 : audit [DBG] from='client.? 172.21.15.39:0/1218456574' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:44:42.684 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:44:42.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:42 smithi039 bash[16208]: cluster 2024-01-13T07:44:42.110748+0000 mgr.smithi039.fbdzkl (mgr.14184) 240 : cluster [DBG] pgmap v209: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:43.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:42 smithi100 bash[20091]: cluster 2024-01-13T07:44:42.110748+0000 mgr.smithi039.fbdzkl (mgr.14184) 240 : cluster [DBG] pgmap v209: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:45.455 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:45 smithi039 bash[16208]: cluster 2024-01-13T07:44:44.112092+0000 mgr.smithi039.fbdzkl (mgr.14184) 241 : cluster [DBG] pgmap v210: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:45.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:45 smithi100 bash[20091]: cluster 2024-01-13T07:44:44.112092+0000 mgr.smithi039.fbdzkl (mgr.14184) 241 : cluster [DBG] pgmap v210: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:45.786 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:44:46.380 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":29,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:44:46.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:46 smithi039 bash[16208]: audit 2024-01-13T07:44:45.785721+0000 mon.smithi039 (mon.0) 475 : audit [DBG] from='client.? 172.21.15.39:0/1109688261' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:44:46.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:46 smithi100 bash[20091]: audit 2024-01-13T07:44:45.785721+0000 mon.smithi039 (mon.0) 475 : audit [DBG] from='client.? 172.21.15.39:0/1109688261' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:44:47.381 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:44:47.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:47 smithi039 bash[16208]: cluster 2024-01-13T07:44:46.113158+0000 mgr.smithi039.fbdzkl (mgr.14184) 242 : cluster [DBG] pgmap v211: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:47.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:47 smithi100 bash[20091]: cluster 2024-01-13T07:44:46.113158+0000 mgr.smithi039.fbdzkl (mgr.14184) 242 : cluster [DBG] pgmap v211: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:49.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:49 smithi039 bash[16208]: cluster 2024-01-13T07:44:48.114217+0000 mgr.smithi039.fbdzkl (mgr.14184) 243 : cluster [DBG] pgmap v212: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:49.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:49 smithi100 bash[20091]: cluster 2024-01-13T07:44:48.114217+0000 mgr.smithi039.fbdzkl (mgr.14184) 243 : cluster [DBG] pgmap v212: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:50.407 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:44:51.020 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":29,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:44:51.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:50 smithi039 bash[16208]: cluster 2024-01-13T07:44:50.115191+0000 mgr.smithi039.fbdzkl (mgr.14184) 244 : cluster [DBG] pgmap v213: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:51.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:50 smithi039 bash[16208]: audit 2024-01-13T07:44:50.406063+0000 mon.smithi039 (mon.0) 476 : audit [DBG] from='client.? 172.21.15.39:0/276982887' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:44:51.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:50 smithi100 bash[20091]: cluster 2024-01-13T07:44:50.115191+0000 mgr.smithi039.fbdzkl (mgr.14184) 244 : cluster [DBG] pgmap v213: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:51.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:50 smithi100 bash[20091]: audit 2024-01-13T07:44:50.406063+0000 mon.smithi039 (mon.0) 476 : audit [DBG] from='client.? 172.21.15.39:0/276982887' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:44:52.022 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:44:53.292 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:53 smithi039 bash[16208]: cluster 2024-01-13T07:44:52.116232+0000 mgr.smithi039.fbdzkl (mgr.14184) 245 : cluster [DBG] pgmap v214: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:53.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:53 smithi100 bash[20091]: cluster 2024-01-13T07:44:52.116232+0000 mgr.smithi039.fbdzkl (mgr.14184) 245 : cluster [DBG] pgmap v214: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:54.969 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:44:55.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:55 smithi039 bash[16208]: cluster 2024-01-13T07:44:54.117288+0000 mgr.smithi039.fbdzkl (mgr.14184) 246 : cluster [DBG] pgmap v215: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:55.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:55 smithi039 bash[16208]: audit 2024-01-13T07:44:54.968472+0000 mon.smithi039 (mon.0) 477 : audit [DBG] from='client.? 172.21.15.39:0/2468416498' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:44:55.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:55 smithi100 bash[20091]: cluster 2024-01-13T07:44:54.117288+0000 mgr.smithi039.fbdzkl (mgr.14184) 246 : cluster [DBG] pgmap v215: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:55.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:55 smithi100 bash[20091]: audit 2024-01-13T07:44:54.968472+0000 mon.smithi039 (mon.0) 477 : audit [DBG] from='client.? 172.21.15.39:0/2468416498' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:44:55.591 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":29,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:44:56.592 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:44:57.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:57 smithi039 bash[16208]: cluster 2024-01-13T07:44:56.118348+0000 mgr.smithi039.fbdzkl (mgr.14184) 247 : cluster [DBG] pgmap v216: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:57.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:57 smithi100 bash[20091]: cluster 2024-01-13T07:44:56.118348+0000 mgr.smithi039.fbdzkl (mgr.14184) 247 : cluster [DBG] pgmap v216: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:59.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:44:59 smithi039 bash[16208]: cluster 2024-01-13T07:44:58.119450+0000 mgr.smithi039.fbdzkl (mgr.14184) 248 : cluster [DBG] pgmap v217: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:59.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:44:59 smithi100 bash[20091]: cluster 2024-01-13T07:44:58.119450+0000 mgr.smithi039.fbdzkl (mgr.14184) 248 : cluster [DBG] pgmap v217: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:44:59.635 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:45:00.242 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":29,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:45:00.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:00 smithi039 bash[16208]: audit 2024-01-13T07:44:59.634425+0000 mon.smithi039 (mon.0) 478 : audit [DBG] from='client.? 172.21.15.39:0/2473059396' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:00.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:00 smithi100 bash[20091]: audit 2024-01-13T07:44:59.634425+0000 mon.smithi039 (mon.0) 478 : audit [DBG] from='client.? 172.21.15.39:0/2473059396' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:01.243 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:45:01.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:01 smithi039 bash[16208]: cluster 2024-01-13T07:45:00.120513+0000 mgr.smithi039.fbdzkl (mgr.14184) 249 : cluster [DBG] pgmap v218: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:01.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:01 smithi100 bash[20091]: cluster 2024-01-13T07:45:00.120513+0000 mgr.smithi039.fbdzkl (mgr.14184) 249 : cluster [DBG] pgmap v218: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:03.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:03 smithi100 bash[20091]: cluster 2024-01-13T07:45:02.121568+0000 mgr.smithi039.fbdzkl (mgr.14184) 250 : cluster [DBG] pgmap v219: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:03.512 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:03 smithi039 bash[16208]: cluster 2024-01-13T07:45:02.121568+0000 mgr.smithi039.fbdzkl (mgr.14184) 250 : cluster [DBG] pgmap v219: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:04.339 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:45:04.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:04 smithi039 bash[16208]: audit 2024-01-13T07:45:04.093199+0000 mon.smithi039 (mon.0) 479 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:45:04.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:04 smithi100 bash[20091]: audit 2024-01-13T07:45:04.093199+0000 mon.smithi039 (mon.0) 479 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:45:04.917 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":29,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:45:05.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:05 smithi039 bash[16208]: cluster 2024-01-13T07:45:04.122224+0000 mgr.smithi039.fbdzkl (mgr.14184) 251 : cluster [DBG] pgmap v220: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:05.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:05 smithi039 bash[16208]: audit 2024-01-13T07:45:04.338730+0000 mon.smithi039 (mon.0) 480 : audit [DBG] from='client.? 172.21.15.39:0/2268174697' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:05.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:05 smithi039 bash[16208]: audit 2024-01-13T07:45:04.423562+0000 mon.smithi039 (mon.0) 481 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:45:05.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:05 smithi039 bash[16208]: audit 2024-01-13T07:45:04.424991+0000 mon.smithi039 (mon.0) 482 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-13T07:45:05.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:05 smithi039 bash[16208]: audit 2024-01-13T07:45:04.437010+0000 mon.smithi039 (mon.0) 483 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:45:05.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:05 smithi039 bash[16208]: cluster 2024-01-13T07:45:04.437598+0000 mgr.smithi039.fbdzkl (mgr.14184) 252 : cluster [DBG] pgmap v221: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:05.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:05 smithi039 bash[16208]: audit 2024-01-13T07:45:04.442328+0000 mon.smithi039 (mon.0) 484 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-13T07:45:05.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:05 smithi039 bash[16208]: audit 2024-01-13T07:45:04.448897+0000 mon.smithi039 (mon.0) 485 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:45:05.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:05 smithi039 bash[16208]: audit 2024-01-13T07:45:04.452313+0000 mon.smithi039 (mon.0) 486 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:45:05.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:05 smithi039 bash[16208]: audit 2024-01-13T07:45:04.452819+0000 mon.smithi039 (mon.0) 487 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:45:05.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:05 smithi039 bash[16208]: audit 2024-01-13T07:45:04.453739+0000 mon.smithi039 (mon.0) 488 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:45:05.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:05 smithi100 bash[20091]: cluster 2024-01-13T07:45:04.122224+0000 mgr.smithi039.fbdzkl (mgr.14184) 251 : cluster [DBG] pgmap v220: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:05.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:05 smithi100 bash[20091]: audit 2024-01-13T07:45:04.338730+0000 mon.smithi039 (mon.0) 480 : audit [DBG] from='client.? 172.21.15.39:0/2268174697' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:05.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:05 smithi100 bash[20091]: audit 2024-01-13T07:45:04.423562+0000 mon.smithi039 (mon.0) 481 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:45:05.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:05 smithi100 bash[20091]: audit 2024-01-13T07:45:04.424991+0000 mon.smithi039 (mon.0) 482 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-13T07:45:05.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:05 smithi100 bash[20091]: audit 2024-01-13T07:45:04.437010+0000 mon.smithi039 (mon.0) 483 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:45:05.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:05 smithi100 bash[20091]: cluster 2024-01-13T07:45:04.437598+0000 mgr.smithi039.fbdzkl (mgr.14184) 252 : cluster [DBG] pgmap v221: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:05.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:05 smithi100 bash[20091]: audit 2024-01-13T07:45:04.442328+0000 mon.smithi039 (mon.0) 484 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-13T07:45:05.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:05 smithi100 bash[20091]: audit 2024-01-13T07:45:04.448897+0000 mon.smithi039 (mon.0) 485 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:45:05.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:05 smithi100 bash[20091]: audit 2024-01-13T07:45:04.452313+0000 mon.smithi039 (mon.0) 486 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:45:05.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:05 smithi100 bash[20091]: audit 2024-01-13T07:45:04.452819+0000 mon.smithi039 (mon.0) 487 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:45:05.745 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:05 smithi100 bash[20091]: audit 2024-01-13T07:45:04.453739+0000 mon.smithi039 (mon.0) 488 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:45:05.918 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:45:06.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:06 smithi039 bash[16208]: cluster 2024-01-13T07:45:05.434107+0000 mon.smithi039 (mon.0) 489 : cluster [INF] Health check cleared: CEPHADM_APPLY_SPEC_FAIL (was: Failed to apply 1 service(s): osd.all-available-devices) 2024-01-13T07:45:06.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:06 smithi039 bash[16208]: cluster 2024-01-13T07:45:05.434193+0000 mon.smithi039 (mon.0) 490 : cluster [INF] Cluster is now healthy 2024-01-13T07:45:06.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:06 smithi100 bash[20091]: cluster 2024-01-13T07:45:05.434107+0000 mon.smithi039 (mon.0) 489 : cluster [INF] Health check cleared: CEPHADM_APPLY_SPEC_FAIL (was: Failed to apply 1 service(s): osd.all-available-devices) 2024-01-13T07:45:06.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:06 smithi100 bash[20091]: cluster 2024-01-13T07:45:05.434193+0000 mon.smithi039 (mon.0) 490 : cluster [INF] Cluster is now healthy 2024-01-13T07:45:07.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:07 smithi039 bash[16208]: cluster 2024-01-13T07:45:06.438017+0000 mgr.smithi039.fbdzkl (mgr.14184) 253 : cluster [DBG] pgmap v222: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:07.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:07 smithi100 bash[20091]: cluster 2024-01-13T07:45:06.438017+0000 mgr.smithi039.fbdzkl (mgr.14184) 253 : cluster [DBG] pgmap v222: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:08.883 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:45:09.454 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":29,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:45:09.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:09 smithi039 bash[16208]: cluster 2024-01-13T07:45:08.438429+0000 mgr.smithi039.fbdzkl (mgr.14184) 254 : cluster [DBG] pgmap v223: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:09.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:09 smithi039 bash[16208]: audit 2024-01-13T07:45:08.882832+0000 mon.smithi039 (mon.0) 491 : audit [DBG] from='client.? 172.21.15.39:0/2300012351' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:09.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:09 smithi100 bash[20091]: cluster 2024-01-13T07:45:08.438429+0000 mgr.smithi039.fbdzkl (mgr.14184) 254 : cluster [DBG] pgmap v223: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:09.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:09 smithi100 bash[20091]: audit 2024-01-13T07:45:08.882832+0000 mon.smithi039 (mon.0) 491 : audit [DBG] from='client.? 172.21.15.39:0/2300012351' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:10.455 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:45:11.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:10 smithi039 bash[16208]: cluster 2024-01-13T07:45:10.438877+0000 mgr.smithi039.fbdzkl (mgr.14184) 255 : cluster [DBG] pgmap v224: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:11.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:10 smithi100 bash[20091]: cluster 2024-01-13T07:45:10.438877+0000 mgr.smithi039.fbdzkl (mgr.14184) 255 : cluster [DBG] pgmap v224: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:13.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:13 smithi100 bash[20091]: cluster 2024-01-13T07:45:12.439367+0000 mgr.smithi039.fbdzkl (mgr.14184) 256 : cluster [DBG] pgmap v225: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:13.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:13 smithi100 bash[20091]: audit 2024-01-13T07:45:12.943851+0000 mon.smithi039 (mon.0) 492 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "de2f790d-9736-4293-88ec-2b0e4d16dfeb"}]: dispatch 2024-01-13T07:45:13.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:13 smithi100 bash[20091]: audit 2024-01-13T07:45:12.944282+0000 mon.smithi100 (mon.1) 14 : audit [INF] from='client.? 172.21.15.100:0/498637536' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "de2f790d-9736-4293-88ec-2b0e4d16dfeb"}]: dispatch 2024-01-13T07:45:13.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:13 smithi100 bash[20091]: audit 2024-01-13T07:45:12.951805+0000 mon.smithi039 (mon.0) 493 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "de2f790d-9736-4293-88ec-2b0e4d16dfeb"}]': finished 2024-01-13T07:45:13.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:13 smithi100 bash[20091]: cluster 2024-01-13T07:45:12.951958+0000 mon.smithi039 (mon.0) 494 : cluster [DBG] osdmap e30: 1 total, 0 up, 1 in 2024-01-13T07:45:13.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:13 smithi100 bash[20091]: audit 2024-01-13T07:45:12.952123+0000 mon.smithi039 (mon.0) 495 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:45:13.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:13 smithi100 bash[20091]: audit 2024-01-13T07:45:13.298111+0000 mon.smithi039 (mon.0) 496 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:45:13.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:13 smithi100 bash[20091]: audit 2024-01-13T07:45:13.298448+0000 mon.smithi100 (mon.1) 15 : audit [INF] from='client.? 172.21.15.100:0/3880840400' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:45:13.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:13 smithi100 bash[20091]: audit 2024-01-13T07:45:13.306482+0000 mon.smithi039 (mon.0) 497 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:45:13.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:13 smithi100 bash[20091]: cluster 2024-01-13T07:45:13.306653+0000 mon.smithi039 (mon.0) 498 : cluster [DBG] osdmap e31: 0 total, 0 up, 0 in 2024-01-13T07:45:13.935 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:13 smithi039 bash[16208]: cluster 2024-01-13T07:45:12.439367+0000 mgr.smithi039.fbdzkl (mgr.14184) 256 : cluster [DBG] pgmap v225: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:13.935 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:13 smithi039 bash[16208]: audit 2024-01-13T07:45:12.943851+0000 mon.smithi039 (mon.0) 492 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "de2f790d-9736-4293-88ec-2b0e4d16dfeb"}]: dispatch 2024-01-13T07:45:13.935 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:13 smithi039 bash[16208]: audit 2024-01-13T07:45:12.944282+0000 mon.smithi100 (mon.1) 14 : audit [INF] from='client.? 172.21.15.100:0/498637536' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "de2f790d-9736-4293-88ec-2b0e4d16dfeb"}]: dispatch 2024-01-13T07:45:13.936 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:13 smithi039 bash[16208]: audit 2024-01-13T07:45:12.951805+0000 mon.smithi039 (mon.0) 493 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "de2f790d-9736-4293-88ec-2b0e4d16dfeb"}]': finished 2024-01-13T07:45:13.936 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:13 smithi039 bash[16208]: cluster 2024-01-13T07:45:12.951958+0000 mon.smithi039 (mon.0) 494 : cluster [DBG] osdmap e30: 1 total, 0 up, 1 in 2024-01-13T07:45:13.936 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:13 smithi039 bash[16208]: audit 2024-01-13T07:45:12.952123+0000 mon.smithi039 (mon.0) 495 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:45:13.936 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:13 smithi039 bash[16208]: audit 2024-01-13T07:45:13.298111+0000 mon.smithi039 (mon.0) 496 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:45:13.936 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:13 smithi039 bash[16208]: audit 2024-01-13T07:45:13.298448+0000 mon.smithi100 (mon.1) 15 : audit [INF] from='client.? 172.21.15.100:0/3880840400' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:45:13.936 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:13 smithi039 bash[16208]: audit 2024-01-13T07:45:13.306482+0000 mon.smithi039 (mon.0) 497 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:45:13.936 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:13 smithi039 bash[16208]: cluster 2024-01-13T07:45:13.306653+0000 mon.smithi039 (mon.0) 498 : cluster [DBG] osdmap e31: 0 total, 0 up, 0 in 2024-01-13T07:45:14.363 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:45:14.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:14 smithi039 bash[16208]: audit 2024-01-13T07:45:14.362752+0000 mon.smithi039 (mon.0) 499 : audit [DBG] from='client.? 172.21.15.39:0/3397499147' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:14.961 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":31,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:45:14.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:14 smithi100 bash[20091]: audit 2024-01-13T07:45:14.362752+0000 mon.smithi039 (mon.0) 499 : audit [DBG] from='client.? 172.21.15.39:0/3397499147' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:15.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: cephadm 2024-01-13T07:45:14.042958+0000 mgr.smithi039.fbdzkl (mgr.14184) 257 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:45:15.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:45:15.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:45:15.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:45:15.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:45:15.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:45:15.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:45:15.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:45:15.520 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:45:15.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmptmf7544n:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpcm63bzy_:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:45:15.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:45:15.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:45:15.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:45:15.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new de2f790d-9736-4293-88ec-2b0e4d16dfeb 2024-01-13T07:45:15.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:45:15.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:45:15.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:45:15.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:45:15.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:45:15.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:45:15.521 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:15.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:15.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:45:15.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:45:15.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:45:15.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:45:15.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:45:15.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:45:15.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:45:15.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:45:15.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:45:15.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:45:15.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:45:15.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:45:15.523 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:45:15.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:45:15.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:45:15.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:45:15.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:45:15.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:45:15.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:45:15.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:45:15.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:45:15.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:45:15.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:45:15.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:45:15.524 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:45:15.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:15.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:15.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:45:15.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:45:15.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:45:15.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:45:15.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:15.525 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:15.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:45:15.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:45:15.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:45:15.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:45:15.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:45:15.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:45:15.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:45:15.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:45:15.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:15.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:15.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:45:15.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:45:15.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:45:15.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:45:15.526 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:45:15.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:45:15.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:45:15.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: main() 2024-01-13T07:45:15.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:45:15.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:45:15.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:45:15.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:45:15.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:45:15.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:45:15.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:45:15.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:45:15.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:45:15.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:45:15.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:45:15.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:45:15.527 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:45:15.528 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:45:15.528 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmptmf7544n:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpcm63bzy_:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:45:15.528 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: cluster 2024-01-13T07:45:14.439794+0000 mgr.smithi039.fbdzkl (mgr.14184) 258 : cluster [DBG] pgmap v228: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:15.528 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: audit 2024-01-13T07:45:14.511281+0000 mon.smithi039 (mon.0) 500 : audit [INF] from='client.? 172.21.15.39:0/1456112232' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "5d45f6e7-9d7b-41eb-9eaa-25b379e4eb03"}]: dispatch 2024-01-13T07:45:15.528 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: audit 2024-01-13T07:45:14.517786+0000 mon.smithi039 (mon.0) 501 : audit [INF] from='client.? 172.21.15.39:0/1456112232' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5d45f6e7-9d7b-41eb-9eaa-25b379e4eb03"}]': finished 2024-01-13T07:45:15.528 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: cluster 2024-01-13T07:45:14.517841+0000 mon.smithi039 (mon.0) 502 : cluster [DBG] osdmap e32: 1 total, 0 up, 1 in 2024-01-13T07:45:15.528 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: audit 2024-01-13T07:45:14.517958+0000 mon.smithi039 (mon.0) 503 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:45:15.529 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: audit 2024-01-13T07:45:14.876564+0000 mon.smithi039 (mon.0) 504 : audit [INF] from='client.? 172.21.15.39:0/1113966873' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:45:15.529 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: audit 2024-01-13T07:45:14.883207+0000 mon.smithi039 (mon.0) 505 : audit [INF] from='client.? 172.21.15.39:0/1113966873' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:45:15.529 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: cluster 2024-01-13T07:45:14.883325+0000 mon.smithi039 (mon.0) 506 : cluster [DBG] osdmap e33: 0 total, 0 up, 0 in 2024-01-13T07:45:15.529 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:15 smithi039 bash[16208]: audit 2024-01-13T07:45:15.366191+0000 mon.smithi039 (mon.0) 507 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:45:15.962 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:45:15.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: cephadm 2024-01-13T07:45:14.042958+0000 mgr.smithi039.fbdzkl (mgr.14184) 257 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:45:15.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:45:15.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:45:15.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:45:15.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:45:15.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:45:15.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:45:15.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:45:15.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:45:15.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmptmf7544n:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpcm63bzy_:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:45:15.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:45:15.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:45:15.995 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:45:15.995 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new de2f790d-9736-4293-88ec-2b0e4d16dfeb 2024-01-13T07:45:15.995 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:45:15.995 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:45:15.995 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:45:15.995 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:45:15.995 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:45:15.995 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:45:15.995 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:15.995 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:15.995 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:45:15.995 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:45:15.995 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:45:15.995 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:45:15.995 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:45:15.996 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:45:15.996 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:45:15.996 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:45:15.996 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:45:15.996 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:45:15.996 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:45:15.996 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:45:15.996 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:45:15.996 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:45:15.996 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:45:15.996 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:45:15.996 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:45:15.996 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:45:15.996 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:45:15.996 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:45:15.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:45:15.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:45:15.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:45:15.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:45:15.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:45:15.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:15.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:15.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:45:15.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:45:15.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:45:15.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:45:15.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:15.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:15.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:45:15.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:45:15.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:45:15.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:45:15.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:45:15.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:45:15.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:45:15.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:45:15.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:15.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:15.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:45:15.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:45:15.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:45:15.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:45:15.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:45:15.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:45:15.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:45:15.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: main() 2024-01-13T07:45:15.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:45:15.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:45:15.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:45:15.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:45:15.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:45:15.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:45:15.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:45:15.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:45:15.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:45:15.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:45:15.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:45:15.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:45:15.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:45:15.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:45:16.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmptmf7544n:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpcm63bzy_:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:45:16.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: cluster 2024-01-13T07:45:14.439794+0000 mgr.smithi039.fbdzkl (mgr.14184) 258 : cluster [DBG] pgmap v228: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:16.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: audit 2024-01-13T07:45:14.511281+0000 mon.smithi039 (mon.0) 500 : audit [INF] from='client.? 172.21.15.39:0/1456112232' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "5d45f6e7-9d7b-41eb-9eaa-25b379e4eb03"}]: dispatch 2024-01-13T07:45:16.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: audit 2024-01-13T07:45:14.517786+0000 mon.smithi039 (mon.0) 501 : audit [INF] from='client.? 172.21.15.39:0/1456112232' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5d45f6e7-9d7b-41eb-9eaa-25b379e4eb03"}]': finished 2024-01-13T07:45:16.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: cluster 2024-01-13T07:45:14.517841+0000 mon.smithi039 (mon.0) 502 : cluster [DBG] osdmap e32: 1 total, 0 up, 1 in 2024-01-13T07:45:16.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: audit 2024-01-13T07:45:14.517958+0000 mon.smithi039 (mon.0) 503 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:45:16.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: audit 2024-01-13T07:45:14.876564+0000 mon.smithi039 (mon.0) 504 : audit [INF] from='client.? 172.21.15.39:0/1113966873' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:45:16.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: audit 2024-01-13T07:45:14.883207+0000 mon.smithi039 (mon.0) 505 : audit [INF] from='client.? 172.21.15.39:0/1113966873' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:45:16.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: cluster 2024-01-13T07:45:14.883325+0000 mon.smithi039 (mon.0) 506 : cluster [DBG] osdmap e33: 0 total, 0 up, 0 in 2024-01-13T07:45:16.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:15 smithi100 bash[20091]: audit 2024-01-13T07:45:15.366191+0000 mon.smithi039 (mon.0) 507 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:45:16.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:16 smithi039 bash[16208]: cluster 2024-01-13T07:45:16.513441+0000 mon.smithi039 (mon.0) 508 : cluster [WRN] Health check failed: Failed to apply 1 service(s): osd.all-available-devices (CEPHADM_APPLY_SPEC_FAIL) 2024-01-13T07:45:16.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:16 smithi100 bash[20091]: cluster 2024-01-13T07:45:16.513441+0000 mon.smithi039 (mon.0) 508 : cluster [WRN] Health check failed: Failed to apply 1 service(s): osd.all-available-devices (CEPHADM_APPLY_SPEC_FAIL) 2024-01-13T07:45:17.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: cephadm 2024-01-13T07:45:15.585751+0000 mgr.smithi039.fbdzkl (mgr.14184) 259 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:45:17.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:45:17.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:45:17.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:45:17.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:45:17.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:45:17.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:45:17.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:45:17.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi039/config 2024-01-13T07:45:17.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp8moeljdp:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpacgyafn_:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:45:17.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:45:17.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:45:17.745 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:45:17.745 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new 5d45f6e7-9d7b-41eb-9eaa-25b379e4eb03 2024-01-13T07:45:17.745 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:45:17.745 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:45:17.745 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:45:17.745 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:45:17.745 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:45:17.745 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:45:17.745 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:17.746 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:17.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:45:17.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:45:17.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:45:17.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:45:17.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:45:17.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:45:17.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:45:17.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:45:17.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:45:17.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:45:17.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:45:17.747 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:45:17.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:45:17.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:45:17.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:45:17.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:45:17.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:45:17.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:45:17.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:45:17.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:45:17.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:45:17.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:45:17.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:45:17.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:45:17.748 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:45:17.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:17.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:17.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:45:17.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:45:17.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:45:17.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:45:17.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:17.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:17.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:45:17.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:45:17.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:45:17.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:45:17.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:45:17.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:45:17.749 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:45:17.750 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:45:17.750 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:17.750 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:17.750 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:45:17.750 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:45:17.750 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:45:17.750 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:45:17.750 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:45:17.750 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:45:17.750 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:45:17.750 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: main() 2024-01-13T07:45:17.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:45:17.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:45:17.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:45:17.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:45:17.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:45:17.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:45:17.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:45:17.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:45:17.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:45:17.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:45:17.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:45:17.751 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:45:17.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:45:17.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:45:17.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp8moeljdp:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpacgyafn_:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:45:17.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: cephadm 2024-01-13T07:45:15.591030+0000 mgr.smithi039.fbdzkl (mgr.14184) 260 : cephadm [ERR] Failed to apply osd.all-available-devices spec DriveGroupSpec.from_json(yaml.safe_load('''service_type: osd 2024-01-13T07:45:17.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: service_id: all-available-devices 2024-01-13T07:45:17.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: service_name: osd.all-available-devices 2024-01-13T07:45:17.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: placement: 2024-01-13T07:45:17.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: host_pattern: '*' 2024-01-13T07:45:17.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: spec: 2024-01-13T07:45:17.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: data_devices: 2024-01-13T07:45:17.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: all: true 2024-01-13T07:45:17.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: filter_logic: AND 2024-01-13T07:45:17.752 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: objectstore: bluestore 2024-01-13T07:45:17.753 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: ''')): cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:45:17.753 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmptmf7544n:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpcm63bzy_:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:45:17.753 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:45:17.753 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:45:17.753 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:45:17.753 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new de2f790d-9736-4293-88ec-2b0e4d16dfeb 2024-01-13T07:45:17.753 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:45:17.753 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:45:17.753 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:45:17.753 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:45:17.753 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:45:17.753 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:45:17.753 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:17.754 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:17.754 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:45:17.754 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:45:17.754 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:45:17.754 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:45:17.754 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:45:17.754 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:45:17.754 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:45:17.754 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:45:17.754 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:45:17.754 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:45:17.754 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:45:17.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:45:17.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:45:17.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:45:17.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:45:17.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:45:17.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:45:17.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:45:17.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:45:17.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:45:17.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:45:17.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:45:17.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:45:17.755 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:45:17.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:45:17.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:17.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:17.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:45:17.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:45:17.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:45:17.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:45:17.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:17.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:17.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:45:17.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:45:17.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:45:17.756 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:45:17.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:45:17.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:45:17.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:45:17.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:45:17.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:17.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:17.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:45:17.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:45:17.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:45:17.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:45:17.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:45:17.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:45:17.757 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:45:17.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: main() 2024-01-13T07:45:17.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:45:17.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:45:17.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:45:17.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:45:17.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:45:17.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:45:17.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:45:17.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:45:17.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:45:17.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:45:17.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:45:17.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:45:17.758 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:45:17.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:45:17.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmptmf7544n:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpcm63bzy_:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:45:17.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:45:17.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 521, in _apply_all_services 2024-01-13T07:45:17.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: if self._apply_service(spec): 2024-01-13T07:45:17.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 595, in _apply_service 2024-01-13T07:45:17.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: self.mgr.osd_service.create_from_spec(cast(DriveGroupSpec, spec)) 2024-01-13T07:45:17.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 73, in create_from_spec 2024-01-13T07:45:17.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: ret = create_from_spec_one(self.prepare_drivegroup(drive_group)) 2024-01-13T07:45:17.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 83, in forall_hosts_wrapper 2024-01-13T07:45:17.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: return CephadmOrchestrator.instance._worker_pool.map(do_work, vals) 2024-01-13T07:45:17.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 266, in map 2024-01-13T07:45:17.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: return self._map_async(func, iterable, mapstar, chunksize).get() 2024-01-13T07:45:17.759 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 644, in get 2024-01-13T07:45:17.760 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: raise self._value 2024-01-13T07:45:17.760 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 119, in worker 2024-01-13T07:45:17.760 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: result = (True, func(*args, **kwds)) 2024-01-13T07:45:17.760 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 44, in mapstar 2024-01-13T07:45:17.760 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: return list(map(*args)) 2024-01-13T07:45:17.760 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:45:17.760 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:45:17.760 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:45:17.760 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:45:17.761 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:45:17.761 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:45:17.761 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:45:17.761 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmptmf7544n:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpcm63bzy_:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:45:17.761 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:45:17.761 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:45:17.761 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:45:17.761 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new de2f790d-9736-4293-88ec-2b0e4d16dfeb 2024-01-13T07:45:17.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:45:17.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:45:17.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:45:17.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:45:17.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:45:17.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:45:17.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:17.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:17.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:45:17.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:45:17.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:45:17.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:45:17.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:45:17.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:45:17.762 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:45:17.763 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:45:17.763 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:45:17.763 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:45:17.763 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:45:17.763 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:45:17.763 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:45:17.763 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:45:17.763 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:45:17.764 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:45:17.764 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:45:17.764 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:45:17.764 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:45:17.764 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:45:17.764 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:45:17.764 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:45:17.764 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:45:17.764 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:45:17.764 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:45:17.764 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:17.765 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:17.765 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:45:17.765 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:45:17.765 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:45:17.765 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:45:17.765 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:17.765 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:17.765 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:45:17.765 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:45:17.765 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:45:17.765 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:45:17.765 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:45:17.765 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:45:17.765 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:45:17.765 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:45:17.766 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:17.766 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:17.766 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:45:17.766 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:45:17.766 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:45:17.766 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:45:17.766 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:45:17.766 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:45:17.766 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:45:17.766 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: main() 2024-01-13T07:45:17.767 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:45:17.767 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:45:17.767 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:45:17.767 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:45:17.767 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:45:17.767 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:45:17.767 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:45:17.767 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:45:17.767 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:45:17.767 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:45:17.767 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:45:17.768 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:45:17.768 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:45:17.768 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:45:17.768 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmptmf7544n:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpcm63bzy_:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:45:17.768 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:17 smithi039 bash[16208]: cluster 2024-01-13T07:45:15.592887+0000 mgr.smithi039.fbdzkl (mgr.14184) 261 : cluster [DBG] pgmap v231: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:17.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: cephadm 2024-01-13T07:45:15.585751+0000 mgr.smithi039.fbdzkl (mgr.14184) 259 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:45:17.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:45:17.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:45:17.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:45:17.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:45:17.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:45:17.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:45:17.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:45:17.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi039/config 2024-01-13T07:45:17.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp8moeljdp:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpacgyafn_:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:45:17.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:45:17.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:45:17.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:45:17.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new 5d45f6e7-9d7b-41eb-9eaa-25b379e4eb03 2024-01-13T07:45:17.995 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:45:17.995 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:45:17.995 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:45:17.995 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:45:17.995 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:45:17.995 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:45:17.995 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:17.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:17.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:45:17.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:45:17.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:45:17.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:45:17.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:45:17.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:45:17.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:45:17.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:45:17.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:45:17.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:45:17.997 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:45:17.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:45:17.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:45:17.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:45:17.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:45:17.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:45:17.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:45:17.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:45:17.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:45:17.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:45:17.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:45:17.998 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:45:17.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:45:17.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:45:17.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:45:17.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:17.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:17.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:45:17.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:45:17.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:45:17.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:45:17.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:17.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:17.999 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:45:18.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:45:18.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:45:18.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:45:18.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:45:18.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:45:18.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:45:18.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:45:18.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:18.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:18.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:45:18.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:45:18.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:45:18.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:45:18.000 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:45:18.001 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:45:18.001 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:45:18.001 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: main() 2024-01-13T07:45:18.001 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:45:18.001 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:45:18.001 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:45:18.001 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:45:18.001 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:45:18.001 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:45:18.001 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:45:18.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:45:18.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:45:18.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:45:18.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:45:18.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:45:18.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:45:18.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:45:18.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp8moeljdp:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpacgyafn_:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:45:18.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: cephadm 2024-01-13T07:45:15.591030+0000 mgr.smithi039.fbdzkl (mgr.14184) 260 : cephadm [ERR] Failed to apply osd.all-available-devices spec DriveGroupSpec.from_json(yaml.safe_load('''service_type: osd 2024-01-13T07:45:18.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: service_id: all-available-devices 2024-01-13T07:45:18.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: service_name: osd.all-available-devices 2024-01-13T07:45:18.002 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: placement: 2024-01-13T07:45:18.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: host_pattern: '*' 2024-01-13T07:45:18.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: spec: 2024-01-13T07:45:18.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: data_devices: 2024-01-13T07:45:18.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: all: true 2024-01-13T07:45:18.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: filter_logic: AND 2024-01-13T07:45:18.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: objectstore: bluestore 2024-01-13T07:45:18.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: ''')): cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:45:18.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmptmf7544n:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpcm63bzy_:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:45:18.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:45:18.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:45:18.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:45:18.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new de2f790d-9736-4293-88ec-2b0e4d16dfeb 2024-01-13T07:45:18.003 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:45:18.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:45:18.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:45:18.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:45:18.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:45:18.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:45:18.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:18.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:18.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:45:18.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:45:18.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:45:18.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:45:18.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:45:18.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:45:18.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:45:18.004 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:45:18.005 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:45:18.005 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:45:18.005 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:45:18.005 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:45:18.005 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:45:18.005 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:45:18.005 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:45:18.005 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:45:18.005 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:45:18.005 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:45:18.005 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:45:18.005 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:45:18.005 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:45:18.005 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:45:18.006 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:45:18.006 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:45:18.006 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:45:18.006 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:18.006 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:18.006 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:45:18.006 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:45:18.006 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:45:18.006 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:45:18.007 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:18.007 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:18.007 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:45:18.007 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:45:18.007 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:45:18.007 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:45:18.007 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:45:18.007 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:45:18.007 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:45:18.007 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:45:18.007 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:18.007 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:18.007 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:45:18.007 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:45:18.008 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:45:18.008 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:45:18.008 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:45:18.008 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:45:18.008 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:45:18.008 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: main() 2024-01-13T07:45:18.008 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:45:18.008 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:45:18.008 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:45:18.008 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:45:18.008 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:45:18.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:45:18.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:45:18.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:45:18.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:45:18.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:45:18.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:45:18.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:45:18.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:45:18.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:45:18.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmptmf7544n:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpcm63bzy_:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:45:18.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:45:18.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 521, in _apply_all_services 2024-01-13T07:45:18.009 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: if self._apply_service(spec): 2024-01-13T07:45:18.010 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 595, in _apply_service 2024-01-13T07:45:18.010 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: self.mgr.osd_service.create_from_spec(cast(DriveGroupSpec, spec)) 2024-01-13T07:45:18.010 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 73, in create_from_spec 2024-01-13T07:45:18.010 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: ret = create_from_spec_one(self.prepare_drivegroup(drive_group)) 2024-01-13T07:45:18.010 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 83, in forall_hosts_wrapper 2024-01-13T07:45:18.010 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: return CephadmOrchestrator.instance._worker_pool.map(do_work, vals) 2024-01-13T07:45:18.010 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 266, in map 2024-01-13T07:45:18.010 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: return self._map_async(func, iterable, mapstar, chunksize).get() 2024-01-13T07:45:18.010 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 644, in get 2024-01-13T07:45:18.010 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: raise self._value 2024-01-13T07:45:18.010 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 119, in worker 2024-01-13T07:45:18.010 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: result = (True, func(*args, **kwds)) 2024-01-13T07:45:18.010 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 44, in mapstar 2024-01-13T07:45:18.011 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: return list(map(*args)) 2024-01-13T07:45:18.011 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:45:18.011 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:45:18.011 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:45:18.011 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:45:18.011 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:45:18.011 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:45:18.011 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:45:18.011 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmptmf7544n:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpcm63bzy_:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:45:18.011 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:45:18.011 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:45:18.011 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:45:18.012 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new de2f790d-9736-4293-88ec-2b0e4d16dfeb 2024-01-13T07:45:18.012 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:45:18.012 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:45:18.012 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:45:18.012 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:45:18.012 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:45:18.012 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:45:18.012 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:18.012 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:18.012 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:45:18.012 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:45:18.012 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:45:18.012 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:45:18.013 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:45:18.013 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:45:18.013 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:45:18.013 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:45:18.013 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:45:18.013 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:45:18.014 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:45:18.014 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:45:18.014 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:45:18.014 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:45:18.014 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:45:18.014 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:45:18.014 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:45:18.014 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:45:18.014 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:45:18.014 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:45:18.014 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:45:18.015 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:45:18.015 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:45:18.015 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:45:18.015 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:45:18.015 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:18.015 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:18.015 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:45:18.015 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:45:18.015 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:45:18.015 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:45:18.015 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:18.015 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:18.015 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:45:18.015 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:45:18.016 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:45:18.016 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:45:18.016 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:45:18.016 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:45:18.016 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:45:18.016 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:45:18.016 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:45:18.016 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:45:18.016 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:45:18.016 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:45:18.016 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:45:18.016 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:45:18.016 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:45:18.017 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:45:18.017 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:45:18.017 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: main() 2024-01-13T07:45:18.017 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:45:18.017 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:45:18.017 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:45:18.017 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:45:18.017 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:45:18.017 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:45:18.017 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:45:18.017 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:45:18.017 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:45:18.018 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:45:18.018 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:45:18.018 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:45:18.018 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:45:18.018 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:45:18.018 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmptmf7544n:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpcm63bzy_:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:45:18.018 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:17 smithi100 bash[20091]: cluster 2024-01-13T07:45:15.592887+0000 mgr.smithi039.fbdzkl (mgr.14184) 261 : cluster [DBG] pgmap v231: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:19.159 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:45:19.740 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":33,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:45:19.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:19 smithi039 bash[16208]: cluster 2024-01-13T07:45:17.593513+0000 mgr.smithi039.fbdzkl (mgr.14184) 262 : cluster [DBG] pgmap v232: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:19.994 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:19 smithi039 bash[16208]: audit 2024-01-13T07:45:19.158334+0000 mon.smithi039 (mon.0) 509 : audit [DBG] from='client.? 172.21.15.39:0/1250803110' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:19.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:19 smithi100 bash[20091]: cluster 2024-01-13T07:45:17.593513+0000 mgr.smithi039.fbdzkl (mgr.14184) 262 : cluster [DBG] pgmap v232: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:19.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:19 smithi100 bash[20091]: audit 2024-01-13T07:45:19.158334+0000 mon.smithi039 (mon.0) 509 : audit [DBG] from='client.? 172.21.15.39:0/1250803110' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:20.741 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:45:21.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:20 smithi039 bash[16208]: cluster 2024-01-13T07:45:19.594555+0000 mgr.smithi039.fbdzkl (mgr.14184) 263 : cluster [DBG] pgmap v233: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:21.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:20 smithi100 bash[20091]: cluster 2024-01-13T07:45:19.594555+0000 mgr.smithi039.fbdzkl (mgr.14184) 263 : cluster [DBG] pgmap v233: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:23.133 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:22 smithi039 bash[16208]: cluster 2024-01-13T07:45:21.595644+0000 mgr.smithi039.fbdzkl (mgr.14184) 264 : cluster [DBG] pgmap v234: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:23.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:22 smithi100 bash[20091]: cluster 2024-01-13T07:45:21.595644+0000 mgr.smithi039.fbdzkl (mgr.14184) 264 : cluster [DBG] pgmap v234: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:23.545 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:45:24.143 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:23 smithi039 bash[16208]: audit 2024-01-13T07:45:23.544325+0000 mon.smithi039 (mon.0) 510 : audit [DBG] from='client.? 172.21.15.39:0/3967609384' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:24.144 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":33,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:45:24.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:23 smithi100 bash[20091]: audit 2024-01-13T07:45:23.544325+0000 mon.smithi039 (mon.0) 510 : audit [DBG] from='client.? 172.21.15.39:0/3967609384' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:25.145 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:45:25.157 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:24 smithi039 bash[16208]: cluster 2024-01-13T07:45:23.596634+0000 mgr.smithi039.fbdzkl (mgr.14184) 265 : cluster [DBG] pgmap v235: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:25.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:24 smithi100 bash[20091]: cluster 2024-01-13T07:45:23.596634+0000 mgr.smithi039.fbdzkl (mgr.14184) 265 : cluster [DBG] pgmap v235: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:27.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:26 smithi039 bash[16208]: cluster 2024-01-13T07:45:25.597666+0000 mgr.smithi039.fbdzkl (mgr.14184) 266 : cluster [DBG] pgmap v236: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:27.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:26 smithi100 bash[20091]: cluster 2024-01-13T07:45:25.597666+0000 mgr.smithi039.fbdzkl (mgr.14184) 266 : cluster [DBG] pgmap v236: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:28.144 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:45:28.672 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":33,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:45:28.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:28 smithi039 bash[16208]: cluster 2024-01-13T07:45:27.598705+0000 mgr.smithi039.fbdzkl (mgr.14184) 267 : cluster [DBG] pgmap v237: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:28.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:28 smithi039 bash[16208]: audit 2024-01-13T07:45:28.143824+0000 mon.smithi039 (mon.0) 511 : audit [DBG] from='client.? 172.21.15.39:0/3038134317' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:29.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:28 smithi100 bash[20091]: cluster 2024-01-13T07:45:27.598705+0000 mgr.smithi039.fbdzkl (mgr.14184) 267 : cluster [DBG] pgmap v237: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:29.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:28 smithi100 bash[20091]: audit 2024-01-13T07:45:28.143824+0000 mon.smithi039 (mon.0) 511 : audit [DBG] from='client.? 172.21.15.39:0/3038134317' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:29.673 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:45:31.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:31 smithi039 bash[16208]: cluster 2024-01-13T07:45:29.599766+0000 mgr.smithi039.fbdzkl (mgr.14184) 268 : cluster [DBG] pgmap v238: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:31.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:31 smithi039 bash[16208]: audit 2024-01-13T07:45:30.365990+0000 mon.smithi039 (mon.0) 512 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:45:31.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:31 smithi100 bash[20091]: cluster 2024-01-13T07:45:29.599766+0000 mgr.smithi039.fbdzkl (mgr.14184) 268 : cluster [DBG] pgmap v238: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:31.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:31 smithi100 bash[20091]: audit 2024-01-13T07:45:30.365990+0000 mon.smithi039 (mon.0) 512 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:45:32.807 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:45:33.334 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":33,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:45:33.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:33 smithi039 bash[16208]: cluster 2024-01-13T07:45:31.601117+0000 mgr.smithi039.fbdzkl (mgr.14184) 269 : cluster [DBG] pgmap v239: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:33.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:33 smithi039 bash[16208]: audit 2024-01-13T07:45:32.806292+0000 mon.smithi039 (mon.0) 513 : audit [DBG] from='client.? 172.21.15.39:0/859040165' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:33.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:33 smithi100 bash[20091]: cluster 2024-01-13T07:45:31.601117+0000 mgr.smithi039.fbdzkl (mgr.14184) 269 : cluster [DBG] pgmap v239: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:33.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:33 smithi100 bash[20091]: audit 2024-01-13T07:45:32.806292+0000 mon.smithi039 (mon.0) 513 : audit [DBG] from='client.? 172.21.15.39:0/859040165' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:34.335 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:45:35.584 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:35 smithi039 bash[16208]: cluster 2024-01-13T07:45:33.602232+0000 mgr.smithi039.fbdzkl (mgr.14184) 270 : cluster [DBG] pgmap v240: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:35.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:35 smithi100 bash[20091]: cluster 2024-01-13T07:45:33.602232+0000 mgr.smithi039.fbdzkl (mgr.14184) 270 : cluster [DBG] pgmap v240: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:37.187 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:45:37.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:37 smithi039 bash[16208]: cluster 2024-01-13T07:45:35.602877+0000 mgr.smithi039.fbdzkl (mgr.14184) 271 : cluster [DBG] pgmap v241: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:37.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:37 smithi039 bash[16208]: audit 2024-01-13T07:45:37.186552+0000 mon.smithi039 (mon.0) 514 : audit [DBG] from='client.? 172.21.15.39:0/3319845800' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:37.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:37 smithi100 bash[20091]: cluster 2024-01-13T07:45:35.602877+0000 mgr.smithi039.fbdzkl (mgr.14184) 271 : cluster [DBG] pgmap v241: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:37.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:37 smithi100 bash[20091]: audit 2024-01-13T07:45:37.186552+0000 mon.smithi039 (mon.0) 514 : audit [DBG] from='client.? 172.21.15.39:0/3319845800' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:37.778 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":33,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:45:38.779 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:45:39.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:39 smithi039 bash[16208]: cluster 2024-01-13T07:45:37.603879+0000 mgr.smithi039.fbdzkl (mgr.14184) 272 : cluster [DBG] pgmap v242: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:39.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:39 smithi100 bash[20091]: cluster 2024-01-13T07:45:37.603879+0000 mgr.smithi039.fbdzkl (mgr.14184) 272 : cluster [DBG] pgmap v242: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:41.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:41 smithi039 bash[16208]: cluster 2024-01-13T07:45:39.604885+0000 mgr.smithi039.fbdzkl (mgr.14184) 273 : cluster [DBG] pgmap v243: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:41.644 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:45:41.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:41 smithi100 bash[20091]: cluster 2024-01-13T07:45:39.604885+0000 mgr.smithi039.fbdzkl (mgr.14184) 273 : cluster [DBG] pgmap v243: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:42.252 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":33,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:45:42.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:42 smithi039 bash[16208]: audit 2024-01-13T07:45:41.643577+0000 mon.smithi039 (mon.0) 515 : audit [DBG] from='client.? 172.21.15.39:0/3168739764' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:42.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:42 smithi100 bash[20091]: audit 2024-01-13T07:45:41.643577+0000 mon.smithi039 (mon.0) 515 : audit [DBG] from='client.? 172.21.15.39:0/3168739764' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:43.253 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:45:43.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:43 smithi039 bash[16208]: cluster 2024-01-13T07:45:41.605857+0000 mgr.smithi039.fbdzkl (mgr.14184) 274 : cluster [DBG] pgmap v244: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:43.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:43 smithi100 bash[20091]: cluster 2024-01-13T07:45:41.605857+0000 mgr.smithi039.fbdzkl (mgr.14184) 274 : cluster [DBG] pgmap v244: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:45.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:45 smithi039 bash[16208]: cluster 2024-01-13T07:45:43.606870+0000 mgr.smithi039.fbdzkl (mgr.14184) 275 : cluster [DBG] pgmap v245: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:45.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:45 smithi100 bash[20091]: cluster 2024-01-13T07:45:43.606870+0000 mgr.smithi039.fbdzkl (mgr.14184) 275 : cluster [DBG] pgmap v245: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:45.997 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:45:46.606 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":33,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:45:46.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:46 smithi039 bash[16208]: audit 2024-01-13T07:45:45.997290+0000 mon.smithi039 (mon.0) 516 : audit [DBG] from='client.? 172.21.15.39:0/3278181698' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:46.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:46 smithi100 bash[20091]: audit 2024-01-13T07:45:45.997290+0000 mon.smithi039 (mon.0) 516 : audit [DBG] from='client.? 172.21.15.39:0/3278181698' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:47.608 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:45:47.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:47 smithi039 bash[16208]: cluster 2024-01-13T07:45:45.607941+0000 mgr.smithi039.fbdzkl (mgr.14184) 276 : cluster [DBG] pgmap v246: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:47.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:47 smithi100 bash[20091]: cluster 2024-01-13T07:45:45.607941+0000 mgr.smithi039.fbdzkl (mgr.14184) 276 : cluster [DBG] pgmap v246: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:49.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:49 smithi039 bash[16208]: cluster 2024-01-13T07:45:47.608936+0000 mgr.smithi039.fbdzkl (mgr.14184) 277 : cluster [DBG] pgmap v247: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:49.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:49 smithi100 bash[20091]: cluster 2024-01-13T07:45:47.608936+0000 mgr.smithi039.fbdzkl (mgr.14184) 277 : cluster [DBG] pgmap v247: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:50.574 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:45:51.122 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":33,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:45:51.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:51 smithi039 bash[16208]: cluster 2024-01-13T07:45:49.609964+0000 mgr.smithi039.fbdzkl (mgr.14184) 278 : cluster [DBG] pgmap v248: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:51.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:51 smithi039 bash[16208]: audit 2024-01-13T07:45:50.573889+0000 mon.smithi039 (mon.0) 517 : audit [DBG] from='client.? 172.21.15.39:0/3340170057' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:51.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:51 smithi100 bash[20091]: cluster 2024-01-13T07:45:49.609964+0000 mgr.smithi039.fbdzkl (mgr.14184) 278 : cluster [DBG] pgmap v248: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:51.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:51 smithi100 bash[20091]: audit 2024-01-13T07:45:50.573889+0000 mon.smithi039 (mon.0) 517 : audit [DBG] from='client.? 172.21.15.39:0/3340170057' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:52.123 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:45:53.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:53 smithi039 bash[16208]: cluster 2024-01-13T07:45:51.610987+0000 mgr.smithi039.fbdzkl (mgr.14184) 279 : cluster [DBG] pgmap v249: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:53.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:53 smithi100 bash[20091]: cluster 2024-01-13T07:45:51.610987+0000 mgr.smithi039.fbdzkl (mgr.14184) 279 : cluster [DBG] pgmap v249: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:54.916 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:45:55.514 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":33,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:45:55.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:55 smithi039 bash[16208]: cluster 2024-01-13T07:45:53.612015+0000 mgr.smithi039.fbdzkl (mgr.14184) 280 : cluster [DBG] pgmap v250: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:55.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:55 smithi039 bash[16208]: audit 2024-01-13T07:45:54.915924+0000 mon.smithi039 (mon.0) 518 : audit [DBG] from='client.? 172.21.15.39:0/2402709372' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:55.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:55 smithi100 bash[20091]: cluster 2024-01-13T07:45:53.612015+0000 mgr.smithi039.fbdzkl (mgr.14184) 280 : cluster [DBG] pgmap v250: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:55.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:55 smithi100 bash[20091]: audit 2024-01-13T07:45:54.915924+0000 mon.smithi039 (mon.0) 518 : audit [DBG] from='client.? 172.21.15.39:0/2402709372' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:56.515 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:45:57.811 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:57 smithi039 bash[16208]: cluster 2024-01-13T07:45:55.612986+0000 mgr.smithi039.fbdzkl (mgr.14184) 281 : cluster [DBG] pgmap v251: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:57.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:57 smithi100 bash[20091]: cluster 2024-01-13T07:45:55.612986+0000 mgr.smithi039.fbdzkl (mgr.14184) 281 : cluster [DBG] pgmap v251: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:59.477 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:45:59.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:59 smithi039 bash[16208]: cluster 2024-01-13T07:45:57.613797+0000 mgr.smithi039.fbdzkl (mgr.14184) 282 : cluster [DBG] pgmap v252: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:59.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:45:59 smithi039 bash[16208]: audit 2024-01-13T07:45:59.476886+0000 mon.smithi039 (mon.0) 519 : audit [DBG] from='client.? 172.21.15.39:0/2003706827' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:45:59.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:59 smithi100 bash[20091]: cluster 2024-01-13T07:45:57.613797+0000 mgr.smithi039.fbdzkl (mgr.14184) 282 : cluster [DBG] pgmap v252: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:45:59.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:45:59 smithi100 bash[20091]: audit 2024-01-13T07:45:59.476886+0000 mon.smithi039 (mon.0) 519 : audit [DBG] from='client.? 172.21.15.39:0/2003706827' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:46:00.069 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":33,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:46:01.070 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:46:01.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:01 smithi039 bash[16208]: cluster 2024-01-13T07:45:59.614677+0000 mgr.smithi039.fbdzkl (mgr.14184) 283 : cluster [DBG] pgmap v253: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:01.994 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:01 smithi100 bash[20091]: cluster 2024-01-13T07:45:59.614677+0000 mgr.smithi039.fbdzkl (mgr.14184) 283 : cluster [DBG] pgmap v253: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:03.922 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:46:03.971 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:03 smithi039 bash[16208]: cluster 2024-01-13T07:46:01.615684+0000 mgr.smithi039.fbdzkl (mgr.14184) 284 : cluster [DBG] pgmap v254: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:03.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:03 smithi100 bash[20091]: cluster 2024-01-13T07:46:01.615684+0000 mgr.smithi039.fbdzkl (mgr.14184) 284 : cluster [DBG] pgmap v254: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:04.506 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":33,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:46:04.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:04 smithi039 bash[16208]: audit 2024-01-13T07:46:03.921857+0000 mon.smithi039 (mon.0) 520 : audit [DBG] from='client.? 172.21.15.39:0/4196842617' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:46:04.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:04 smithi100 bash[20091]: audit 2024-01-13T07:46:03.921857+0000 mon.smithi039 (mon.0) 520 : audit [DBG] from='client.? 172.21.15.39:0/4196842617' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:46:05.507 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:46:05.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:05 smithi039 bash[16208]: cluster 2024-01-13T07:46:03.616696+0000 mgr.smithi039.fbdzkl (mgr.14184) 285 : cluster [DBG] pgmap v255: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:05.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:05 smithi100 bash[20091]: cluster 2024-01-13T07:46:03.616696+0000 mgr.smithi039.fbdzkl (mgr.14184) 285 : cluster [DBG] pgmap v255: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:07.987 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:07 smithi039 bash[16208]: cluster 2024-01-13T07:46:05.617786+0000 mgr.smithi039.fbdzkl (mgr.14184) 286 : cluster [DBG] pgmap v256: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:07.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:07 smithi100 bash[20091]: cluster 2024-01-13T07:46:05.617786+0000 mgr.smithi039.fbdzkl (mgr.14184) 286 : cluster [DBG] pgmap v256: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:08.408 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:46:08.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:08 smithi039 bash[16208]: audit 2024-01-13T07:46:08.407538+0000 mon.smithi039 (mon.0) 521 : audit [DBG] from='client.? 172.21.15.39:0/282557713' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:46:08.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:08 smithi100 bash[20091]: audit 2024-01-13T07:46:08.407538+0000 mon.smithi039 (mon.0) 521 : audit [DBG] from='client.? 172.21.15.39:0/282557713' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:46:09.049 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":33,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:46:09.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:09 smithi039 bash[16208]: cluster 2024-01-13T07:46:07.618962+0000 mgr.smithi039.fbdzkl (mgr.14184) 287 : cluster [DBG] pgmap v257: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:09.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:09 smithi100 bash[20091]: cluster 2024-01-13T07:46:07.618962+0000 mgr.smithi039.fbdzkl (mgr.14184) 287 : cluster [DBG] pgmap v257: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:10.051 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:46:11.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:10 smithi100 bash[20091]: cluster 2024-01-13T07:46:09.620131+0000 mgr.smithi039.fbdzkl (mgr.14184) 288 : cluster [DBG] pgmap v258: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:11.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:10 smithi039 bash[16208]: cluster 2024-01-13T07:46:09.620131+0000 mgr.smithi039.fbdzkl (mgr.14184) 288 : cluster [DBG] pgmap v258: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:12.948 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:46:13.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:12 smithi100 bash[20091]: cluster 2024-01-13T07:46:11.621287+0000 mgr.smithi039.fbdzkl (mgr.14184) 289 : cluster [DBG] pgmap v259: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:13.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:12 smithi039 bash[16208]: cluster 2024-01-13T07:46:11.621287+0000 mgr.smithi039.fbdzkl (mgr.14184) 289 : cluster [DBG] pgmap v259: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:13.548 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":33,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:46:14.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:13 smithi100 bash[20091]: audit 2024-01-13T07:46:12.947951+0000 mon.smithi039 (mon.0) 522 : audit [DBG] from='client.? 172.21.15.39:0/1261480400' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:46:14.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:13 smithi039 bash[16208]: audit 2024-01-13T07:46:12.947951+0000 mon.smithi039 (mon.0) 522 : audit [DBG] from='client.? 172.21.15.39:0/1261480400' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:46:14.549 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:46:15.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:14 smithi039 bash[16208]: cluster 2024-01-13T07:46:13.622419+0000 mgr.smithi039.fbdzkl (mgr.14184) 290 : cluster [DBG] pgmap v260: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:15.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:14 smithi100 bash[20091]: cluster 2024-01-13T07:46:13.622419+0000 mgr.smithi039.fbdzkl (mgr.14184) 290 : cluster [DBG] pgmap v260: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:16.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:15 smithi039 bash[16208]: audit 2024-01-13T07:46:15.596758+0000 mon.smithi039 (mon.0) 523 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:46:16.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:15 smithi039 bash[16208]: audit 2024-01-13T07:46:15.908504+0000 mon.smithi039 (mon.0) 524 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:46:16.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:15 smithi039 bash[16208]: audit 2024-01-13T07:46:15.909602+0000 mon.smithi039 (mon.0) 525 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-13T07:46:16.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:15 smithi039 bash[16208]: audit 2024-01-13T07:46:15.917350+0000 mon.smithi039 (mon.0) 526 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:46:16.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:15 smithi100 bash[20091]: audit 2024-01-13T07:46:15.596758+0000 mon.smithi039 (mon.0) 523 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:46:16.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:15 smithi100 bash[20091]: audit 2024-01-13T07:46:15.908504+0000 mon.smithi039 (mon.0) 524 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:46:16.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:15 smithi100 bash[20091]: audit 2024-01-13T07:46:15.909602+0000 mon.smithi039 (mon.0) 525 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-13T07:46:16.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:15 smithi100 bash[20091]: audit 2024-01-13T07:46:15.917350+0000 mon.smithi039 (mon.0) 526 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:46:17.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:16 smithi039 bash[16208]: cluster 2024-01-13T07:46:15.623481+0000 mgr.smithi039.fbdzkl (mgr.14184) 291 : cluster [DBG] pgmap v261: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:17.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:16 smithi039 bash[16208]: cluster 2024-01-13T07:46:15.917871+0000 mgr.smithi039.fbdzkl (mgr.14184) 292 : cluster [DBG] pgmap v262: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:17.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:16 smithi039 bash[16208]: cluster 2024-01-13T07:46:15.918454+0000 mon.smithi039 (mon.0) 527 : cluster [INF] Health check cleared: CEPHADM_APPLY_SPEC_FAIL (was: Failed to apply 1 service(s): osd.all-available-devices) 2024-01-13T07:46:17.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:16 smithi039 bash[16208]: cluster 2024-01-13T07:46:15.918484+0000 mon.smithi039 (mon.0) 528 : cluster [INF] Cluster is now healthy 2024-01-13T07:46:17.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:16 smithi039 bash[16208]: audit 2024-01-13T07:46:15.925643+0000 mon.smithi039 (mon.0) 529 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-13T07:46:17.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:16 smithi039 bash[16208]: audit 2024-01-13T07:46:15.931775+0000 mon.smithi039 (mon.0) 530 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:46:17.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:16 smithi039 bash[16208]: audit 2024-01-13T07:46:15.934609+0000 mon.smithi039 (mon.0) 531 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:46:17.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:16 smithi039 bash[16208]: audit 2024-01-13T07:46:15.934795+0000 mon.smithi039 (mon.0) 532 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:46:17.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:16 smithi039 bash[16208]: audit 2024-01-13T07:46:15.935491+0000 mon.smithi039 (mon.0) 533 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:46:17.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:16 smithi100 bash[20091]: cluster 2024-01-13T07:46:15.623481+0000 mgr.smithi039.fbdzkl (mgr.14184) 291 : cluster [DBG] pgmap v261: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:17.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:16 smithi100 bash[20091]: cluster 2024-01-13T07:46:15.917871+0000 mgr.smithi039.fbdzkl (mgr.14184) 292 : cluster [DBG] pgmap v262: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:17.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:16 smithi100 bash[20091]: cluster 2024-01-13T07:46:15.918454+0000 mon.smithi039 (mon.0) 527 : cluster [INF] Health check cleared: CEPHADM_APPLY_SPEC_FAIL (was: Failed to apply 1 service(s): osd.all-available-devices) 2024-01-13T07:46:17.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:16 smithi100 bash[20091]: cluster 2024-01-13T07:46:15.918484+0000 mon.smithi039 (mon.0) 528 : cluster [INF] Cluster is now healthy 2024-01-13T07:46:17.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:16 smithi100 bash[20091]: audit 2024-01-13T07:46:15.925643+0000 mon.smithi039 (mon.0) 529 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-13T07:46:17.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:16 smithi100 bash[20091]: audit 2024-01-13T07:46:15.931775+0000 mon.smithi039 (mon.0) 530 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:46:17.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:16 smithi100 bash[20091]: audit 2024-01-13T07:46:15.934609+0000 mon.smithi039 (mon.0) 531 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:46:17.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:16 smithi100 bash[20091]: audit 2024-01-13T07:46:15.934795+0000 mon.smithi039 (mon.0) 532 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:46:17.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:16 smithi100 bash[20091]: audit 2024-01-13T07:46:15.935491+0000 mon.smithi039 (mon.0) 533 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:46:17.502 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:46:18.119 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":33,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:46:18.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:17 smithi039 bash[16208]: audit 2024-01-13T07:46:17.502102+0000 mon.smithi039 (mon.0) 534 : audit [DBG] from='client.? 172.21.15.39:0/4215698238' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:46:18.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:17 smithi100 bash[20091]: audit 2024-01-13T07:46:17.502102+0000 mon.smithi039 (mon.0) 534 : audit [DBG] from='client.? 172.21.15.39:0/4215698238' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:46:19.121 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:46:19.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:18 smithi100 bash[20091]: cluster 2024-01-13T07:46:17.918274+0000 mgr.smithi039.fbdzkl (mgr.14184) 293 : cluster [DBG] pgmap v263: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:19.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:18 smithi039 bash[16208]: cluster 2024-01-13T07:46:17.918274+0000 mgr.smithi039.fbdzkl (mgr.14184) 293 : cluster [DBG] pgmap v263: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:21.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:20 smithi039 bash[16208]: cluster 2024-01-13T07:46:19.918804+0000 mgr.smithi039.fbdzkl (mgr.14184) 294 : cluster [DBG] pgmap v264: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:21.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:20 smithi100 bash[20091]: cluster 2024-01-13T07:46:19.918804+0000 mgr.smithi039.fbdzkl (mgr.14184) 294 : cluster [DBG] pgmap v264: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:22.458 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:46:23.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:22 smithi100 bash[20091]: cluster 2024-01-13T07:46:21.919341+0000 mgr.smithi039.fbdzkl (mgr.14184) 295 : cluster [DBG] pgmap v265: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:23.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:22 smithi100 bash[20091]: audit 2024-01-13T07:46:22.457545+0000 mon.smithi039 (mon.0) 535 : audit [DBG] from='client.? 172.21.15.39:0/1112129811' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:46:23.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:22 smithi039 bash[16208]: cluster 2024-01-13T07:46:21.919341+0000 mgr.smithi039.fbdzkl (mgr.14184) 295 : cluster [DBG] pgmap v265: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:23.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:22 smithi039 bash[16208]: audit 2024-01-13T07:46:22.457545+0000 mon.smithi039 (mon.0) 535 : audit [DBG] from='client.? 172.21.15.39:0/1112129811' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:46:23.361 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":33,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:46:24.362 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:46:25.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:24 smithi039 bash[16208]: cluster 2024-01-13T07:46:23.919834+0000 mgr.smithi039.fbdzkl (mgr.14184) 296 : cluster [DBG] pgmap v266: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:25.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:24 smithi039 bash[16208]: audit 2024-01-13T07:46:24.350981+0000 mon.smithi039 (mon.0) 536 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ca193869-9ca5-4cee-b305-f6dc5e741164"}]: dispatch 2024-01-13T07:46:25.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:24 smithi039 bash[16208]: audit 2024-01-13T07:46:24.351585+0000 mon.smithi100 (mon.1) 16 : audit [INF] from='client.? 172.21.15.100:0/2887531893' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ca193869-9ca5-4cee-b305-f6dc5e741164"}]: dispatch 2024-01-13T07:46:25.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:24 smithi039 bash[16208]: audit 2024-01-13T07:46:24.360498+0000 mon.smithi039 (mon.0) 537 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ca193869-9ca5-4cee-b305-f6dc5e741164"}]': finished 2024-01-13T07:46:25.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:24 smithi039 bash[16208]: cluster 2024-01-13T07:46:24.360671+0000 mon.smithi039 (mon.0) 538 : cluster [DBG] osdmap e34: 1 total, 0 up, 1 in 2024-01-13T07:46:25.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:24 smithi039 bash[16208]: audit 2024-01-13T07:46:24.360933+0000 mon.smithi039 (mon.0) 539 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:46:25.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:24 smithi039 bash[16208]: audit 2024-01-13T07:46:24.717180+0000 mon.smithi039 (mon.0) 540 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:46:25.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:24 smithi039 bash[16208]: audit 2024-01-13T07:46:24.717742+0000 mon.smithi100 (mon.1) 17 : audit [INF] from='client.? 172.21.15.100:0/839680720' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:46:25.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:24 smithi039 bash[16208]: audit 2024-01-13T07:46:24.727063+0000 mon.smithi039 (mon.0) 541 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:46:25.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:24 smithi039 bash[16208]: cluster 2024-01-13T07:46:24.727233+0000 mon.smithi039 (mon.0) 542 : cluster [DBG] osdmap e35: 0 total, 0 up, 0 in 2024-01-13T07:46:25.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:24 smithi100 bash[20091]: cluster 2024-01-13T07:46:23.919834+0000 mgr.smithi039.fbdzkl (mgr.14184) 296 : cluster [DBG] pgmap v266: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:25.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:24 smithi100 bash[20091]: audit 2024-01-13T07:46:24.350981+0000 mon.smithi039 (mon.0) 536 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ca193869-9ca5-4cee-b305-f6dc5e741164"}]: dispatch 2024-01-13T07:46:25.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:24 smithi100 bash[20091]: audit 2024-01-13T07:46:24.351585+0000 mon.smithi100 (mon.1) 16 : audit [INF] from='client.? 172.21.15.100:0/2887531893' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ca193869-9ca5-4cee-b305-f6dc5e741164"}]: dispatch 2024-01-13T07:46:25.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:24 smithi100 bash[20091]: audit 2024-01-13T07:46:24.360498+0000 mon.smithi039 (mon.0) 537 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ca193869-9ca5-4cee-b305-f6dc5e741164"}]': finished 2024-01-13T07:46:25.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:24 smithi100 bash[20091]: cluster 2024-01-13T07:46:24.360671+0000 mon.smithi039 (mon.0) 538 : cluster [DBG] osdmap e34: 1 total, 0 up, 1 in 2024-01-13T07:46:25.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:24 smithi100 bash[20091]: audit 2024-01-13T07:46:24.360933+0000 mon.smithi039 (mon.0) 539 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:46:25.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:24 smithi100 bash[20091]: audit 2024-01-13T07:46:24.717180+0000 mon.smithi039 (mon.0) 540 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:46:25.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:24 smithi100 bash[20091]: audit 2024-01-13T07:46:24.717742+0000 mon.smithi100 (mon.1) 17 : audit [INF] from='client.? 172.21.15.100:0/839680720' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:46:25.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:24 smithi100 bash[20091]: audit 2024-01-13T07:46:24.727063+0000 mon.smithi039 (mon.0) 541 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:46:25.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:24 smithi100 bash[20091]: cluster 2024-01-13T07:46:24.727233+0000 mon.smithi039 (mon.0) 542 : cluster [DBG] osdmap e35: 0 total, 0 up, 0 in 2024-01-13T07:46:26.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: audit 2024-01-13T07:46:25.330523+0000 mon.smithi039 (mon.0) 543 : audit [INF] from='client.? 172.21.15.39:0/700185789' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "771a9b6e-c284-45d4-b90f-62e29101720e"}]: dispatch 2024-01-13T07:46:26.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: audit 2024-01-13T07:46:25.336171+0000 mon.smithi039 (mon.0) 544 : audit [INF] from='client.? 172.21.15.39:0/700185789' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "771a9b6e-c284-45d4-b90f-62e29101720e"}]': finished 2024-01-13T07:46:26.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: cluster 2024-01-13T07:46:25.336226+0000 mon.smithi039 (mon.0) 545 : cluster [DBG] osdmap e36: 1 total, 0 up, 1 in 2024-01-13T07:46:26.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: audit 2024-01-13T07:46:25.336326+0000 mon.smithi039 (mon.0) 546 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:46:26.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: cephadm 2024-01-13T07:46:25.465320+0000 mgr.smithi039.fbdzkl (mgr.14184) 297 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:46:26.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:46:26.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:46:26.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:46:26.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:46:26.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:46:26.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:46:26.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:46:26.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:46:26.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpwm4axswj:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpzryreefc:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:46:26.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:46:26.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:46:26.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:46:26.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new ca193869-9ca5-4cee-b305-f6dc5e741164 2024-01-13T07:46:26.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:46:26.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:46:26.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:46:26.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:46:26.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:46:26.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:46:26.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:26.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:26.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:46:26.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:46:26.495 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:46:26.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:46:26.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:46:26.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:46:26.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:46:26.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:46:26.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:46:26.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:46:26.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:46:26.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:46:26.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:46:26.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:46:26.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:46:26.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:46:26.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:46:26.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:46:26.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:46:26.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:46:26.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:46:26.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:25 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:46:26.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:46:26.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:46:26.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:46:26.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:26.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:26.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:46:26.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:46:26.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:46:26.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:46:26.497 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:26.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:26.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:46:26.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:46:26.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:46:26.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:46:26.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:46:26.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:46:26.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:46:26.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:46:26.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:26.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:26.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:46:26.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:46:26.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:46:26.498 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:46:26.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:46:26.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:46:26.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:46:26.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: main() 2024-01-13T07:46:26.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:46:26.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:46:26.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:46:26.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:46:26.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:46:26.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:46:26.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:46:26.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:46:26.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:46:26.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:46:26.499 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:46:26.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:46:26.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:46:26.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:46:26.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpwm4axswj:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpzryreefc:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:46:26.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: audit 2024-01-13T07:46:25.712501+0000 mon.smithi039 (mon.0) 547 : audit [INF] from='client.? 172.21.15.39:0/557888230' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:46:26.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: audit 2024-01-13T07:46:25.718855+0000 mon.smithi039 (mon.0) 548 : audit [INF] from='client.? 172.21.15.39:0/557888230' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:46:26.500 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:26 smithi039 bash[16208]: cluster 2024-01-13T07:46:25.718977+0000 mon.smithi039 (mon.0) 549 : cluster [DBG] osdmap e37: 0 total, 0 up, 0 in 2024-01-13T07:46:26.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: audit 2024-01-13T07:46:25.330523+0000 mon.smithi039 (mon.0) 543 : audit [INF] from='client.? 172.21.15.39:0/700185789' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "771a9b6e-c284-45d4-b90f-62e29101720e"}]: dispatch 2024-01-13T07:46:26.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: audit 2024-01-13T07:46:25.336171+0000 mon.smithi039 (mon.0) 544 : audit [INF] from='client.? 172.21.15.39:0/700185789' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "771a9b6e-c284-45d4-b90f-62e29101720e"}]': finished 2024-01-13T07:46:26.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: cluster 2024-01-13T07:46:25.336226+0000 mon.smithi039 (mon.0) 545 : cluster [DBG] osdmap e36: 1 total, 0 up, 1 in 2024-01-13T07:46:26.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: audit 2024-01-13T07:46:25.336326+0000 mon.smithi039 (mon.0) 546 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:46:26.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: cephadm 2024-01-13T07:46:25.465320+0000 mgr.smithi039.fbdzkl (mgr.14184) 297 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:46:26.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:46:26.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:46:26.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:46:26.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:46:26.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:46:26.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:46:26.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:46:26.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:46:26.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpwm4axswj:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpzryreefc:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:46:26.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:46:26.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:46:26.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:46:26.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new ca193869-9ca5-4cee-b305-f6dc5e741164 2024-01-13T07:46:26.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:46:26.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:46:26.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:46:26.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:46:26.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:46:26.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:46:26.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:26.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:26.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:46:26.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:46:26.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:46:26.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:46:26.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:46:26.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:46:26.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:46:26.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:46:26.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:46:26.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:46:26.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:46:26.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:46:26.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:46:26.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:46:26.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:46:26.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:46:26.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:46:26.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:46:26.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:46:26.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:46:26.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:46:26.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:46:26.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:46:26.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:46:26.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:46:26.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:26.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:26.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:46:26.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:46:26.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:46:26.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:46:26.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:26.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:26.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:46:26.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:46:26.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:46:26.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:46:26.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:46:26.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:46:26.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:46:26.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:46:26.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:26.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:26.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:46:26.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:46:26.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:46:26.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:46:26.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:46:26.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:46:26.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:46:26.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: main() 2024-01-13T07:46:26.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:46:26.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:46:26.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:46:26.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:46:26.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:46:26.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:46:26.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:46:26.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:46:26.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:46:26.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:46:26.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:46:26.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:46:26.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:46:26.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:46:26.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpwm4axswj:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpzryreefc:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:46:26.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: audit 2024-01-13T07:46:25.712501+0000 mon.smithi039 (mon.0) 547 : audit [INF] from='client.? 172.21.15.39:0/557888230' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:46:26.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: audit 2024-01-13T07:46:25.718855+0000 mon.smithi039 (mon.0) 548 : audit [INF] from='client.? 172.21.15.39:0/557888230' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:46:26.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:26 smithi100 bash[20091]: cluster 2024-01-13T07:46:25.718977+0000 mon.smithi039 (mon.0) 549 : cluster [DBG] osdmap e37: 0 total, 0 up, 0 in 2024-01-13T07:46:27.380 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:27 smithi039 bash[16208]: cluster 2024-01-13T07:46:25.920238+0000 mgr.smithi039.fbdzkl (mgr.14184) 298 : cluster [DBG] pgmap v271: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:27.380 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:27 smithi039 bash[16208]: cluster 2024-01-13T07:46:26.714948+0000 mon.smithi039 (mon.0) 550 : cluster [WRN] Health check failed: Failed to apply 1 service(s): osd.all-available-devices (CEPHADM_APPLY_SPEC_FAIL) 2024-01-13T07:46:27.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:27 smithi100 bash[20091]: cluster 2024-01-13T07:46:25.920238+0000 mgr.smithi039.fbdzkl (mgr.14184) 298 : cluster [DBG] pgmap v271: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:27.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:27 smithi100 bash[20091]: cluster 2024-01-13T07:46:26.714948+0000 mon.smithi039 (mon.0) 550 : cluster [WRN] Health check failed: Failed to apply 1 service(s): osd.all-available-devices (CEPHADM_APPLY_SPEC_FAIL) 2024-01-13T07:46:27.786 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:46:28.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: cephadm 2024-01-13T07:46:26.627738+0000 mgr.smithi039.fbdzkl (mgr.14184) 299 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:46:28.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:46:28.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:46:28.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:46:28.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:46:28.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:46:28.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:46:28.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:46:28.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi039/config 2024-01-13T07:46:28.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp7v420ihj:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp0bwgemp1:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:46:28.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:46:28.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:46:28.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:46:28.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new 771a9b6e-c284-45d4-b90f-62e29101720e 2024-01-13T07:46:28.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:46:28.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:46:28.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:46:28.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:46:28.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:46:28.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:46:28.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:28.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:28.245 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:46:28.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:46:28.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:46:28.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:46:28.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:46:28.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:46:28.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:46:28.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:46:28.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:46:28.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:46:28.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:46:28.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:46:28.246 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:46:28.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:46:28.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:46:28.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:46:28.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:46:28.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:46:28.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:46:28.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:46:28.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:46:28.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:46:28.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:46:28.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:46:28.247 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:46:28.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:28.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:28.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:46:28.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:46:28.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:46:28.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:46:28.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:28.248 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:28.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:46:28.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:46:28.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:46:28.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:46:28.250 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:46:28.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:46:28.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:46:28.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:46:28.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:28.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:28.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:46:28.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:46:28.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:46:28.251 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:46:28.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:46:28.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:46:28.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:46:28.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: main() 2024-01-13T07:46:28.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:46:28.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:46:28.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:46:28.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:46:28.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:46:28.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:46:28.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:46:28.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:46:28.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:46:28.252 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:46:28.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:46:28.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:46:28.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:46:28.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:46:28.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp7v420ihj:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp0bwgemp1:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:46:28.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: cephadm 2024-01-13T07:46:26.629555+0000 mgr.smithi039.fbdzkl (mgr.14184) 300 : cephadm [ERR] Failed to apply osd.all-available-devices spec DriveGroupSpec.from_json(yaml.safe_load('''service_type: osd 2024-01-13T07:46:28.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: service_id: all-available-devices 2024-01-13T07:46:28.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: service_name: osd.all-available-devices 2024-01-13T07:46:28.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: placement: 2024-01-13T07:46:28.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: host_pattern: '*' 2024-01-13T07:46:28.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: spec: 2024-01-13T07:46:28.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: data_devices: 2024-01-13T07:46:28.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: all: true 2024-01-13T07:46:28.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: filter_logic: AND 2024-01-13T07:46:28.253 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: objectstore: bluestore 2024-01-13T07:46:28.254 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: ''')): cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:46:28.254 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpwm4axswj:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpzryreefc:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:46:28.254 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:46:28.254 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:46:28.254 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:46:28.254 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new ca193869-9ca5-4cee-b305-f6dc5e741164 2024-01-13T07:46:28.254 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:46:28.254 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:46:28.254 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:46:28.254 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:46:28.254 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:46:28.254 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:46:28.254 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:28.254 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:28.254 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:46:28.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:46:28.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:46:28.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:46:28.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:46:28.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:46:28.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:46:28.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:46:28.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:46:28.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:46:28.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:46:28.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:46:28.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:46:28.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:46:28.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:46:28.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:46:28.255 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:46:28.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:46:28.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:46:28.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:46:28.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:46:28.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:46:28.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:46:28.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:46:28.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:46:28.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:28.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:28.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:46:28.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:46:28.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:46:28.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:46:28.256 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:28.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:28.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:46:28.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:46:28.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:46:28.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:46:28.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:46:28.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:46:28.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:46:28.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:46:28.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:28.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:28.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:46:28.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:46:28.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:46:28.257 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:46:28.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:46:28.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:46:28.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:46:28.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: main() 2024-01-13T07:46:28.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:46:28.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:46:28.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:46:28.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:46:28.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:46:28.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:46:28.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:46:28.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:46:28.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:46:28.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:46:28.258 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:46:28.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:46:28.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:46:28.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:46:28.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpwm4axswj:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpzryreefc:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:46:28.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:46:28.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 521, in _apply_all_services 2024-01-13T07:46:28.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: if self._apply_service(spec): 2024-01-13T07:46:28.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 595, in _apply_service 2024-01-13T07:46:28.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: self.mgr.osd_service.create_from_spec(cast(DriveGroupSpec, spec)) 2024-01-13T07:46:28.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 73, in create_from_spec 2024-01-13T07:46:28.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: ret = create_from_spec_one(self.prepare_drivegroup(drive_group)) 2024-01-13T07:46:28.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 83, in forall_hosts_wrapper 2024-01-13T07:46:28.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: return CephadmOrchestrator.instance._worker_pool.map(do_work, vals) 2024-01-13T07:46:28.259 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 266, in map 2024-01-13T07:46:28.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: return self._map_async(func, iterable, mapstar, chunksize).get() 2024-01-13T07:46:28.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 644, in get 2024-01-13T07:46:28.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: raise self._value 2024-01-13T07:46:28.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 119, in worker 2024-01-13T07:46:28.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: result = (True, func(*args, **kwds)) 2024-01-13T07:46:28.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 44, in mapstar 2024-01-13T07:46:28.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: return list(map(*args)) 2024-01-13T07:46:28.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:46:28.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:46:28.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:46:28.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:46:28.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:46:28.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:46:28.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:46:28.260 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpwm4axswj:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpzryreefc:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:46:28.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:46:28.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:46:28.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:46:28.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new ca193869-9ca5-4cee-b305-f6dc5e741164 2024-01-13T07:46:28.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:46:28.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:46:28.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:46:28.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:46:28.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:46:28.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:46:28.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:28.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:28.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:46:28.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:46:28.261 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:46:28.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:46:28.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:46:28.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:46:28.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:46:28.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:46:28.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:46:28.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:46:28.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:46:28.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:46:28.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:46:28.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:46:28.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:46:28.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:46:28.262 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:46:28.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:46:28.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:46:28.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:46:28.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:46:28.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:46:28.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:46:28.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:46:28.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:46:28.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:28.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:28.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:46:28.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:46:28.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:46:28.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:46:28.263 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:28.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:28.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:46:28.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:46:28.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:46:28.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:46:28.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:46:28.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:46:28.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:46:28.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:46:28.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:28.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:28.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:46:28.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:46:28.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:46:28.264 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:46:28.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:46:28.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:46:28.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:46:28.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: main() 2024-01-13T07:46:28.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:46:28.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:46:28.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:46:28.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:46:28.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:46:28.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:46:28.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:46:28.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:46:28.265 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:46:28.266 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:46:28.266 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:46:28.266 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:46:28.266 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:46:28.266 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:46:28.266 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpwm4axswj:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpzryreefc:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:46:28.266 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: cluster 2024-01-13T07:46:26.630384+0000 mgr.smithi039.fbdzkl (mgr.14184) 301 : cluster [DBG] pgmap v272: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:28.266 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:28 smithi039 bash[16208]: audit 2024-01-13T07:46:27.785605+0000 mon.smithi039 (mon.0) 551 : audit [DBG] from='client.? 172.21.15.39:0/1117072143' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:46:28.407 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":37,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:46:28.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: cephadm 2024-01-13T07:46:26.627738+0000 mgr.smithi039.fbdzkl (mgr.14184) 299 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:46:28.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:46:28.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:46:28.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:46:28.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:46:28.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:46:28.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:46:28.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:46:28.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi039/config 2024-01-13T07:46:28.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp7v420ihj:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp0bwgemp1:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:46:28.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:46:28.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:46:28.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:46:28.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new 771a9b6e-c284-45d4-b90f-62e29101720e 2024-01-13T07:46:28.494 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:46:28.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:46:28.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:46:28.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:46:28.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:46:28.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:46:28.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:28.496 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:28.496 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:46:28.496 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:46:28.496 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:46:28.496 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:46:28.496 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:46:28.496 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:46:28.496 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:46:28.496 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:46:28.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:46:28.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:46:28.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:46:28.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:46:28.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:46:28.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:46:28.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:46:28.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:46:28.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:46:28.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:46:28.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:46:28.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:46:28.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:46:28.497 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:46:28.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:46:28.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:46:28.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:46:28.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:28.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:28.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:46:28.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:46:28.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:46:28.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:46:28.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:28.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:28.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:46:28.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:46:28.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:46:28.498 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:46:28.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:46:28.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:46:28.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:46:28.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:46:28.499 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:28.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:28.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:46:28.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:46:28.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:46:28.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:46:28.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:46:28.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:46:28.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:46:28.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: main() 2024-01-13T07:46:28.500 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:46:28.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:46:28.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:46:28.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:46:28.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:46:28.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:46:28.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:46:28.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:46:28.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:46:28.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:46:28.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:46:28.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:46:28.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:46:28.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:46:28.501 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmp7v420ihj:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp0bwgemp1:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:46:28.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: cephadm 2024-01-13T07:46:26.629555+0000 mgr.smithi039.fbdzkl (mgr.14184) 300 : cephadm [ERR] Failed to apply osd.all-available-devices spec DriveGroupSpec.from_json(yaml.safe_load('''service_type: osd 2024-01-13T07:46:28.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: service_id: all-available-devices 2024-01-13T07:46:28.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: service_name: osd.all-available-devices 2024-01-13T07:46:28.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: placement: 2024-01-13T07:46:28.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: host_pattern: '*' 2024-01-13T07:46:28.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: spec: 2024-01-13T07:46:28.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: data_devices: 2024-01-13T07:46:28.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: all: true 2024-01-13T07:46:28.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: filter_logic: AND 2024-01-13T07:46:28.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: objectstore: bluestore 2024-01-13T07:46:28.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: ''')): cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:46:28.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpwm4axswj:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpzryreefc:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:46:28.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:46:28.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:46:28.502 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:46:28.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new ca193869-9ca5-4cee-b305-f6dc5e741164 2024-01-13T07:46:28.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:46:28.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:46:28.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:46:28.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:46:28.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:46:28.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:46:28.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:28.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:28.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:46:28.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:46:28.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:46:28.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:46:28.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:46:28.503 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:46:28.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:46:28.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:46:28.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:46:28.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:46:28.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:46:28.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:46:28.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:46:28.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:46:28.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:46:28.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:46:28.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:46:28.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:46:28.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:46:28.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:46:28.504 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:46:28.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:46:28.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:46:28.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:46:28.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:46:28.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:28.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:28.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:46:28.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:46:28.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:46:28.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:46:28.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:28.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:28.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:46:28.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:46:28.505 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:46:28.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:46:28.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:46:28.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:46:28.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:46:28.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:46:28.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:28.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:28.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:46:28.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:46:28.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:46:28.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:46:28.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:46:28.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:46:28.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:46:28.506 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: main() 2024-01-13T07:46:28.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:46:28.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:46:28.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:46:28.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:46:28.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:46:28.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:46:28.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:46:28.507 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:46:28.508 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:46:28.508 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:46:28.508 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:46:28.508 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:46:28.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:46:28.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:46:28.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpwm4axswj:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpzryreefc:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:46:28.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:46:28.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 521, in _apply_all_services 2024-01-13T07:46:28.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: if self._apply_service(spec): 2024-01-13T07:46:28.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 595, in _apply_service 2024-01-13T07:46:28.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: self.mgr.osd_service.create_from_spec(cast(DriveGroupSpec, spec)) 2024-01-13T07:46:28.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 73, in create_from_spec 2024-01-13T07:46:28.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: ret = create_from_spec_one(self.prepare_drivegroup(drive_group)) 2024-01-13T07:46:28.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 83, in forall_hosts_wrapper 2024-01-13T07:46:28.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: return CephadmOrchestrator.instance._worker_pool.map(do_work, vals) 2024-01-13T07:46:28.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 266, in map 2024-01-13T07:46:28.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: return self._map_async(func, iterable, mapstar, chunksize).get() 2024-01-13T07:46:28.509 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 644, in get 2024-01-13T07:46:28.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: raise self._value 2024-01-13T07:46:28.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 119, in worker 2024-01-13T07:46:28.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: result = (True, func(*args, **kwds)) 2024-01-13T07:46:28.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 44, in mapstar 2024-01-13T07:46:28.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: return list(map(*args)) 2024-01-13T07:46:28.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:46:28.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:46:28.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:46:28.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:46:28.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:46:28.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:46:28.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:46:28.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpwm4axswj:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpzryreefc:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:46:28.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:46:28.510 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:46:28.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:46:28.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new ca193869-9ca5-4cee-b305-f6dc5e741164 2024-01-13T07:46:28.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:46:28.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:46:28.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:46:28.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:46:28.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:46:28.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:46:28.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:28.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:28.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:46:28.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:46:28.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:46:28.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:46:28.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:46:28.511 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:46:28.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:46:28.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:46:28.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:46:28.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:46:28.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:46:28.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:46:28.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:46:28.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:46:28.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:46:28.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:46:28.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:46:28.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:46:28.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:46:28.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:46:28.512 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:46:28.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:46:28.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:46:28.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:46:28.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:46:28.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:28.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:28.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:46:28.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:46:28.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:46:28.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:46:28.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:28.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:28.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:46:28.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:46:28.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:46:28.513 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:46:28.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:46:28.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:46:28.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:46:28.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:46:28.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:46:28.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:46:28.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:46:28.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:46:28.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:46:28.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:46:28.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:46:28.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:46:28.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:46:28.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: main() 2024-01-13T07:46:28.514 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:46:28.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:46:28.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:46:28.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:46:28.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:46:28.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:46:28.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:46:28.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:46:28.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:46:28.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:46:28.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:46:28.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:46:28.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:46:28.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:46:28.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpwm4axswj:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpzryreefc:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:46:28.515 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: cluster 2024-01-13T07:46:26.630384+0000 mgr.smithi039.fbdzkl (mgr.14184) 301 : cluster [DBG] pgmap v272: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:28.516 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:28 smithi100 bash[20091]: audit 2024-01-13T07:46:27.785605+0000 mon.smithi039 (mon.0) 551 : audit [DBG] from='client.? 172.21.15.39:0/1117072143' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:46:29.408 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:46:30.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:30 smithi039 bash[16208]: cluster 2024-01-13T07:46:28.631474+0000 mgr.smithi039.fbdzkl (mgr.14184) 302 : cluster [DBG] pgmap v273: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:30.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:30 smithi100 bash[20091]: cluster 2024-01-13T07:46:28.631474+0000 mgr.smithi039.fbdzkl (mgr.14184) 302 : cluster [DBG] pgmap v273: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:32.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:32 smithi039 bash[16208]: cluster 2024-01-13T07:46:30.632474+0000 mgr.smithi039.fbdzkl (mgr.14184) 303 : cluster [DBG] pgmap v274: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:32.401 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:46:32.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:32 smithi100 bash[20091]: cluster 2024-01-13T07:46:30.632474+0000 mgr.smithi039.fbdzkl (mgr.14184) 303 : cluster [DBG] pgmap v274: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:33.066 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":37,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:46:33.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:33 smithi039 bash[16208]: audit 2024-01-13T07:46:32.400372+0000 mon.smithi039 (mon.0) 552 : audit [DBG] from='client.? 172.21.15.39:0/265196901' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:46:33.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:33 smithi100 bash[20091]: audit 2024-01-13T07:46:32.400372+0000 mon.smithi039 (mon.0) 552 : audit [DBG] from='client.? 172.21.15.39:0/265196901' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:46:34.067 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:46:34.369 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:34 smithi039 bash[16208]: cluster 2024-01-13T07:46:32.633510+0000 mgr.smithi039.fbdzkl (mgr.14184) 304 : cluster [DBG] pgmap v275: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:34.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:34 smithi100 bash[20091]: cluster 2024-01-13T07:46:32.633510+0000 mgr.smithi039.fbdzkl (mgr.14184) 304 : cluster [DBG] pgmap v275: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:36.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:36 smithi039 bash[16208]: cluster 2024-01-13T07:46:34.634548+0000 mgr.smithi039.fbdzkl (mgr.14184) 305 : cluster [DBG] pgmap v276: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:36.496 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:36 smithi100 bash[20091]: cluster 2024-01-13T07:46:34.634548+0000 mgr.smithi039.fbdzkl (mgr.14184) 305 : cluster [DBG] pgmap v276: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:37.137 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:46:37.739 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":37,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:46:38.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:38 smithi039 bash[16208]: cluster 2024-01-13T07:46:36.635318+0000 mgr.smithi039.fbdzkl (mgr.14184) 306 : cluster [DBG] pgmap v277: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:38.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:38 smithi039 bash[16208]: audit 2024-01-13T07:46:37.136610+0000 mon.smithi039 (mon.0) 553 : audit [DBG] from='client.? 172.21.15.39:0/66053576' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:46:38.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:38 smithi100 bash[20091]: cluster 2024-01-13T07:46:36.635318+0000 mgr.smithi039.fbdzkl (mgr.14184) 306 : cluster [DBG] pgmap v277: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:38.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:38 smithi100 bash[20091]: audit 2024-01-13T07:46:37.136610+0000 mon.smithi039 (mon.0) 553 : audit [DBG] from='client.? 172.21.15.39:0/66053576' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:46:38.740 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:46:40.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:40 smithi039 bash[16208]: cluster 2024-01-13T07:46:38.636898+0000 mgr.smithi039.fbdzkl (mgr.14184) 307 : cluster [DBG] pgmap v278: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:40.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:40 smithi100 bash[20091]: cluster 2024-01-13T07:46:38.636898+0000 mgr.smithi039.fbdzkl (mgr.14184) 307 : cluster [DBG] pgmap v278: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:41.624 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:46:42.195 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":37,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:46:42.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:42 smithi100 bash[20091]: cluster 2024-01-13T07:46:40.637980+0000 mgr.smithi039.fbdzkl (mgr.14184) 308 : cluster [DBG] pgmap v279: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:42.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:42 smithi100 bash[20091]: audit 2024-01-13T07:46:41.624027+0000 mon.smithi039 (mon.0) 554 : audit [DBG] from='client.? 172.21.15.39:0/1848520954' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:46:42.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:42 smithi039 bash[16208]: cluster 2024-01-13T07:46:40.637980+0000 mgr.smithi039.fbdzkl (mgr.14184) 308 : cluster [DBG] pgmap v279: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:42.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:42 smithi039 bash[16208]: audit 2024-01-13T07:46:41.624027+0000 mon.smithi039 (mon.0) 554 : audit [DBG] from='client.? 172.21.15.39:0/1848520954' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:46:43.196 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:46:44.355 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:44 smithi039 bash[16208]: cluster 2024-01-13T07:46:42.639011+0000 mgr.smithi039.fbdzkl (mgr.14184) 309 : cluster [DBG] pgmap v280: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:44.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:44 smithi100 bash[20091]: cluster 2024-01-13T07:46:42.639011+0000 mgr.smithi039.fbdzkl (mgr.14184) 309 : cluster [DBG] pgmap v280: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:46.169 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:46:46.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:46 smithi039 bash[16208]: cluster 2024-01-13T07:46:44.640122+0000 mgr.smithi039.fbdzkl (mgr.14184) 310 : cluster [DBG] pgmap v281: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:46.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:46 smithi100 bash[20091]: cluster 2024-01-13T07:46:44.640122+0000 mgr.smithi039.fbdzkl (mgr.14184) 310 : cluster [DBG] pgmap v281: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:46.790 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":37,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:46:47.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:47 smithi100 bash[20091]: audit 2024-01-13T07:46:46.169009+0000 mon.smithi039 (mon.0) 555 : audit [DBG] from='client.? 172.21.15.39:0/4034649432' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:46:47.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:47 smithi039 bash[16208]: audit 2024-01-13T07:46:46.169009+0000 mon.smithi039 (mon.0) 555 : audit [DBG] from='client.? 172.21.15.39:0/4034649432' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:46:47.792 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:46:48.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:48 smithi100 bash[20091]: cluster 2024-01-13T07:46:46.641143+0000 mgr.smithi039.fbdzkl (mgr.14184) 311 : cluster [DBG] pgmap v282: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:48.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:48 smithi039 bash[16208]: cluster 2024-01-13T07:46:46.641143+0000 mgr.smithi039.fbdzkl (mgr.14184) 311 : cluster [DBG] pgmap v282: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:50.436 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:50 smithi039 bash[16208]: cluster 2024-01-13T07:46:48.641724+0000 mgr.smithi039.fbdzkl (mgr.14184) 312 : cluster [DBG] pgmap v283: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:50.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:50 smithi100 bash[20091]: cluster 2024-01-13T07:46:48.641724+0000 mgr.smithi039.fbdzkl (mgr.14184) 312 : cluster [DBG] pgmap v283: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:50.856 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:46:51.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:51 smithi039 bash[16208]: audit 2024-01-13T07:46:50.855712+0000 mon.smithi039 (mon.0) 556 : audit [DBG] from='client.? 172.21.15.39:0/1147163001' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:46:51.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:51 smithi100 bash[20091]: audit 2024-01-13T07:46:50.855712+0000 mon.smithi039 (mon.0) 556 : audit [DBG] from='client.? 172.21.15.39:0/1147163001' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:46:51.520 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":37,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:46:52.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:52 smithi039 bash[16208]: cluster 2024-01-13T07:46:50.642754+0000 mgr.smithi039.fbdzkl (mgr.14184) 313 : cluster [DBG] pgmap v284: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:52.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:52 smithi100 bash[20091]: cluster 2024-01-13T07:46:50.642754+0000 mgr.smithi039.fbdzkl (mgr.14184) 313 : cluster [DBG] pgmap v284: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:52.522 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:46:54.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:54 smithi039 bash[16208]: cluster 2024-01-13T07:46:52.643906+0000 mgr.smithi039.fbdzkl (mgr.14184) 314 : cluster [DBG] pgmap v285: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:54.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:54 smithi100 bash[20091]: cluster 2024-01-13T07:46:52.643906+0000 mgr.smithi039.fbdzkl (mgr.14184) 314 : cluster [DBG] pgmap v285: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:55.586 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:46:56.183 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":37,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:46:56.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:56 smithi100 bash[20091]: cluster 2024-01-13T07:46:54.645102+0000 mgr.smithi039.fbdzkl (mgr.14184) 315 : cluster [DBG] pgmap v286: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:56.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:56 smithi100 bash[20091]: audit 2024-01-13T07:46:55.586013+0000 mon.smithi039 (mon.0) 557 : audit [DBG] from='client.? 172.21.15.39:0/771482453' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:46:56.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:56 smithi039 bash[16208]: cluster 2024-01-13T07:46:54.645102+0000 mgr.smithi039.fbdzkl (mgr.14184) 315 : cluster [DBG] pgmap v286: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:56.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:56 smithi039 bash[16208]: audit 2024-01-13T07:46:55.586013+0000 mon.smithi039 (mon.0) 557 : audit [DBG] from='client.? 172.21.15.39:0/771482453' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:46:57.184 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:46:58.437 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:46:58 smithi039 bash[16208]: cluster 2024-01-13T07:46:56.646205+0000 mgr.smithi039.fbdzkl (mgr.14184) 316 : cluster [DBG] pgmap v287: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:46:58.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:46:58 smithi100 bash[20091]: cluster 2024-01-13T07:46:56.646205+0000 mgr.smithi039.fbdzkl (mgr.14184) 316 : cluster [DBG] pgmap v287: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:00.111 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:47:00.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:00 smithi039 bash[16208]: cluster 2024-01-13T07:46:58.646759+0000 mgr.smithi039.fbdzkl (mgr.14184) 317 : cluster [DBG] pgmap v288: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:00.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:00 smithi039 bash[16208]: audit 2024-01-13T07:47:00.110240+0000 mon.smithi039 (mon.0) 558 : audit [DBG] from='client.? 172.21.15.39:0/4006133285' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:47:00.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:00 smithi100 bash[20091]: cluster 2024-01-13T07:46:58.646759+0000 mgr.smithi039.fbdzkl (mgr.14184) 317 : cluster [DBG] pgmap v288: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:00.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:00 smithi100 bash[20091]: audit 2024-01-13T07:47:00.110240+0000 mon.smithi039 (mon.0) 558 : audit [DBG] from='client.? 172.21.15.39:0/4006133285' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:47:00.692 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":37,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:47:01.693 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:47:02.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:02 smithi100 bash[20091]: cluster 2024-01-13T07:47:00.647869+0000 mgr.smithi039.fbdzkl (mgr.14184) 318 : cluster [DBG] pgmap v289: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:02.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:02 smithi039 bash[16208]: cluster 2024-01-13T07:47:00.647869+0000 mgr.smithi039.fbdzkl (mgr.14184) 318 : cluster [DBG] pgmap v289: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:04.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:04 smithi100 bash[20091]: cluster 2024-01-13T07:47:02.648901+0000 mgr.smithi039.fbdzkl (mgr.14184) 319 : cluster [DBG] pgmap v290: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:04.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:04 smithi039 bash[16208]: cluster 2024-01-13T07:47:02.648901+0000 mgr.smithi039.fbdzkl (mgr.14184) 319 : cluster [DBG] pgmap v290: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:04.755 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:47:05.391 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":37,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:47:05.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:05 smithi039 bash[16208]: audit 2024-01-13T07:47:04.754594+0000 mon.smithi039 (mon.0) 559 : audit [DBG] from='client.? 172.21.15.39:0/1446365495' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:47:05.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:05 smithi100 bash[20091]: audit 2024-01-13T07:47:04.754594+0000 mon.smithi039 (mon.0) 559 : audit [DBG] from='client.? 172.21.15.39:0/1446365495' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:47:06.393 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:47:06.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:06 smithi039 bash[16208]: cluster 2024-01-13T07:47:04.649986+0000 mgr.smithi039.fbdzkl (mgr.14184) 320 : cluster [DBG] pgmap v291: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:06.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:06 smithi100 bash[20091]: cluster 2024-01-13T07:47:04.649986+0000 mgr.smithi039.fbdzkl (mgr.14184) 320 : cluster [DBG] pgmap v291: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:08.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:08 smithi039 bash[16208]: cluster 2024-01-13T07:47:06.651063+0000 mgr.smithi039.fbdzkl (mgr.14184) 321 : cluster [DBG] pgmap v292: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:08.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:08 smithi100 bash[20091]: cluster 2024-01-13T07:47:06.651063+0000 mgr.smithi039.fbdzkl (mgr.14184) 321 : cluster [DBG] pgmap v292: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:09.358 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:47:09.953 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":37,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:47:10.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:10 smithi039 bash[16208]: cluster 2024-01-13T07:47:08.651823+0000 mgr.smithi039.fbdzkl (mgr.14184) 322 : cluster [DBG] pgmap v293: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:10.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:10 smithi039 bash[16208]: audit 2024-01-13T07:47:09.357728+0000 mon.smithi039 (mon.0) 560 : audit [DBG] from='client.? 172.21.15.39:0/2073820245' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:47:10.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:10 smithi100 bash[20091]: cluster 2024-01-13T07:47:08.651823+0000 mgr.smithi039.fbdzkl (mgr.14184) 322 : cluster [DBG] pgmap v293: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:10.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:10 smithi100 bash[20091]: audit 2024-01-13T07:47:09.357728+0000 mon.smithi039 (mon.0) 560 : audit [DBG] from='client.? 172.21.15.39:0/2073820245' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:47:10.954 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:47:12.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:12 smithi039 bash[16208]: cluster 2024-01-13T07:47:10.652879+0000 mgr.smithi039.fbdzkl (mgr.14184) 323 : cluster [DBG] pgmap v294: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:12.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:12 smithi100 bash[20091]: cluster 2024-01-13T07:47:10.652879+0000 mgr.smithi039.fbdzkl (mgr.14184) 323 : cluster [DBG] pgmap v294: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:13.906 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:47:14.483 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":37,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:47:14.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:14 smithi039 bash[16208]: cluster 2024-01-13T07:47:12.653989+0000 mgr.smithi039.fbdzkl (mgr.14184) 324 : cluster [DBG] pgmap v295: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:14.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:14 smithi039 bash[16208]: audit 2024-01-13T07:47:13.905263+0000 mon.smithi039 (mon.0) 561 : audit [DBG] from='client.? 172.21.15.39:0/2185252880' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:47:14.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:14 smithi100 bash[20091]: cluster 2024-01-13T07:47:12.653989+0000 mgr.smithi039.fbdzkl (mgr.14184) 324 : cluster [DBG] pgmap v295: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:14.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:14 smithi100 bash[20091]: audit 2024-01-13T07:47:13.905263+0000 mon.smithi039 (mon.0) 561 : audit [DBG] from='client.? 172.21.15.39:0/2185252880' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:47:15.484 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:47:16.575 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:16 smithi039 bash[16208]: cluster 2024-01-13T07:47:14.655062+0000 mgr.smithi039.fbdzkl (mgr.14184) 325 : cluster [DBG] pgmap v296: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:16.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:16 smithi100 bash[20091]: cluster 2024-01-13T07:47:14.655062+0000 mgr.smithi039.fbdzkl (mgr.14184) 325 : cluster [DBG] pgmap v296: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:18.359 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:47:18.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:18 smithi039 bash[16208]: cluster 2024-01-13T07:47:16.656103+0000 mgr.smithi039.fbdzkl (mgr.14184) 326 : cluster [DBG] pgmap v297: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:18.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:18 smithi100 bash[20091]: cluster 2024-01-13T07:47:16.656103+0000 mgr.smithi039.fbdzkl (mgr.14184) 326 : cluster [DBG] pgmap v297: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:18.926 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":37,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:47:19.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:19 smithi039 bash[16208]: audit 2024-01-13T07:47:18.359094+0000 mon.smithi039 (mon.0) 562 : audit [DBG] from='client.? 172.21.15.39:0/3681980305' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:47:19.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:19 smithi100 bash[20091]: audit 2024-01-13T07:47:18.359094+0000 mon.smithi039 (mon.0) 562 : audit [DBG] from='client.? 172.21.15.39:0/3681980305' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:47:19.928 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:47:20.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:20 smithi039 bash[16208]: cluster 2024-01-13T07:47:18.656682+0000 mgr.smithi039.fbdzkl (mgr.14184) 327 : cluster [DBG] pgmap v298: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:20.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:20 smithi100 bash[20091]: cluster 2024-01-13T07:47:18.656682+0000 mgr.smithi039.fbdzkl (mgr.14184) 327 : cluster [DBG] pgmap v298: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:22.611 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:22 smithi039 bash[16208]: cluster 2024-01-13T07:47:20.657705+0000 mgr.smithi039.fbdzkl (mgr.14184) 328 : cluster [DBG] pgmap v299: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:22.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:22 smithi100 bash[20091]: cluster 2024-01-13T07:47:20.657705+0000 mgr.smithi039.fbdzkl (mgr.14184) 328 : cluster [DBG] pgmap v299: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:22.950 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:47:23.580 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":37,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:47:23.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:23 smithi039 bash[16208]: audit 2024-01-13T07:47:22.950105+0000 mon.smithi039 (mon.0) 563 : audit [DBG] from='client.? 172.21.15.39:0/2119156550' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:47:23.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:23 smithi100 bash[20091]: audit 2024-01-13T07:47:22.950105+0000 mon.smithi039 (mon.0) 563 : audit [DBG] from='client.? 172.21.15.39:0/2119156550' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:47:24.581 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:47:24.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:24 smithi039 bash[16208]: cluster 2024-01-13T07:47:22.658367+0000 mgr.smithi039.fbdzkl (mgr.14184) 329 : cluster [DBG] pgmap v300: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:24.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:24 smithi100 bash[20091]: cluster 2024-01-13T07:47:22.658367+0000 mgr.smithi039.fbdzkl (mgr.14184) 329 : cluster [DBG] pgmap v300: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:26.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:26 smithi039 bash[16208]: cluster 2024-01-13T07:47:24.658987+0000 mgr.smithi039.fbdzkl (mgr.14184) 330 : cluster [DBG] pgmap v301: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:26.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:26 smithi100 bash[20091]: cluster 2024-01-13T07:47:24.658987+0000 mgr.smithi039.fbdzkl (mgr.14184) 330 : cluster [DBG] pgmap v301: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:27.515 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:47:27.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:27 smithi100 bash[20091]: audit 2024-01-13T07:47:26.632410+0000 mon.smithi039 (mon.0) 564 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:47:27.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:27 smithi100 bash[20091]: audit 2024-01-13T07:47:26.923782+0000 mon.smithi039 (mon.0) 565 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:47:27.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:27 smithi100 bash[20091]: audit 2024-01-13T07:47:27.229029+0000 mon.smithi039 (mon.0) 566 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:47:27.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:27 smithi100 bash[20091]: audit 2024-01-13T07:47:27.230026+0000 mon.smithi039 (mon.0) 567 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-13T07:47:27.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:27 smithi100 bash[20091]: audit 2024-01-13T07:47:27.237016+0000 mon.smithi039 (mon.0) 568 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:47:27.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:27 smithi100 bash[20091]: audit 2024-01-13T07:47:27.244268+0000 mon.smithi039 (mon.0) 569 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-13T07:47:27.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:27 smithi100 bash[20091]: audit 2024-01-13T07:47:27.250954+0000 mon.smithi039 (mon.0) 570 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:47:27.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:27 smithi100 bash[20091]: audit 2024-01-13T07:47:27.252895+0000 mon.smithi039 (mon.0) 571 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:47:27.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:27 smithi100 bash[20091]: audit 2024-01-13T07:47:27.253460+0000 mon.smithi039 (mon.0) 572 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:47:27.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:27 smithi100 bash[20091]: audit 2024-01-13T07:47:27.254676+0000 mon.smithi039 (mon.0) 573 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:47:27.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:27 smithi039 bash[16208]: audit 2024-01-13T07:47:26.632410+0000 mon.smithi039 (mon.0) 564 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-01-13T07:47:27.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:27 smithi039 bash[16208]: audit 2024-01-13T07:47:26.923782+0000 mon.smithi039 (mon.0) 565 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:47:27.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:27 smithi039 bash[16208]: audit 2024-01-13T07:47:27.229029+0000 mon.smithi039 (mon.0) 566 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:47:27.744 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:27 smithi039 bash[16208]: audit 2024-01-13T07:47:27.230026+0000 mon.smithi039 (mon.0) 567 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-01-13T07:47:27.745 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:27 smithi039 bash[16208]: audit 2024-01-13T07:47:27.237016+0000 mon.smithi039 (mon.0) 568 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:47:27.745 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:27 smithi039 bash[16208]: audit 2024-01-13T07:47:27.244268+0000 mon.smithi039 (mon.0) 569 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-01-13T07:47:27.745 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:27 smithi039 bash[16208]: audit 2024-01-13T07:47:27.250954+0000 mon.smithi039 (mon.0) 570 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:47:27.745 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:27 smithi039 bash[16208]: audit 2024-01-13T07:47:27.252895+0000 mon.smithi039 (mon.0) 571 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-01-13T07:47:27.745 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:27 smithi039 bash[16208]: audit 2024-01-13T07:47:27.253460+0000 mon.smithi039 (mon.0) 572 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:47:27.745 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:27 smithi039 bash[16208]: audit 2024-01-13T07:47:27.254676+0000 mon.smithi039 (mon.0) 573 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-01-13T07:47:28.097 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":37,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:47:28.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:28 smithi039 bash[16208]: cluster 2024-01-13T07:47:26.659676+0000 mgr.smithi039.fbdzkl (mgr.14184) 331 : cluster [DBG] pgmap v302: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:28.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:28 smithi039 bash[16208]: cluster 2024-01-13T07:47:27.237678+0000 mgr.smithi039.fbdzkl (mgr.14184) 332 : cluster [DBG] pgmap v303: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:28.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:28 smithi039 bash[16208]: cluster 2024-01-13T07:47:27.381243+0000 mon.smithi039 (mon.0) 574 : cluster [INF] Health check cleared: CEPHADM_APPLY_SPEC_FAIL (was: Failed to apply 1 service(s): osd.all-available-devices) 2024-01-13T07:47:28.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:28 smithi039 bash[16208]: cluster 2024-01-13T07:47:27.381308+0000 mon.smithi039 (mon.0) 575 : cluster [INF] Cluster is now healthy 2024-01-13T07:47:28.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:28 smithi039 bash[16208]: audit 2024-01-13T07:47:27.514549+0000 mon.smithi039 (mon.0) 576 : audit [DBG] from='client.? 172.21.15.39:0/4278093633' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:47:28.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:28 smithi100 bash[20091]: cluster 2024-01-13T07:47:26.659676+0000 mgr.smithi039.fbdzkl (mgr.14184) 331 : cluster [DBG] pgmap v302: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:28.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:28 smithi100 bash[20091]: cluster 2024-01-13T07:47:27.237678+0000 mgr.smithi039.fbdzkl (mgr.14184) 332 : cluster [DBG] pgmap v303: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:28.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:28 smithi100 bash[20091]: cluster 2024-01-13T07:47:27.381243+0000 mon.smithi039 (mon.0) 574 : cluster [INF] Health check cleared: CEPHADM_APPLY_SPEC_FAIL (was: Failed to apply 1 service(s): osd.all-available-devices) 2024-01-13T07:47:28.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:28 smithi100 bash[20091]: cluster 2024-01-13T07:47:27.381308+0000 mon.smithi039 (mon.0) 575 : cluster [INF] Cluster is now healthy 2024-01-13T07:47:28.744 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:28 smithi100 bash[20091]: audit 2024-01-13T07:47:27.514549+0000 mon.smithi039 (mon.0) 576 : audit [DBG] from='client.? 172.21.15.39:0/4278093633' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:47:29.099 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:47:30.448 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:30 smithi039 bash[16208]: cluster 2024-01-13T07:47:29.238039+0000 mgr.smithi039.fbdzkl (mgr.14184) 333 : cluster [DBG] pgmap v304: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:30.448 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:30 smithi039 bash[16208]: audit 2024-01-13T07:47:30.370055+0000 mon.smithi039 (mon.0) 577 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:47:30.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:30 smithi100 bash[20091]: cluster 2024-01-13T07:47:29.238039+0000 mgr.smithi039.fbdzkl (mgr.14184) 333 : cluster [DBG] pgmap v304: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:30.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:30 smithi100 bash[20091]: audit 2024-01-13T07:47:30.370055+0000 mon.smithi039 (mon.0) 577 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:47:32.162 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:47:32.667 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:32 smithi039 bash[16208]: cluster 2024-01-13T07:47:31.238473+0000 mgr.smithi039.fbdzkl (mgr.14184) 334 : cluster [DBG] pgmap v305: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:32.668 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:32 smithi039 bash[16208]: audit 2024-01-13T07:47:32.161578+0000 mon.smithi039 (mon.0) 578 : audit [DBG] from='client.? 172.21.15.39:0/3433844824' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:47:32.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:32 smithi100 bash[20091]: cluster 2024-01-13T07:47:31.238473+0000 mgr.smithi039.fbdzkl (mgr.14184) 334 : cluster [DBG] pgmap v305: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:32.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:32 smithi100 bash[20091]: audit 2024-01-13T07:47:32.161578+0000 mon.smithi039 (mon.0) 578 : audit [DBG] from='client.? 172.21.15.39:0/3433844824' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:47:32.975 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":37,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:47:33.976 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:47:34.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:34 smithi100 bash[20091]: cluster 2024-01-13T07:47:33.238928+0000 mgr.smithi039.fbdzkl (mgr.14184) 335 : cluster [DBG] pgmap v306: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:34.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:34 smithi039 bash[16208]: cluster 2024-01-13T07:47:33.238928+0000 mgr.smithi039.fbdzkl (mgr.14184) 335 : cluster [DBG] pgmap v306: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:36.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:35 smithi039 bash[16208]: cluster 2024-01-13T07:47:35.239278+0000 mgr.smithi039.fbdzkl (mgr.14184) 336 : cluster [DBG] pgmap v307: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:36.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:35 smithi039 bash[16208]: audit 2024-01-13T07:47:35.782774+0000 mon.smithi039 (mon.0) 579 : audit [INF] from='client.? 172.21.15.100:0/2438424774' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9479c41e-b50e-47b8-ba56-4c8c81656257"}]: dispatch 2024-01-13T07:47:36.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:35 smithi039 bash[16208]: audit 2024-01-13T07:47:35.790904+0000 mon.smithi039 (mon.0) 580 : audit [INF] from='client.? 172.21.15.100:0/2438424774' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9479c41e-b50e-47b8-ba56-4c8c81656257"}]': finished 2024-01-13T07:47:36.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:35 smithi039 bash[16208]: cluster 2024-01-13T07:47:35.790994+0000 mon.smithi039 (mon.0) 581 : cluster [DBG] osdmap e38: 1 total, 0 up, 1 in 2024-01-13T07:47:36.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:35 smithi039 bash[16208]: audit 2024-01-13T07:47:35.791187+0000 mon.smithi039 (mon.0) 582 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:47:36.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:35 smithi100 bash[20091]: cluster 2024-01-13T07:47:35.239278+0000 mgr.smithi039.fbdzkl (mgr.14184) 336 : cluster [DBG] pgmap v307: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:36.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:35 smithi100 bash[20091]: audit 2024-01-13T07:47:35.782774+0000 mon.smithi039 (mon.0) 579 : audit [INF] from='client.? 172.21.15.100:0/2438424774' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9479c41e-b50e-47b8-ba56-4c8c81656257"}]: dispatch 2024-01-13T07:47:36.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:35 smithi100 bash[20091]: audit 2024-01-13T07:47:35.790904+0000 mon.smithi039 (mon.0) 580 : audit [INF] from='client.? 172.21.15.100:0/2438424774' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9479c41e-b50e-47b8-ba56-4c8c81656257"}]': finished 2024-01-13T07:47:36.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:35 smithi100 bash[20091]: cluster 2024-01-13T07:47:35.790994+0000 mon.smithi039 (mon.0) 581 : cluster [DBG] osdmap e38: 1 total, 0 up, 1 in 2024-01-13T07:47:36.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:35 smithi100 bash[20091]: audit 2024-01-13T07:47:35.791187+0000 mon.smithi039 (mon.0) 582 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:47:37.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:36 smithi039 bash[16208]: audit 2024-01-13T07:47:36.146302+0000 mon.smithi039 (mon.0) 583 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:47:37.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:36 smithi039 bash[16208]: audit 2024-01-13T07:47:36.147037+0000 mon.smithi100 (mon.1) 18 : audit [INF] from='client.? 172.21.15.100:0/324383194' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:47:37.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:36 smithi039 bash[16208]: audit 2024-01-13T07:47:36.154736+0000 mon.smithi039 (mon.0) 584 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:47:37.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:36 smithi039 bash[16208]: cluster 2024-01-13T07:47:36.154810+0000 mon.smithi039 (mon.0) 585 : cluster [DBG] osdmap e39: 0 total, 0 up, 0 in 2024-01-13T07:47:37.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:36 smithi039 bash[16208]: audit 2024-01-13T07:47:36.631499+0000 mon.smithi039 (mon.0) 586 : audit [INF] from='client.? 172.21.15.39:0/2881798224' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "735b5106-02a1-4515-844e-bd9713d3ec9f"}]: dispatch 2024-01-13T07:47:37.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:36 smithi039 bash[16208]: audit 2024-01-13T07:47:36.640155+0000 mon.smithi039 (mon.0) 587 : audit [INF] from='client.? 172.21.15.39:0/2881798224' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "735b5106-02a1-4515-844e-bd9713d3ec9f"}]': finished 2024-01-13T07:47:37.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:36 smithi039 bash[16208]: cluster 2024-01-13T07:47:36.640217+0000 mon.smithi039 (mon.0) 588 : cluster [DBG] osdmap e40: 1 total, 0 up, 1 in 2024-01-13T07:47:37.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:36 smithi039 bash[16208]: audit 2024-01-13T07:47:36.640434+0000 mon.smithi039 (mon.0) 589 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:47:37.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:36 smithi100 bash[20091]: audit 2024-01-13T07:47:36.146302+0000 mon.smithi039 (mon.0) 583 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:47:37.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:36 smithi100 bash[20091]: audit 2024-01-13T07:47:36.147037+0000 mon.smithi100 (mon.1) 18 : audit [INF] from='client.? 172.21.15.100:0/324383194' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:47:37.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:36 smithi100 bash[20091]: audit 2024-01-13T07:47:36.154736+0000 mon.smithi039 (mon.0) 584 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:47:37.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:36 smithi100 bash[20091]: cluster 2024-01-13T07:47:36.154810+0000 mon.smithi039 (mon.0) 585 : cluster [DBG] osdmap e39: 0 total, 0 up, 0 in 2024-01-13T07:47:37.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:36 smithi100 bash[20091]: audit 2024-01-13T07:47:36.631499+0000 mon.smithi039 (mon.0) 586 : audit [INF] from='client.? 172.21.15.39:0/2881798224' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "735b5106-02a1-4515-844e-bd9713d3ec9f"}]: dispatch 2024-01-13T07:47:37.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:36 smithi100 bash[20091]: audit 2024-01-13T07:47:36.640155+0000 mon.smithi039 (mon.0) 587 : audit [INF] from='client.? 172.21.15.39:0/2881798224' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "735b5106-02a1-4515-844e-bd9713d3ec9f"}]': finished 2024-01-13T07:47:37.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:36 smithi100 bash[20091]: cluster 2024-01-13T07:47:36.640217+0000 mon.smithi039 (mon.0) 588 : cluster [DBG] osdmap e40: 1 total, 0 up, 1 in 2024-01-13T07:47:37.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:36 smithi100 bash[20091]: audit 2024-01-13T07:47:36.640434+0000 mon.smithi039 (mon.0) 589 : audit [DBG] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-01-13T07:47:37.470 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:47:38.199 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: cephadm 2024-01-13T07:47:36.902847+0000 mgr.smithi039.fbdzkl (mgr.14184) 337 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:47:38.199 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:47:38.199 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:47:38.199 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:47:38.199 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:47:38.200 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:47:38.200 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:47:38.200 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:47:38.200 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:47:38.200 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpsr3m2a_f:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpq3mdlabr:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:47:38.200 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:47:38.200 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:47:38.200 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:47:38.200 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new 9479c41e-b50e-47b8-ba56-4c8c81656257 2024-01-13T07:47:38.200 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:47:38.200 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:47:38.200 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:47:38.200 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:47:38.201 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:47:38.201 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:47:38.201 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:38.201 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:38.201 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:47:38.201 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:47:38.201 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:47:38.201 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:47:38.201 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:47:38.201 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:47:38.201 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:47:38.201 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:47:38.201 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:47:38.201 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:47:38.201 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:47:38.201 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:47:38.202 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:47:38.202 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:47:38.202 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:47:38.202 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:47:38.202 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:47:38.202 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:47:38.202 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:47:38.202 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:47:38.202 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:47:38.202 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:47:38.202 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:47:38.202 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:47:38.202 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:47:38.202 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:38.202 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:38.203 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:47:38.203 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:47:38.203 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:47:38.203 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:47:38.203 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:38.203 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:38.203 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:47:38.203 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:47:38.203 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:47:38.203 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:47:38.203 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:47:38.203 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:47:38.203 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:47:38.203 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:47:38.203 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:38.204 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:38.204 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:47:38.204 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:47:38.204 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:47:38.204 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:47:38.204 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:47:38.204 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:47:38.204 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:47:38.204 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: main() 2024-01-13T07:47:38.204 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:47:38.204 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:47:38.204 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:47:38.204 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:47:38.204 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:47:38.204 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:47:38.205 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:47:38.205 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:47:38.205 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:47:38.205 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:47:38.205 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:47:38.205 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:47:38.205 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:47:38.205 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:47:38.205 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpsr3m2a_f:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpq3mdlabr:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:47:38.205 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: audit 2024-01-13T07:47:36.993602+0000 mon.smithi039 (mon.0) 590 : audit [INF] from='client.? 172.21.15.39:0/1172510941' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:47:38.205 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: audit 2024-01-13T07:47:36.999910+0000 mon.smithi039 (mon.0) 591 : audit [INF] from='client.? 172.21.15.39:0/1172510941' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:47:38.205 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: cluster 2024-01-13T07:47:36.999959+0000 mon.smithi039 (mon.0) 592 : cluster [DBG] osdmap e41: 0 total, 0 up, 0 in 2024-01-13T07:47:38.205 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: cluster 2024-01-13T07:47:37.239606+0000 mgr.smithi039.fbdzkl (mgr.14184) 338 : cluster [DBG] pgmap v312: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:38.205 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:37 smithi039 bash[16208]: audit 2024-01-13T07:47:37.469707+0000 mon.smithi039 (mon.0) 593 : audit [DBG] from='client.? 172.21.15.39:0/1778887775' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:47:38.206 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":41,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:47:38.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: cephadm 2024-01-13T07:47:36.902847+0000 mgr.smithi039.fbdzkl (mgr.14184) 337 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:47:38.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:47:38.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:47:38.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:47:38.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:47:38.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:47:38.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:47:38.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:47:38.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:47:38.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpsr3m2a_f:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpq3mdlabr:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:47:38.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:47:38.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:47:38.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:47:38.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new 9479c41e-b50e-47b8-ba56-4c8c81656257 2024-01-13T07:47:38.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:47:38.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:47:38.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:47:38.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:47:38.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:47:38.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:47:38.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:38.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:38.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:47:38.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:47:38.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:47:38.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:47:38.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:47:38.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:47:38.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:47:38.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:47:38.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:47:38.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:47:38.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:47:38.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:47:38.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:47:38.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:47:38.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:47:38.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:47:38.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:47:38.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:47:38.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:47:38.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:47:38.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:47:38.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:47:38.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:47:38.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:47:38.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:47:38.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:38.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:38.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:47:38.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:47:38.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:47:38.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:47:38.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:38.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:38.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:47:38.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:47:38.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:47:38.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:47:38.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:47:38.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:47:38.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:47:38.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:47:38.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:38.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:38.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:47:38.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:47:38.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:47:38.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:47:38.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:47:38.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:47:38.249 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:47:38.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: main() 2024-01-13T07:47:38.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:47:38.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:47:38.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:47:38.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:47:38.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:47:38.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:47:38.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:47:38.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:47:38.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:47:38.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:47:38.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:47:38.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:47:38.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:47:38.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:47:38.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpsr3m2a_f:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpq3mdlabr:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:47:38.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: audit 2024-01-13T07:47:36.993602+0000 mon.smithi039 (mon.0) 590 : audit [INF] from='client.? 172.21.15.39:0/1172510941' entity='client.bootstrap-osd' cmd=[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]: dispatch 2024-01-13T07:47:38.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: audit 2024-01-13T07:47:36.999910+0000 mon.smithi039 (mon.0) 591 : audit [INF] from='client.? 172.21.15.39:0/1172510941' entity='client.bootstrap-osd' cmd='[{"prefix": "osd purge-new", "id": 0, "yes_i_really_mean_it": true}]': finished 2024-01-13T07:47:38.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: cluster 2024-01-13T07:47:36.999959+0000 mon.smithi039 (mon.0) 592 : cluster [DBG] osdmap e41: 0 total, 0 up, 0 in 2024-01-13T07:47:38.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: cluster 2024-01-13T07:47:37.239606+0000 mgr.smithi039.fbdzkl (mgr.14184) 338 : cluster [DBG] pgmap v312: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:38.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:37 smithi100 bash[20091]: audit 2024-01-13T07:47:37.469707+0000 mon.smithi039 (mon.0) 593 : audit [DBG] from='client.? 172.21.15.39:0/1778887775' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:47:39.208 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:47:39.221 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: cephadm 2024-01-13T07:47:37.830701+0000 mgr.smithi039.fbdzkl (mgr.14184) 339 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:47:39.221 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:47:39.221 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:47:39.221 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:47:39.222 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:47:39.222 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:47:39.222 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:47:39.222 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:47:39.222 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi039/config 2024-01-13T07:47:39.222 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpg39ka5p3:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp3ejs9hkv:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:47:39.222 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:47:39.222 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:47:39.222 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:47:39.222 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new 735b5106-02a1-4515-844e-bd9713d3ec9f 2024-01-13T07:47:39.222 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:47:39.222 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:47:39.222 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:47:39.222 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:47:39.223 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:47:39.223 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:47:39.223 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:39.224 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:39.224 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:47:39.224 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:47:39.224 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:47:39.224 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:47:39.224 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:47:39.224 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:47:39.224 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:47:39.224 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:47:39.224 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:47:39.224 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:47:39.224 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:47:39.224 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:47:39.224 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:47:39.225 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:47:39.225 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:47:39.225 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:47:39.225 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:47:39.225 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:47:39.225 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:47:39.225 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:47:39.225 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:47:39.225 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:47:39.225 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:47:39.225 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:47:39.225 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:47:39.225 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:39.225 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:39.225 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:47:39.226 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:47:39.226 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:47:39.226 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:47:39.226 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:39.226 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:39.226 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:47:39.226 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:47:39.226 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:47:39.226 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:47:39.226 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:47:39.226 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:47:39.226 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:47:39.226 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:47:39.226 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:39.227 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:39.227 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:47:39.227 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:47:39.227 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:47:39.227 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:47:39.227 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:47:39.227 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:47:39.227 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:47:39.227 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: main() 2024-01-13T07:47:39.227 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:47:39.227 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:47:39.227 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:47:39.227 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:47:39.227 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:47:39.227 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:47:39.228 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:47:39.228 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:47:39.228 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:47:39.228 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:47:39.228 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:47:39.228 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:47:39.228 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:47:39.228 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:47:39.228 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpg39ka5p3:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp3ejs9hkv:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:47:39.228 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: cephadm 2024-01-13T07:47:37.834321+0000 mgr.smithi039.fbdzkl (mgr.14184) 340 : cephadm [ERR] Failed to apply osd.all-available-devices spec DriveGroupSpec.from_json(yaml.safe_load('''service_type: osd 2024-01-13T07:47:39.228 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: service_id: all-available-devices 2024-01-13T07:47:39.228 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: service_name: osd.all-available-devices 2024-01-13T07:47:39.228 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: placement: 2024-01-13T07:47:39.229 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: host_pattern: '*' 2024-01-13T07:47:39.229 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: spec: 2024-01-13T07:47:39.229 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: data_devices: 2024-01-13T07:47:39.230 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: all: true 2024-01-13T07:47:39.230 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: filter_logic: AND 2024-01-13T07:47:39.230 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: objectstore: bluestore 2024-01-13T07:47:39.230 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: ''')): cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:47:39.230 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpsr3m2a_f:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpq3mdlabr:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:47:39.230 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:47:39.230 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:47:39.230 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:47:39.230 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new 9479c41e-b50e-47b8-ba56-4c8c81656257 2024-01-13T07:47:39.230 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:47:39.230 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:47:39.230 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:47:39.230 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:47:39.231 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:47:39.231 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:47:39.231 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:39.231 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:39.231 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:47:39.231 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:47:39.231 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:47:39.231 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:47:39.231 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:47:39.231 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:47:39.231 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:47:39.231 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:47:39.231 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:47:39.231 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:47:39.231 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:47:39.232 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:47:39.232 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:47:39.232 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:47:39.232 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:47:39.232 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:47:39.232 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:47:39.232 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:47:39.232 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:47:39.232 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:47:39.232 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:47:39.232 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:47:39.232 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:47:39.232 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:47:39.233 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:47:39.233 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:39.233 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:39.234 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:47:39.234 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:47:39.234 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:47:39.234 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:47:39.234 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:39.234 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:39.234 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:47:39.234 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:47:39.234 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:47:39.234 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:47:39.234 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:47:39.234 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:47:39.235 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:47:39.235 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:47:39.235 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:39.235 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:39.235 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:47:39.235 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:47:39.235 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:47:39.235 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:47:39.235 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:47:39.235 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:47:39.235 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:47:39.235 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: main() 2024-01-13T07:47:39.235 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:47:39.235 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:47:39.235 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:47:39.236 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:47:39.236 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:47:39.236 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:47:39.236 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:47:39.236 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:47:39.236 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:47:39.236 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:47:39.236 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:47:39.236 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:47:39.236 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:47:39.236 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:47:39.236 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpsr3m2a_f:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpq3mdlabr:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:47:39.236 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:47:39.236 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 521, in _apply_all_services 2024-01-13T07:47:39.236 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: if self._apply_service(spec): 2024-01-13T07:47:39.237 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 595, in _apply_service 2024-01-13T07:47:39.237 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: self.mgr.osd_service.create_from_spec(cast(DriveGroupSpec, spec)) 2024-01-13T07:47:39.237 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 73, in create_from_spec 2024-01-13T07:47:39.237 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: ret = create_from_spec_one(self.prepare_drivegroup(drive_group)) 2024-01-13T07:47:39.237 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 83, in forall_hosts_wrapper 2024-01-13T07:47:39.237 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: return CephadmOrchestrator.instance._worker_pool.map(do_work, vals) 2024-01-13T07:47:39.237 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 266, in map 2024-01-13T07:47:39.237 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: return self._map_async(func, iterable, mapstar, chunksize).get() 2024-01-13T07:47:39.237 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 644, in get 2024-01-13T07:47:39.237 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: raise self._value 2024-01-13T07:47:39.237 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 119, in worker 2024-01-13T07:47:39.237 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: result = (True, func(*args, **kwds)) 2024-01-13T07:47:39.237 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/lib64/python3.6/multiprocessing/pool.py", line 44, in mapstar 2024-01-13T07:47:39.237 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: return list(map(*args)) 2024-01-13T07:47:39.237 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:47:39.237 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: return f(*arg) 2024-01-13T07:47:39.238 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:47:39.238 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:47:39.238 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:47:39.238 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: code, '\n'.join(err))) 2024-01-13T07:47:39.238 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:47:39.238 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpsr3m2a_f:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpq3mdlabr:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:47:39.238 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:47:39.238 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:47:39.238 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:47:39.238 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new 9479c41e-b50e-47b8-ba56-4c8c81656257 2024-01-13T07:47:39.238 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:47:39.238 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:47:39.238 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:47:39.238 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:47:39.238 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:47:39.239 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:47:39.239 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:39.239 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:39.239 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:47:39.239 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:47:39.239 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:47:39.239 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:47:39.239 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:47:39.239 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:47:39.239 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:47:39.239 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:47:39.239 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:47:39.239 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr 2024-01-13T07:47:39.239 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:47:39.239 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:47:39.240 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:47:39.240 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:47:39.240 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:47:39.240 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:47:39.240 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:47:39.240 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:47:39.240 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:47:39.240 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:47:39.240 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:47:39.240 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:47:39.240 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:47:39.240 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:47:39.240 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:47:39.240 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:39.240 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:39.241 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:47:39.241 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:47:39.241 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:47:39.241 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:47:39.241 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:39.241 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:39.241 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:47:39.241 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:47:39.241 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:47:39.241 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:47:39.241 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:47:39.241 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:47:39.241 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:47:39.241 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:47:39.242 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:39.242 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:39.242 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:47:39.242 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:47:39.242 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:47:39.242 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:47:39.242 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:47:39.242 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: Traceback (most recent call last): 2024-01-13T07:47:39.242 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:47:39.242 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: main() 2024-01-13T07:47:39.242 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:47:39.242 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: r = ctx.func(ctx) 2024-01-13T07:47:39.242 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:47:39.242 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:47:39.242 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:47:39.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:47:39.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:47:39.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:47:39.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:47:39.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: return func(ctx) 2024-01-13T07:47:39.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:47:39.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:47:39.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:47:39.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:47:39.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpsr3m2a_f:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpq3mdlabr:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:47:39.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: cluster 2024-01-13T07:47:37.835946+0000 mgr.smithi039.fbdzkl (mgr.14184) 341 : cluster [DBG] pgmap v313: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:39.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:38 smithi039 bash[16208]: cluster 2024-01-13T07:47:37.997713+0000 mon.smithi039 (mon.0) 594 : cluster [WRN] Health check failed: Failed to apply 1 service(s): osd.all-available-devices (CEPHADM_APPLY_SPEC_FAIL) 2024-01-13T07:47:39.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: cephadm 2024-01-13T07:47:37.830701+0000 mgr.smithi039.fbdzkl (mgr.14184) 339 : cephadm [ERR] executing create_from_spec_one(([('smithi039', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[])), ('smithi100', DeviceSelection(data devices=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'], wal_devices=[], db devices=[], journal devices=[]))],)) failed. 2024-01-13T07:47:39.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:47:39.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:47:39.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:47:39.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:47:39.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:47:39.244 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:47:39.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:47:39.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi039/config 2024-01-13T07:47:39.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpg39ka5p3:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp3ejs9hkv:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:47:39.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:47:39.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:47:39.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:47:39.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new 735b5106-02a1-4515-844e-bd9713d3ec9f 2024-01-13T07:47:39.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:47:39.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:47:39.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:47:39.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:47:39.245 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:47:39.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:47:39.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:39.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:39.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:47:39.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:47:39.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:47:39.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:47:39.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:47:39.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:47:39.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:47:39.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:47:39.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:47:39.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:47:39.246 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:47:39.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:47:39.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:47:39.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:47:39.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:47:39.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:47:39.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:47:39.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:47:39.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:47:39.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:47:39.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:47:39.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:47:39.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:47:39.247 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:47:39.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:47:39.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:39.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:39.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:47:39.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:47:39.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:47:39.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:47:39.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:39.248 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:39.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:47:39.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:47:39.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:47:39.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:47:39.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:47:39.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:47:39.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:47:39.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:47:39.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:39.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:39.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:47:39.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:47:39.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:47:39.250 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:47:39.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:47:39.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:47:39.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:47:39.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: main() 2024-01-13T07:47:39.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:47:39.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:47:39.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:47:39.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:47:39.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:47:39.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:47:39.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:47:39.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:47:39.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:47:39.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:47:39.251 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:47:39.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:47:39.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:47:39.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:47:39.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi039 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpg39ka5p3:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmp3ejs9hkv:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:47:39.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: cephadm 2024-01-13T07:47:37.834321+0000 mgr.smithi039.fbdzkl (mgr.14184) 340 : cephadm [ERR] Failed to apply osd.all-available-devices spec DriveGroupSpec.from_json(yaml.safe_load('''service_type: osd 2024-01-13T07:47:39.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: service_id: all-available-devices 2024-01-13T07:47:39.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: service_name: osd.all-available-devices 2024-01-13T07:47:39.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: placement: 2024-01-13T07:47:39.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: host_pattern: '*' 2024-01-13T07:47:39.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: spec: 2024-01-13T07:47:39.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: data_devices: 2024-01-13T07:47:39.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: all: true 2024-01-13T07:47:39.252 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: filter_logic: AND 2024-01-13T07:47:39.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: objectstore: bluestore 2024-01-13T07:47:39.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: ''')): cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:47:39.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpsr3m2a_f:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpq3mdlabr:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:47:39.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:47:39.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:47:39.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:47:39.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new 9479c41e-b50e-47b8-ba56-4c8c81656257 2024-01-13T07:47:39.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:47:39.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:47:39.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:47:39.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:47:39.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:47:39.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:47:39.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:39.253 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:39.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:47:39.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:47:39.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:47:39.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:47:39.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:47:39.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:47:39.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:47:39.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:47:39.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:47:39.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:47:39.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:47:39.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:47:39.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:47:39.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:47:39.254 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:47:39.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:47:39.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:47:39.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:47:39.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:47:39.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:47:39.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:47:39.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:47:39.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:47:39.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:47:39.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:47:39.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:39.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:39.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:47:39.255 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:47:39.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:47:39.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:47:39.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:39.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:39.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:47:39.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:47:39.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:47:39.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:47:39.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:47:39.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:47:39.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:47:39.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:47:39.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:39.256 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:39.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:47:39.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:47:39.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:47:39.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:47:39.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:47:39.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:47:39.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:47:39.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: main() 2024-01-13T07:47:39.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:47:39.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:47:39.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:47:39.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:47:39.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:47:39.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:47:39.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:47:39.257 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:47:39.258 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:47:39.258 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:47:39.258 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:47:39.258 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:47:39.258 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:47:39.258 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:47:39.258 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpsr3m2a_f:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpq3mdlabr:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:47:39.258 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:47:39.258 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 521, in _apply_all_services 2024-01-13T07:47:39.258 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: if self._apply_service(spec): 2024-01-13T07:47:39.258 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 595, in _apply_service 2024-01-13T07:47:39.258 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: self.mgr.osd_service.create_from_spec(cast(DriveGroupSpec, spec)) 2024-01-13T07:47:39.259 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 73, in create_from_spec 2024-01-13T07:47:39.259 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: ret = create_from_spec_one(self.prepare_drivegroup(drive_group)) 2024-01-13T07:47:39.259 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 83, in forall_hosts_wrapper 2024-01-13T07:47:39.259 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: return CephadmOrchestrator.instance._worker_pool.map(do_work, vals) 2024-01-13T07:47:39.259 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 266, in map 2024-01-13T07:47:39.259 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: return self._map_async(func, iterable, mapstar, chunksize).get() 2024-01-13T07:47:39.259 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 644, in get 2024-01-13T07:47:39.259 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: raise self._value 2024-01-13T07:47:39.259 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 119, in worker 2024-01-13T07:47:39.259 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: result = (True, func(*args, **kwds)) 2024-01-13T07:47:39.259 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/lib64/python3.6/multiprocessing/pool.py", line 44, in mapstar 2024-01-13T07:47:39.259 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: return list(map(*args)) 2024-01-13T07:47:39.259 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 77, in do_work 2024-01-13T07:47:39.259 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: return f(*arg) 2024-01-13T07:47:39.260 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 65, in create_from_spec_one 2024-01-13T07:47:39.260 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: replace_osd_ids=osd_id_claims_for_host, env_vars=env_vars 2024-01-13T07:47:39.260 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/usr/share/ceph/mgr/cephadm/services/osd.py", line 91, in create_single_host 2024-01-13T07:47:39.260 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: code, '\n'.join(err))) 2024-01-13T07:47:39.260 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: RuntimeError: cephadm exited with an error code: 1, stderr:Inferring config /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/mon.smithi100/config 2024-01-13T07:47:39.260 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: Non-zero exit code 1 from /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpsr3m2a_f:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpq3mdlabr:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:47:39.260 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr --> passed data devices: 4 physical, 0 LVM 2024-01-13T07:47:39.260 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr --> relative data size: 1.0 2024-01-13T07:47:39.260 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph-authtool --gen-print-key 2024-01-13T07:47:39.260 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring -i - osd new 9479c41e-b50e-47b8-ba56-4c8c81656257 2024-01-13T07:47:39.260 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr --> Was unable to complete a new OSD, will rollback changes 2024-01-13T07:47:39.260 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr Running command: /usr/bin/ceph --cluster ceph --name client.bootstrap-osd --keyring /var/lib/ceph/bootstrap-osd/ceph.keyring osd purge-new osd.0 --yes-i-really-mean-it 2024-01-13T07:47:39.260 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr stderr: purged osd.0 2024-01-13T07:47:39.260 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:47:39.261 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 240, in safe_prepare 2024-01-13T07:47:39.261 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr self.prepare() 2024-01-13T07:47:39.261 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:39.261 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:39.261 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 351, in prepare 2024-01-13T07:47:39.261 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr block_lv = self.prepare_data_device('block', osd_fsid) 2024-01-13T07:47:39.261 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 196, in prepare_data_device 2024-01-13T07:47:39.261 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr if disk.is_partition(device) or disk.is_device(device): 2024-01-13T07:47:39.261 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/util/disk.py", line 373, in is_partition 2024-01-13T07:47:39.261 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr partitions = get_partitions() 2024-01-13T07:47:39.261 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr NameError: name 'get_partitions' is not defined 2024-01-13T07:47:39.261 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:47:39.261 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr During handling of the above exception, another exception occurred: 2024-01-13T07:47:39.261 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr 2024-01-13T07:47:39.262 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr Traceback (most recent call last): 2024-01-13T07:47:39.262 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/sbin/ceph-volume", line 11, in 2024-01-13T07:47:39.262 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr load_entry_point('ceph-volume==1.0.0', 'console_scripts', 'ceph-volume')() 2024-01-13T07:47:39.262 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 41, in __init__ 2024-01-13T07:47:39.262 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr self.main(self.argv) 2024-01-13T07:47:39.262 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 59, in newfunc 2024-01-13T07:47:39.262 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr return f(*a, **kw) 2024-01-13T07:47:39.262 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/main.py", line 153, in main 2024-01-13T07:47:39.262 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, subcommand_args) 2024-01-13T07:47:39.262 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:47:39.262 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:47:39.262 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/main.py", line 46, in main 2024-01-13T07:47:39.262 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr terminal.dispatch(self.mapper, self.argv) 2024-01-13T07:47:39.262 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/terminal.py", line 194, in dispatch 2024-01-13T07:47:39.263 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr instance.main() 2024-01-13T07:47:39.263 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:39.263 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:39.263 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 450, in main 2024-01-13T07:47:39.263 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr self._execute(plan) 2024-01-13T07:47:39.263 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/batch.py", line 469, in _execute 2024-01-13T07:47:39.263 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr c.create(argparse.Namespace(**args)) 2024-01-13T07:47:39.263 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:39.263 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:39.263 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/create.py", line 26, in create 2024-01-13T07:47:39.263 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr prepare_step.safe_prepare(args) 2024-01-13T07:47:39.263 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/prepare.py", line 244, in safe_prepare 2024-01-13T07:47:39.263 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr rollback_osd(self.args, self.osd_id) 2024-01-13T07:47:39.263 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/common.py", line 36, in rollback_osd 2024-01-13T07:47:39.263 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr Zap(['--destroy', '--osd-id', osd_id]).main() 2024-01-13T07:47:39.264 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 404, in main 2024-01-13T07:47:39.264 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr self.zap_osd() 2024-01-13T07:47:39.264 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/decorators.py", line 16, in is_root 2024-01-13T07:47:39.264 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr return func(*a, **kw) 2024-01-13T07:47:39.264 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 302, in zap_osd 2024-01-13T07:47:39.264 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr devices = find_associated_devices(self.args.osd_id, self.args.osd_fsid) 2024-01-13T07:47:39.264 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr File "/usr/lib/python3.6/site-packages/ceph_volume/devices/lvm/zap.py", line 88, in find_associated_devices 2024-01-13T07:47:39.264 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr '%s' % osd_id or osd_fsid) 2024-01-13T07:47:39.264 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: /usr/bin/docker: stderr RuntimeError: Unable to find any LV for zapping OSD: 0 2024-01-13T07:47:39.264 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: Traceback (most recent call last): 2024-01-13T07:47:39.264 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9509, in 2024-01-13T07:47:39.264 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: main() 2024-01-13T07:47:39.264 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 9497, in main 2024-01-13T07:47:39.265 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: r = ctx.func(ctx) 2024-01-13T07:47:39.265 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2009, in _infer_config 2024-01-13T07:47:39.265 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:47:39.265 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1940, in _infer_fsid 2024-01-13T07:47:39.265 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:47:39.265 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 2037, in _infer_image 2024-01-13T07:47:39.265 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:47:39.265 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1927, in _validate_fsid 2024-01-13T07:47:39.265 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: return func(ctx) 2024-01-13T07:47:39.265 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 5554, in command_ceph_volume 2024-01-13T07:47:39.265 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: out, err, code = call_throws(ctx, c.run_cmd()) 2024-01-13T07:47:39.265 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: File "/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/cephadm.cf1c9b864d29dd2645bb517833464f26027d435bb39febbf565308fda83f90d2", line 1720, in call_throws 2024-01-13T07:47:39.265 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: raise RuntimeError('Failed command: %s' % ' '.join(command)) 2024-01-13T07:47:39.265 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: RuntimeError: Failed command: /usr/bin/docker run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/sbin/ceph-volume --privileged --group-add=disk --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 -e NODE_NAME=smithi100 -e CEPH_USE_RANDOM_NONCE=1 -e CEPH_VOLUME_OSDSPEC_AFFINITY=all-available-devices -e CEPH_VOLUME_SKIP_RESTORECON=yes -e CEPH_VOLUME_DEBUG=1 -v /var/run/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/run/ceph:z -v /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715:/var/log/ceph:z -v /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash:/var/lib/ceph/crash:z -v /dev:/dev -v /run/udev:/run/udev -v /sys:/sys -v /run/lvm:/run/lvm -v /run/lock/lvm:/run/lock/lvm -v /:/rootfs -v /tmp/ceph-tmpsr3m2a_f:/etc/ceph/ceph.conf:z -v /tmp/ceph-tmpq3mdlabr:/var/lib/ceph/bootstrap-osd/ceph.keyring:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b926bb9e029d1391c1bd2df0fbc0e8b591effa2f2f7ee12facc20da759af9755 lvm batch --no-auto /dev/nvme1n1 /dev/nvme2n1 /dev/nvme3n1 /dev/nvme4n1 --yes --no-systemd 2024-01-13T07:47:39.266 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: cluster 2024-01-13T07:47:37.835946+0000 mgr.smithi039.fbdzkl (mgr.14184) 341 : cluster [DBG] pgmap v313: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:39.266 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:38 smithi100 bash[20091]: cluster 2024-01-13T07:47:37.997713+0000 mon.smithi039 (mon.0) 594 : cluster [WRN] Health check failed: Failed to apply 1 service(s): osd.all-available-devices (CEPHADM_APPLY_SPEC_FAIL) 2024-01-13T07:47:41.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:40 smithi100 bash[20091]: cluster 2024-01-13T07:47:39.837043+0000 mgr.smithi039.fbdzkl (mgr.14184) 342 : cluster [DBG] pgmap v314: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:41.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:40 smithi039 bash[16208]: cluster 2024-01-13T07:47:39.837043+0000 mgr.smithi039.fbdzkl (mgr.14184) 342 : cluster [DBG] pgmap v314: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:42.168 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:47:42.743 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":41,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:47:42.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:42 smithi039 bash[16208]: cluster 2024-01-13T07:47:41.837820+0000 mgr.smithi039.fbdzkl (mgr.14184) 343 : cluster [DBG] pgmap v315: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:42.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:42 smithi039 bash[16208]: audit 2024-01-13T07:47:42.167436+0000 mon.smithi039 (mon.0) 595 : audit [DBG] from='client.? 172.21.15.39:0/1227488077' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:47:43.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:42 smithi100 bash[20091]: cluster 2024-01-13T07:47:41.837820+0000 mgr.smithi039.fbdzkl (mgr.14184) 343 : cluster [DBG] pgmap v315: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:43.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:42 smithi100 bash[20091]: audit 2024-01-13T07:47:42.167436+0000 mon.smithi039 (mon.0) 595 : audit [DBG] from='client.? 172.21.15.39:0/1227488077' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:47:43.744 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:47:45.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:44 smithi039 bash[16208]: cluster 2024-01-13T07:47:43.838867+0000 mgr.smithi039.fbdzkl (mgr.14184) 344 : cluster [DBG] pgmap v316: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:45.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:45 smithi100 bash[20091]: cluster 2024-01-13T07:47:43.838867+0000 mgr.smithi039.fbdzkl (mgr.14184) 344 : cluster [DBG] pgmap v316: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:46.513 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:47:46.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:46 smithi100 bash[20091]: audit 2024-01-13T07:47:45.370605+0000 mon.smithi039 (mon.0) 596 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:47:46.746 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:46 smithi039 bash[16208]: audit 2024-01-13T07:47:45.370605+0000 mon.smithi039 (mon.0) 596 : audit [INF] from='mgr.14184 172.21.15.39:0/1071887845' entity='mgr.smithi039.fbdzkl' 2024-01-13T07:47:47.161 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":41,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:47:47.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:47 smithi039 bash[16208]: cluster 2024-01-13T07:47:45.839954+0000 mgr.smithi039.fbdzkl (mgr.14184) 345 : cluster [DBG] pgmap v317: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:47.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:47 smithi039 bash[16208]: audit 2024-01-13T07:47:46.512592+0000 mon.smithi039 (mon.0) 597 : audit [DBG] from='client.? 172.21.15.39:0/1138263327' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:47:47.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:47 smithi100 bash[20091]: cluster 2024-01-13T07:47:45.839954+0000 mgr.smithi039.fbdzkl (mgr.14184) 345 : cluster [DBG] pgmap v317: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:47.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:47 smithi100 bash[20091]: audit 2024-01-13T07:47:46.512592+0000 mon.smithi039 (mon.0) 597 : audit [DBG] from='client.? 172.21.15.39:0/1138263327' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:47:48.163 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:47:49.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:49 smithi100 bash[20091]: cluster 2024-01-13T07:47:47.841085+0000 mgr.smithi039.fbdzkl (mgr.14184) 346 : cluster [DBG] pgmap v318: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:49.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:49 smithi039 bash[16208]: cluster 2024-01-13T07:47:47.841085+0000 mgr.smithi039.fbdzkl (mgr.14184) 346 : cluster [DBG] pgmap v318: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:51.043 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:47:51.581 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":41,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:47:51.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:51 smithi100 bash[20091]: cluster 2024-01-13T07:47:49.842246+0000 mgr.smithi039.fbdzkl (mgr.14184) 347 : cluster [DBG] pgmap v319: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:51.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:51 smithi100 bash[20091]: audit 2024-01-13T07:47:51.042890+0000 mon.smithi039 (mon.0) 598 : audit [DBG] from='client.? 172.21.15.39:0/3502854204' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:47:51.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:51 smithi039 bash[16208]: cluster 2024-01-13T07:47:49.842246+0000 mgr.smithi039.fbdzkl (mgr.14184) 347 : cluster [DBG] pgmap v319: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:51.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:51 smithi039 bash[16208]: audit 2024-01-13T07:47:51.042890+0000 mon.smithi039 (mon.0) 598 : audit [DBG] from='client.? 172.21.15.39:0/3502854204' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:47:52.582 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:47:53.707 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:53 smithi039 bash[16208]: cluster 2024-01-13T07:47:51.843363+0000 mgr.smithi039.fbdzkl (mgr.14184) 348 : cluster [DBG] pgmap v320: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:53.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:53 smithi100 bash[20091]: cluster 2024-01-13T07:47:51.843363+0000 mgr.smithi039.fbdzkl (mgr.14184) 348 : cluster [DBG] pgmap v320: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:55.586 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:47:55.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:55 smithi100 bash[20091]: cluster 2024-01-13T07:47:53.844485+0000 mgr.smithi039.fbdzkl (mgr.14184) 349 : cluster [DBG] pgmap v321: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:55.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:55 smithi039 bash[16208]: cluster 2024-01-13T07:47:53.844485+0000 mgr.smithi039.fbdzkl (mgr.14184) 349 : cluster [DBG] pgmap v321: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:56.234 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":41,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:47:56.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:56 smithi039 bash[16208]: audit 2024-01-13T07:47:55.585375+0000 mon.smithi039 (mon.0) 599 : audit [DBG] from='client.? 172.21.15.39:0/1355241420' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:47:56.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:56 smithi100 bash[20091]: audit 2024-01-13T07:47:55.585375+0000 mon.smithi039 (mon.0) 599 : audit [DBG] from='client.? 172.21.15.39:0/1355241420' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:47:57.235 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:47:57.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:57 smithi100 bash[20091]: cluster 2024-01-13T07:47:55.845585+0000 mgr.smithi039.fbdzkl (mgr.14184) 350 : cluster [DBG] pgmap v322: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:57.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:57 smithi039 bash[16208]: cluster 2024-01-13T07:47:55.845585+0000 mgr.smithi039.fbdzkl (mgr.14184) 350 : cluster [DBG] pgmap v322: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:59.743 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:47:59 smithi100 bash[20091]: cluster 2024-01-13T07:47:57.846644+0000 mgr.smithi039.fbdzkl (mgr.14184) 351 : cluster [DBG] pgmap v323: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:47:59.743 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:47:59 smithi039 bash[16208]: cluster 2024-01-13T07:47:57.846644+0000 mgr.smithi039.fbdzkl (mgr.14184) 351 : cluster [DBG] pgmap v323: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:48:00.115 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:48:00.713 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":41,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:48:00.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:48:00 smithi039 bash[16208]: cluster 2024-01-13T07:47:59.847218+0000 mgr.smithi039.fbdzkl (mgr.14184) 352 : cluster [DBG] pgmap v324: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:48:00.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:48:00 smithi039 bash[16208]: audit 2024-01-13T07:48:00.114573+0000 mon.smithi039 (mon.0) 600 : audit [DBG] from='client.? 172.21.15.39:0/3912008257' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:48:01.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:48:00 smithi100 bash[20091]: cluster 2024-01-13T07:47:59.847218+0000 mgr.smithi039.fbdzkl (mgr.14184) 352 : cluster [DBG] pgmap v324: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:48:01.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:48:00 smithi100 bash[20091]: audit 2024-01-13T07:48:00.114573+0000 mon.smithi039 (mon.0) 600 : audit [DBG] from='client.? 172.21.15.39:0/3912008257' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:48:01.714 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:48:03.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:48:02 smithi100 bash[20091]: cluster 2024-01-13T07:48:01.848298+0000 mgr.smithi039.fbdzkl (mgr.14184) 353 : cluster [DBG] pgmap v325: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:48:03.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:48:02 smithi039 bash[16208]: cluster 2024-01-13T07:48:01.848298+0000 mgr.smithi039.fbdzkl (mgr.14184) 353 : cluster [DBG] pgmap v325: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:48:04.660 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:48:04.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:48:04 smithi039 bash[16208]: cluster 2024-01-13T07:48:03.849046+0000 mgr.smithi039.fbdzkl (mgr.14184) 354 : cluster [DBG] pgmap v326: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:48:04.993 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:48:04 smithi039 bash[16208]: audit 2024-01-13T07:48:04.659580+0000 mon.smithi039 (mon.0) 601 : audit [DBG] from='client.? 172.21.15.39:0/3317893603' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:48:05.241 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":41,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:48:05.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:48:04 smithi100 bash[20091]: cluster 2024-01-13T07:48:03.849046+0000 mgr.smithi039.fbdzkl (mgr.14184) 354 : cluster [DBG] pgmap v326: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:48:05.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:48:04 smithi100 bash[20091]: audit 2024-01-13T07:48:04.659580+0000 mon.smithi039 (mon.0) 601 : audit [DBG] from='client.? 172.21.15.39:0/3317893603' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:48:06.242 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:48:07.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:48:06 smithi100 bash[20091]: cluster 2024-01-13T07:48:05.850078+0000 mgr.smithi039.fbdzkl (mgr.14184) 355 : cluster [DBG] pgmap v327: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:48:07.243 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:48:06 smithi039 bash[16208]: cluster 2024-01-13T07:48:05.850078+0000 mgr.smithi039.fbdzkl (mgr.14184) 355 : cluster [DBG] pgmap v327: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:48:09.097 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:48:09.243 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:48:08 smithi100 bash[20091]: cluster 2024-01-13T07:48:07.850608+0000 mgr.smithi039.fbdzkl (mgr.14184) 356 : cluster [DBG] pgmap v328: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:48:09.244 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:48:08 smithi039 bash[16208]: cluster 2024-01-13T07:48:07.850608+0000 mgr.smithi039.fbdzkl (mgr.14184) 356 : cluster [DBG] pgmap v328: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:48:09.691 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":41,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:48:10.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:48:10 smithi100 bash[20091]: audit 2024-01-13T07:48:09.096610+0000 mon.smithi039 (mon.0) 602 : audit [DBG] from='client.? 172.21.15.39:0/2151408915' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:48:10.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:48:09 smithi039 bash[16208]: audit 2024-01-13T07:48:09.096610+0000 mon.smithi039 (mon.0) 602 : audit [DBG] from='client.? 172.21.15.39:0/2151408915' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:48:10.692 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:48:11.495 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:48:11 smithi100 bash[20091]: cluster 2024-01-13T07:48:09.851568+0000 mgr.smithi039.fbdzkl (mgr.14184) 357 : cluster [DBG] pgmap v329: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:48:11.496 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:48:11 smithi039 bash[16208]: cluster 2024-01-13T07:48:09.851568+0000 mgr.smithi039.fbdzkl (mgr.14184) 357 : cluster [DBG] pgmap v329: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:48:13.335 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:48:13 smithi039 bash[16208]: cluster 2024-01-13T07:48:11.852717+0000 mgr.smithi039.fbdzkl (mgr.14184) 358 : cluster [DBG] pgmap v330: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:48:13.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:48:13 smithi100 bash[20091]: cluster 2024-01-13T07:48:11.852717+0000 mgr.smithi039.fbdzkl (mgr.14184) 358 : cluster [DBG] pgmap v330: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:48:13.678 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:48:14.244 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":41,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:48:14.370 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:48:14 smithi039 bash[16208]: audit 2024-01-13T07:48:13.677295+0000 mon.smithi039 (mon.0) 603 : audit [DBG] from='client.? 172.21.15.39:0/3670687677' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:48:14.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:48:14 smithi100 bash[20091]: audit 2024-01-13T07:48:13.677295+0000 mon.smithi039 (mon.0) 603 : audit [DBG] from='client.? 172.21.15.39:0/3670687677' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:48:15.245 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:48:15.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:48:15 smithi100 bash[20091]: cluster 2024-01-13T07:48:13.853822+0000 mgr.smithi039.fbdzkl (mgr.14184) 359 : cluster [DBG] pgmap v331: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:48:15.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:48:15 smithi039 bash[16208]: cluster 2024-01-13T07:48:13.853822+0000 mgr.smithi039.fbdzkl (mgr.14184) 359 : cluster [DBG] pgmap v331: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:48:17.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:48:17 smithi100 bash[20091]: cluster 2024-01-13T07:48:15.854888+0000 mgr.smithi039.fbdzkl (mgr.14184) 360 : cluster [DBG] pgmap v332: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:48:17.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:48:17 smithi039 bash[16208]: cluster 2024-01-13T07:48:15.854888+0000 mgr.smithi039.fbdzkl (mgr.14184) 360 : cluster [DBG] pgmap v332: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:48:18.211 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:48:18.808 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":41,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:48:19.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:48:19 smithi100 bash[20091]: cluster 2024-01-13T07:48:17.855579+0000 mgr.smithi039.fbdzkl (mgr.14184) 361 : cluster [DBG] pgmap v333: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:48:19.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:48:19 smithi100 bash[20091]: audit 2024-01-13T07:48:18.210876+0000 mon.smithi039 (mon.0) 604 : audit [DBG] from='client.? 172.21.15.39:0/2404903143' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:48:19.493 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:48:19 smithi039 bash[16208]: cluster 2024-01-13T07:48:17.855579+0000 mgr.smithi039.fbdzkl (mgr.14184) 361 : cluster [DBG] pgmap v333: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:48:19.494 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:48:19 smithi039 bash[16208]: audit 2024-01-13T07:48:18.210876+0000 mon.smithi039 (mon.0) 604 : audit [DBG] from='client.? 172.21.15.39:0/2404903143' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:48:19.809 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:445562ab4bc3ddfb386936119050695810860bcb shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 -- ceph osd stat -f json 2024-01-13T07:48:21.087 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:48:21 smithi039 bash[16208]: cluster 2024-01-13T07:48:19.856558+0000 mgr.smithi039.fbdzkl (mgr.14184) 362 : cluster [DBG] pgmap v334: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:48:21.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:48:21 smithi100 bash[20091]: cluster 2024-01-13T07:48:19.856558+0000 mgr.smithi039.fbdzkl (mgr.14184) 362 : cluster [DBG] pgmap v334: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:48:22.704 INFO:teuthology.orchestra.run.smithi039.stdout: 2024-01-13T07:48:23.294 INFO:teuthology.orchestra.run.smithi039.stdout:{"epoch":41,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":1705131558,"num_remapped_pgs":0} 2024-01-13T07:48:23.295 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_cd45576300487d997e5a85abed65500b9f5d143b/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/github.com_ceph_ceph-c_445562ab4bc3ddfb386936119050695810860bcb/qa/tasks/cephadm.py", line 779, in ceph_osds while proceed(): File "/home/teuthworker/src/git.ceph.com_teuthology_cd45576300487d997e5a85abed65500b9f5d143b/teuthology/contextutil.py", line 134, in __call__ raise MaxWhileTries(error_msg) teuthology.exceptions.MaxWhileTries: reached maximum tries (121) after waiting for 120 seconds 2024-01-13T07:48:23.296 DEBUG:teuthology.orchestra.run.smithi039:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-01-13T07:48:23.311 DEBUG:teuthology.orchestra.run.smithi100:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-01-13T07:48:23.326 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-01-13T07:48:23.326 DEBUG:teuthology.orchestra.run.smithi039:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-01-13T07:48:23.361 DEBUG:teuthology.orchestra.run.smithi100:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-01-13T07:48:23.372 INFO:tasks.cephadm:Stopping all daemons... 2024-01-13T07:48:23.373 INFO:tasks.cephadm.mon.smithi039:Stopping mon.smithi039... 2024-01-13T07:48:23.373 DEBUG:teuthology.orchestra.run.smithi039:> sudo systemctl stop ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715@mon.smithi039 2024-01-13T07:48:23.414 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:48:23 smithi039 bash[16208]: cluster 2024-01-13T07:48:21.857586+0000 mgr.smithi039.fbdzkl (mgr.14184) 363 : cluster [DBG] pgmap v335: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:48:23.414 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:48:23 smithi039 bash[16208]: audit 2024-01-13T07:48:22.703566+0000 mon.smithi039 (mon.0) 605 : audit [DBG] from='client.? 172.21.15.39:0/2059522875' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:48:23.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:48:23 smithi100 bash[20091]: cluster 2024-01-13T07:48:21.857586+0000 mgr.smithi039.fbdzkl (mgr.14184) 363 : cluster [DBG] pgmap v335: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-01-13T07:48:23.493 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:48:23 smithi100 bash[20091]: audit 2024-01-13T07:48:22.703566+0000 mon.smithi039 (mon.0) 605 : audit [DBG] from='client.? 172.21.15.39:0/2059522875' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-01-13T07:48:23.688 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:48:23 smithi039 systemd[1]: Stopping Ceph mon.smithi039 for 5dfd6106-b1e6-11ee-95ac-87774f69a715... 2024-01-13T07:48:23.688 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:48:23 smithi039 bash[32335]: Error response from daemon: No such container: ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715-mon.smithi039 2024-01-13T07:48:23.688 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:48:23 smithi039 bash[16208]: debug 2024-01-13T07:48:23.609+0000 7f4fe07cc700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi039 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-01-13T07:48:23.688 INFO:journalctl@ceph.mon.smithi039.smithi039.stdout:Jan 13 07:48:23 smithi039 bash[16208]: debug 2024-01-13T07:48:23.609+0000 7f4fe07cc700 -1 mon.smithi039@0(leader) e2 *** Got Signal Terminated *** 2024-01-13T07:48:24.360 DEBUG:teuthology.orchestra.run.smithi039:> sudo pkill -f 'journalctl -f -n 0 -u ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715@mon.smithi039.service' 2024-01-13T07:48:24.436 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-01-13T07:48:24.437 INFO:tasks.cephadm.mon.smithi039:Stopped mon.smithi039 2024-01-13T07:48:24.437 INFO:tasks.cephadm.mon.smithi100:Stopping mon.smithi100... 2024-01-13T07:48:24.437 DEBUG:teuthology.orchestra.run.smithi100:> sudo systemctl stop ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715@mon.smithi100 2024-01-13T07:48:24.718 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:48:24 smithi100 systemd[1]: Stopping Ceph mon.smithi100 for 5dfd6106-b1e6-11ee-95ac-87774f69a715... 2024-01-13T07:48:24.718 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:48:24 smithi100 bash[26419]: Error response from daemon: No such container: ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715-mon.smithi100 2024-01-13T07:48:24.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:48:24 smithi100 bash[20091]: debug 2024-01-13T07:48:24.716+0000 7ff7f684a700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi100 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-01-13T07:48:24.993 INFO:journalctl@ceph.mon.smithi100.smithi100.stdout:Jan 13 07:48:24 smithi100 bash[20091]: debug 2024-01-13T07:48:24.716+0000 7ff7f684a700 -1 mon.smithi100@1(peon) e2 *** Got Signal Terminated *** 2024-01-13T07:48:25.582 DEBUG:teuthology.orchestra.run.smithi100:> sudo pkill -f 'journalctl -f -n 0 -u ceph-5dfd6106-b1e6-11ee-95ac-87774f69a715@mon.smithi100.service' 2024-01-13T07:48:25.617 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-01-13T07:48:25.617 INFO:tasks.cephadm.mon.smithi100:Stopped mon.smithi100 2024-01-13T07:48:25.617 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 --force --keep-logs 2024-01-13T07:48:35.652 DEBUG:teuthology.orchestra.run.smithi100:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 --force --keep-logs 2024-01-13T07:48:44.704 DEBUG:teuthology.orchestra.run.smithi039:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-01-13T07:48:44.720 DEBUG:teuthology.orchestra.run.smithi100:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-01-13T07:48:44.733 INFO:tasks.cephadm:Archiving crash dumps... 2024-01-13T07:48:44.735 DEBUG:teuthology.misc:Transferring archived files from smithi039:/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash to /home/teuthworker/archive/yuriw-2024-01-12_21:52:25-rados-wip-yuri2-testing-2024-01-12-1128-pacific-distro-default-smithi/7515671/remote/ubuntu@smithi039.front.sepia.ceph.com/crash 2024-01-13T07:48:44.736 DEBUG:teuthology.orchestra.run.smithi039:> sudo tar c -f - -C /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash -- . 2024-01-13T07:48:44.777 INFO:teuthology.orchestra.run.smithi039.stderr:tar: /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash: Cannot open: No such file or directory 2024-01-13T07:48:44.777 INFO:teuthology.orchestra.run.smithi039.stderr:tar: Error is not recoverable: exiting now 2024-01-13T07:48:44.779 DEBUG:teuthology.misc:Transferring archived files from smithi100:/var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash to /home/teuthworker/archive/yuriw-2024-01-12_21:52:25-rados-wip-yuri2-testing-2024-01-12-1128-pacific-distro-default-smithi/7515671/remote/ubuntu@smithi100.front.sepia.ceph.com/crash 2024-01-13T07:48:44.780 DEBUG:teuthology.orchestra.run.smithi100:> sudo tar c -f - -C /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash -- . 2024-01-13T07:48:44.794 INFO:teuthology.orchestra.run.smithi100.stderr:tar: /var/lib/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/crash: Cannot open: No such file or directory 2024-01-13T07:48:44.794 INFO:teuthology.orchestra.run.smithi100.stderr:tar: Error is not recoverable: exiting now 2024-01-13T07:48:44.796 INFO:tasks.cephadm:Checking cluster log for badness... 2024-01-13T07:48:44.796 DEBUG:teuthology.orchestra.run.smithi039:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-01-13T07:48:44.834 INFO:teuthology.orchestra.run.smithi039.stderr:grep: /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/ceph.log: No such file or directory 2024-01-13T07:48:44.836 INFO:tasks.cephadm:Compressing logs... 2024-01-13T07:48:44.836 DEBUG:teuthology.orchestra.run.smithi039:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-01-13T07:48:44.881 DEBUG:teuthology.orchestra.run.smithi100:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-01-13T07:48:44.896 INFO:teuthology.orchestra.run.smithi039.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-01-13T07:48:44.896 INFO:teuthology.orchestra.run.smithi039.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-01-13T07:48:44.896 INFO:teuthology.orchestra.run.smithi039.stderr:gzip -5 --verbose -- /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/ceph-volume.log 2024-01-13T07:48:44.896 INFO:teuthology.orchestra.run.smithi039.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/ceph-mgr.smithi039.fbdzkl.log 2024-01-13T07:48:44.896 INFO:teuthology.orchestra.run.smithi039.stderr:gzip -5 /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/ceph-volume.log: --verbose -- /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/ceph-mon.smithi039.log 2024-01-13T07:48:44.898 INFO:teuthology.orchestra.run.smithi100.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-01-13T07:48:44.898 INFO:teuthology.orchestra.run.smithi100.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-01-13T07:48:44.898 INFO:teuthology.orchestra.run.smithi100.stderr:gzip -5 --verbose -- /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/ceph-volume.log 2024-01-13T07:48:44.898 INFO:teuthology.orchestra.run.smithi100.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/ceph-mon.smithi100.log 2024-01-13T07:48:44.898 INFO:teuthology.orchestra.run.smithi100.stderr:/var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/ceph-mgr.smithi100.mvjdpm.log 2024-01-13T07:48:44.905 INFO:teuthology.orchestra.run.smithi100.stderr:/var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/ceph-mon.smithi100.log: /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/ceph-mgr.smithi100.mvjdpm.log: 91.9% -- replaced with /var/log/ceph/cephadm.log.gz 2024-01-13T07:48:44.906 INFO:teuthology.orchestra.run.smithi100.stderr: 92.1% -- replaced with /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/ceph-mgr.smithi100.mvjdpm.log.gz 2024-01-13T07:48:44.910 INFO:teuthology.orchestra.run.smithi100.stderr: 93.9% -- replaced with /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/ceph-volume.log.gz 2024-01-13T07:48:44.911 INFO:teuthology.orchestra.run.smithi039.stderr:/var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/ceph-mgr.smithi039.fbdzkl.log: /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/ceph-mon.smithi039.log: 93.9% -- replaced with /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/ceph-volume.log.gz 2024-01-13T07:48:44.912 INFO:teuthology.orchestra.run.smithi039.stderr: 92.3% -- replaced with /var/log/ceph/cephadm.log.gz 2024-01-13T07:48:44.992 INFO:teuthology.orchestra.run.smithi100.stderr: 92.7% -- replaced with /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/ceph-mon.smithi100.log.gz 2024-01-13T07:48:44.993 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-01-13T07:48:44.993 INFO:teuthology.orchestra.run.smithi100.stderr:real 0m0.108s 2024-01-13T07:48:44.994 INFO:teuthology.orchestra.run.smithi100.stderr:user 0m0.139s 2024-01-13T07:48:44.994 INFO:teuthology.orchestra.run.smithi100.stderr:sys 0m0.009s 2024-01-13T07:48:44.997 INFO:teuthology.orchestra.run.smithi039.stderr: 91.5% -- replaced with /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/ceph-mgr.smithi039.fbdzkl.log.gz 2024-01-13T07:48:45.202 INFO:teuthology.orchestra.run.smithi039.stderr: 89.9% -- replaced with /var/log/ceph/5dfd6106-b1e6-11ee-95ac-87774f69a715/ceph-mon.smithi039.log.gz 2024-01-13T07:48:45.204 INFO:teuthology.orchestra.run.smithi039.stderr: 2024-01-13T07:48:45.204 INFO:teuthology.orchestra.run.smithi039.stderr:real 0m0.320s 2024-01-13T07:48:45.204 INFO:teuthology.orchestra.run.smithi039.stderr:user 0m0.432s 2024-01-13T07:48:45.204 INFO:teuthology.orchestra.run.smithi039.stderr:sys 0m0.037s 2024-01-13T07:48:45.205 INFO:tasks.cephadm:Archiving logs... 2024-01-13T07:48:45.205 DEBUG:teuthology.misc:Transferring archived files from smithi039:/var/log/ceph to /home/teuthworker/archive/yuriw-2024-01-12_21:52:25-rados-wip-yuri2-testing-2024-01-12-1128-pacific-distro-default-smithi/7515671/remote/ubuntu@smithi039.front.sepia.ceph.com/log 2024-01-13T07:48:45.206 DEBUG:teuthology.orchestra.run.smithi039:> sudo tar c -f - -C /var/log/ceph -- . 2024-01-13T07:48:45.337 DEBUG:teuthology.misc:Transferring archived files from smithi100:/var/log/ceph to /home/teuthworker/archive/yuriw-2024-01-12_21:52:25-rados-wip-yuri2-testing-2024-01-12-1128-pacific-distro-default-smithi/7515671/remote/ubuntu@smithi100.front.sepia.ceph.com/log 2024-01-13T07:48:45.338 DEBUG:teuthology.orchestra.run.smithi100:> sudo tar c -f - -C /var/log/ceph -- . 2024-01-13T07:48:45.374 INFO:tasks.cephadm:Removing cluster... 2024-01-13T07:48:45.375 DEBUG:teuthology.orchestra.run.smithi039:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 --force 2024-01-13T07:48:46.754 DEBUG:teuthology.orchestra.run.smithi100:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 5dfd6106-b1e6-11ee-95ac-87774f69a715 --force 2024-01-13T07:48:48.138 INFO:tasks.cephadm:Removing cephadm ... 2024-01-13T07:48:48.139 DEBUG:teuthology.orchestra.run.smithi039:> rm -rf /home/ubuntu/cephtest/cephadm 2024-01-13T07:48:48.145 DEBUG:teuthology.orchestra.run.smithi100:> rm -rf /home/ubuntu/cephtest/cephadm 2024-01-13T07:48:48.152 INFO:tasks.cephadm:Teardown complete 2024-01-13T07:48:48.152 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_cd45576300487d997e5a85abed65500b9f5d143b/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/github.com_ceph_ceph-c_445562ab4bc3ddfb386936119050695810860bcb/qa/tasks/cephadm.py", line 1463, in task with contextutil.nested( File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_cd45576300487d997e5a85abed65500b9f5d143b/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__ self.gen.throw(type, value, traceback) File "/home/teuthworker/src/github.com_ceph_ceph-c_445562ab4bc3ddfb386936119050695810860bcb/qa/tasks/cephadm.py", line 1376, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_cd45576300487d997e5a85abed65500b9f5d143b/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/github.com_ceph_ceph-c_445562ab4bc3ddfb386936119050695810860bcb/qa/tasks/cephadm.py", line 779, in ceph_osds while proceed(): File "/home/teuthworker/src/git.ceph.com_teuthology_cd45576300487d997e5a85abed65500b9f5d143b/teuthology/contextutil.py", line 134, in __call__ raise MaxWhileTries(error_msg) teuthology.exceptions.MaxWhileTries: reached maximum tries (121) after waiting for 120 seconds 2024-01-13T07:48:48.384 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=f34bfa7141f843c7918d443173991e74 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_cd45576300487d997e5a85abed65500b9f5d143b/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/github.com_ceph_ceph-c_445562ab4bc3ddfb386936119050695810860bcb/qa/tasks/cephadm.py", line 1463, in task with contextutil.nested( File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_cd45576300487d997e5a85abed65500b9f5d143b/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__ self.gen.throw(type, value, traceback) File "/home/teuthworker/src/github.com_ceph_ceph-c_445562ab4bc3ddfb386936119050695810860bcb/qa/tasks/cephadm.py", line 1376, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_cd45576300487d997e5a85abed65500b9f5d143b/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/github.com_ceph_ceph-c_445562ab4bc3ddfb386936119050695810860bcb/qa/tasks/cephadm.py", line 779, in ceph_osds while proceed(): File "/home/teuthworker/src/git.ceph.com_teuthology_cd45576300487d997e5a85abed65500b9f5d143b/teuthology/contextutil.py", line 134, in __call__ raise MaxWhileTries(error_msg) teuthology.exceptions.MaxWhileTries: reached maximum tries (121) after waiting for 120 seconds 2024-01-13T07:48:48.388 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-01-13T07:48:48.397 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-01-13T07:48:48.416 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi039:/dev/vg_nvme/lv_1... 2024-01-13T07:48:48.416 DEBUG:teuthology.orchestra.run.smithi039:> sudo nvme disconnect -n lv_1 2024-01-13T07:48:48.747 INFO:teuthology.orchestra.run.smithi039.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-01-13T07:48:48.749 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-13T07:48:48.749 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi039:/dev/vg_nvme/lv_2... 2024-01-13T07:48:48.749 DEBUG:teuthology.orchestra.run.smithi039:> sudo nvme disconnect -n lv_2 2024-01-13T07:48:49.059 INFO:teuthology.orchestra.run.smithi039.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-01-13T07:48:49.060 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-13T07:48:49.061 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi039:/dev/vg_nvme/lv_3... 2024-01-13T07:48:49.061 DEBUG:teuthology.orchestra.run.smithi039:> sudo nvme disconnect -n lv_3 2024-01-13T07:48:49.411 INFO:teuthology.orchestra.run.smithi039.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-01-13T07:48:49.413 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-13T07:48:49.413 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi039:/dev/vg_nvme/lv_4... 2024-01-13T07:48:49.413 DEBUG:teuthology.orchestra.run.smithi039:> sudo nvme disconnect -n lv_4 2024-01-13T07:48:49.787 INFO:teuthology.orchestra.run.smithi039.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-01-13T07:48:49.788 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-13T07:48:49.789 DEBUG:teuthology.orchestra.run.smithi039:> set -ex 2024-01-13T07:48:49.789 DEBUG:teuthology.orchestra.run.smithi039:> sudo dd of=/scratch_devs 2024-01-13T07:48:49.804 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi100:/dev/vg_nvme/lv_1... 2024-01-13T07:48:49.807 DEBUG:teuthology.orchestra.run.smithi100:> sudo nvme disconnect -n lv_1 2024-01-13T07:48:50.111 INFO:teuthology.orchestra.run.smithi100.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-01-13T07:48:50.113 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-13T07:48:50.114 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi100:/dev/vg_nvme/lv_2... 2024-01-13T07:48:50.114 DEBUG:teuthology.orchestra.run.smithi100:> sudo nvme disconnect -n lv_2 2024-01-13T07:48:50.424 INFO:teuthology.orchestra.run.smithi100.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-01-13T07:48:50.426 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-13T07:48:50.426 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi100:/dev/vg_nvme/lv_3... 2024-01-13T07:48:50.427 DEBUG:teuthology.orchestra.run.smithi100:> sudo nvme disconnect -n lv_3 2024-01-13T07:48:50.751 INFO:teuthology.orchestra.run.smithi100.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-01-13T07:48:50.753 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-13T07:48:50.753 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi100:/dev/vg_nvme/lv_4... 2024-01-13T07:48:50.754 DEBUG:teuthology.orchestra.run.smithi100:> sudo nvme disconnect -n lv_4 2024-01-13T07:48:51.103 INFO:teuthology.orchestra.run.smithi100.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-01-13T07:48:51.105 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-13T07:48:51.105 DEBUG:teuthology.orchestra.run.smithi100:> set -ex 2024-01-13T07:48:51.106 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd of=/scratch_devs 2024-01-13T07:48:51.120 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-01-13T07:48:51.129 INFO:teuthology.task.clock:Checking final clock skew... 2024-01-13T07:48:51.129 DEBUG:teuthology.orchestra.run.smithi039:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-01-13T07:48:51.132 DEBUG:teuthology.orchestra.run.smithi100:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-01-13T07:48:51.152 INFO:teuthology.orchestra.run.smithi039.stdout: remote refid st t when poll reach delay offset jitter 2024-01-13T07:48:51.152 INFO:teuthology.orchestra.run.smithi039.stdout:============================================================================== 2024-01-13T07:48:51.152 INFO:teuthology.orchestra.run.smithi039.stdout:*hv01.front.sepi 44.4.53.2 2 u 59 64 377 0.090 1.438 0.247 2024-01-13T07:48:51.152 INFO:teuthology.orchestra.run.smithi039.stdout:+hv02.front.sepi 63.231.80.2 3 u 65 64 377 0.080 0.007 0.247 2024-01-13T07:48:51.152 INFO:teuthology.orchestra.run.smithi039.stdout:+hv03.front.sepi 74.6.168.72 3 u 61 64 377 0.058 0.368 0.216 2024-01-13T07:48:51.152 INFO:teuthology.orchestra.run.smithi039.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 0.000 0.000 2024-01-13T07:48:51.186 INFO:teuthology.orchestra.run.smithi100.stdout: remote refid st t when poll reach delay offset jitter 2024-01-13T07:48:51.186 INFO:teuthology.orchestra.run.smithi100.stdout:============================================================================== 2024-01-13T07:48:51.186 INFO:teuthology.orchestra.run.smithi100.stdout:*hv01.front.sepi 44.4.53.2 2 u 65 64 377 0.094 0.080 0.453 2024-01-13T07:48:51.187 INFO:teuthology.orchestra.run.smithi100.stdout:+hv02.front.sepi 63.231.80.2 3 u 55 64 377 0.091 -1.326 0.416 2024-01-13T07:48:51.187 INFO:teuthology.orchestra.run.smithi100.stdout:+hv03.front.sepi 74.6.168.72 3 u 2 64 377 0.076 -0.304 0.444 2024-01-13T07:48:51.187 INFO:teuthology.orchestra.run.smithi100.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 0.000 0.000 2024-01-13T07:48:51.188 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-01-13T07:48:51.199 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-01-13T07:48:51.201 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-01-13T07:48:51.210 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-01-13T07:48:51.220 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-01-13T07:48:51.232 INFO:teuthology.task.internal:Duration was 1112.225409 seconds 2024-01-13T07:48:51.232 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-01-13T07:48:51.243 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-01-13T07:48:51.243 DEBUG:teuthology.orchestra.run.smithi039:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-01-13T07:48:51.245 DEBUG:teuthology.orchestra.run.smithi100:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-01-13T07:48:51.296 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-01-13T07:48:51.297 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi039.front.sepia.ceph.com 2024-01-13T07:48:51.297 DEBUG:teuthology.orchestra.run.smithi039:> 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-01-13T07:48:51.308 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi100.front.sepia.ceph.com 2024-01-13T07:48:51.308 DEBUG:teuthology.orchestra.run.smithi100:> 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-01-13T07:48:51.320 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-01-13T07:48:51.320 DEBUG:teuthology.orchestra.run.smithi039:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-01-13T07:48:51.357 DEBUG:teuthology.orchestra.run.smithi100:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-01-13T07:48:51.416 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-01-13T07:48:51.416 DEBUG:teuthology.orchestra.run.smithi039:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-01-13T07:48:51.418 DEBUG:teuthology.orchestra.run.smithi100:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-01-13T07:48:51.545 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-01-13T07:48:51.554 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-01-13T07:48:51.554 DEBUG:teuthology.orchestra.run.smithi039:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-01-13T07:48:51.569 DEBUG:teuthology.orchestra.run.smithi100:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-01-13T07:48:51.585 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-01-13T07:48:51.596 DEBUG:teuthology.orchestra.run.smithi039:> 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-01-13T07:48:51.612 DEBUG:teuthology.orchestra.run.smithi100:> 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-01-13T07:48:51.622 INFO:teuthology.orchestra.run.smithi039.stdout:kernel.core_pattern = core 2024-01-13T07:48:51.638 INFO:teuthology.orchestra.run.smithi100.stdout:kernel.core_pattern = core 2024-01-13T07:48:51.674 DEBUG:teuthology.orchestra.run.smithi039:> test -e /home/ubuntu/cephtest/archive/coredump 2024-01-13T07:48:51.692 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-13T07:48:51.692 DEBUG:teuthology.orchestra.run.smithi100:> test -e /home/ubuntu/cephtest/archive/coredump 2024-01-13T07:48:51.719 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-01-13T07:48:51.720 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-01-13T07:48:51.731 INFO:teuthology.task.internal:Transferring archived files... 2024-01-13T07:48:51.732 DEBUG:teuthology.misc:Transferring archived files from smithi039:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2024-01-12_21:52:25-rados-wip-yuri2-testing-2024-01-12-1128-pacific-distro-default-smithi/7515671/remote/smithi039 2024-01-13T07:48:51.733 DEBUG:teuthology.orchestra.run.smithi039:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-01-13T07:48:51.766 DEBUG:teuthology.misc:Transferring archived files from smithi100:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2024-01-12_21:52:25-rados-wip-yuri2-testing-2024-01-12-1128-pacific-distro-default-smithi/7515671/remote/smithi100 2024-01-13T07:48:51.767 DEBUG:teuthology.orchestra.run.smithi100:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-01-13T07:48:51.792 INFO:teuthology.task.internal:Removing archive directory... 2024-01-13T07:48:51.792 DEBUG:teuthology.orchestra.run.smithi039:> rm -rf -- /home/ubuntu/cephtest/archive 2024-01-13T07:48:51.805 DEBUG:teuthology.orchestra.run.smithi100:> rm -rf -- /home/ubuntu/cephtest/archive 2024-01-13T07:48:51.837 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-01-13T07:48:51.851 INFO:teuthology.task.internal:Not uploading archives. 2024-01-13T07:48:51.851 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-01-13T07:48:51.862 INFO:teuthology.task.internal:Tidying up after the test... 2024-01-13T07:48:51.863 DEBUG:teuthology.orchestra.run.smithi039:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-01-13T07:48:51.865 DEBUG:teuthology.orchestra.run.smithi100:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-01-13T07:48:51.870 INFO:teuthology.orchestra.run.smithi039.stdout: 659551 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Jan 13 07:48 /home/ubuntu/cephtest 2024-01-13T07:48:51.886 INFO:teuthology.orchestra.run.smithi100.stdout: 659550 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Jan 13 07:48 /home/ubuntu/cephtest 2024-01-13T07:48:51.889 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-01-13T07:48:51.906 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-01-13T07:48:51.938 INFO:teuthology.nuke:Checking targets against current locks 2024-01-13T07:48:51.967 DEBUG:teuthology.nuke:shortname: smithi039 2024-01-13T07:48:51.967 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-01-13T07:48:51.993 DEBUG:teuthology.nuke:shortname: smithi100 2024-01-13T07:48:51.994 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-01-13T07:48:51.997 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi039.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-01-12_21:52:25-rados-wip-yuri2-testing-2024-01-12-1128-pacific-distro-default-smithi/7515671', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '18.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-01-13 07:20:26.344704', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHSAlWjESMc0Gra5f/6dvvbjuYJc2qVK13Ztw1gt4S0hdg9pLl/eAcLsaHQz3OAGEzcbKS0DF4bknjuwe5HHhPE='} 2024-01-13T07:48:52.017 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi100.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-01-12_21:52:25-rados-wip-yuri2-testing-2024-01-12-1128-pacific-distro-default-smithi/7515671', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '18.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-01-13 07:20:26.345978', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHSAlWjESMc0Gra5f/6dvvbjuYJc2qVK13Ztw1gt4S0hdg9pLl/eAcLsaHQz3OAGEzcbKS0DF4bknjuwe5HHhPE='} 2024-01-13T07:48:52.049 INFO:teuthology.orchestra.console.smithi039:Power off 2024-01-13T07:48:52.049 DEBUG:teuthology.orchestra.console.smithi039:pexpect command: ipmitool -H smithi039.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-01-13T07:48:52.075 DEBUG:teuthology.orchestra.console.smithi039:power off output: Chassis Power Control: Down/Off 2024-01-13T07:48:52.075 DEBUG:teuthology.orchestra.console.smithi039:pexpect command: ipmitool -H smithi039.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-01-13T07:48:52.091 INFO:teuthology.orchestra.console.smithi100:Power off 2024-01-13T07:48:52.091 DEBUG:teuthology.orchestra.console.smithi100:pexpect command: ipmitool -H smithi100.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-01-13T07:48:52.101 DEBUG:teuthology.orchestra.console.smithi039:check power output: Chassis Power is on 2024-01-13T07:48:52.122 DEBUG:teuthology.orchestra.console.smithi100:power off output: Chassis Power Control: Down/Off 2024-01-13T07:48:52.123 DEBUG:teuthology.orchestra.console.smithi100:pexpect command: ipmitool -H smithi100.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-01-13T07:48:52.146 DEBUG:teuthology.orchestra.console.smithi100:check power output: Chassis Power is on 2024-01-13T07:48:56.102 DEBUG:teuthology.orchestra.console.smithi039:pexpect command: ipmitool -H smithi039.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-01-13T07:48:56.146 DEBUG:teuthology.orchestra.console.smithi100:pexpect command: ipmitool -H smithi100.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-01-13T07:48:56.215 DEBUG:teuthology.orchestra.console.smithi039:check power output: Chassis Power is on 2024-01-13T07:48:56.257 DEBUG:teuthology.orchestra.console.smithi100:check power output: Chassis Power is on 2024-01-13T07:49:00.220 DEBUG:teuthology.orchestra.console.smithi039:pexpect command: ipmitool -H smithi039.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-01-13T07:49:00.258 DEBUG:teuthology.orchestra.console.smithi100:pexpect command: ipmitool -H smithi100.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-01-13T07:49:00.330 DEBUG:teuthology.orchestra.console.smithi039:check power output: Chassis Power is on 2024-01-13T07:49:00.368 DEBUG:teuthology.orchestra.console.smithi100:check power output: Chassis Power is off 2024-01-13T07:49:00.469 INFO:teuthology.orchestra.console.smithi100:Power off completed 2024-01-13T07:49:04.332 DEBUG:teuthology.orchestra.console.smithi039:pexpect command: ipmitool -H smithi039.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-01-13T07:49:04.446 DEBUG:teuthology.orchestra.console.smithi039:check power output: Chassis Power is off 2024-01-13T07:49:04.546 INFO:teuthology.orchestra.console.smithi039:Power off completed 2024-01-13T07:49:04.650 INFO:teuthology.run:Summary data: description: rados/cephadm/smoke-roleless/{0-distro/ubuntu_18.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} duration: 1112.2254090309143 failure_reason: reached maximum tries (121) after waiting for 120 seconds owner: scheduled_yuriw@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=f34bfa7141f843c7918d443173991e74 status: fail success: false 2024-01-13T07:49:04.651 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-01-13T07:49:04.738 INFO:teuthology.run:FAIL